Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 413 Bytes

record.getArray.md

File metadata and controls

20 lines (14 loc) · 413 Bytes

Record.getArray

The getArray function retrieves the array data from 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") }
]);
var array = record.getArray();

API

Calling Returning
record. getArray ( ) Array