Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 571 Bytes

record.new.md

File metadata and controls

26 lines (18 loc) · 571 Bytes

new Record

The constructor function is established to create a record object.

Sample

var record = new Record([
	{"data1":"hello world", "data2":123, "data3":new Date("2016/12/13") },
	{"data1":"hello human", "data2":456, "data3":new Date("2016/12/14") }
]);

API

CallingReturning
new Record ( array )Record
ParametersTypeDescription
arrayArrayThe array data.