array and obj js code example
Example 1: array of objects javascript
var widgetTemplats = [
{
name: 'compass',
LocX: 35,
LocY: 312
},
{
name: 'another',
LocX: 52,
LocY: 32
}
]
Example 2: javascript to array
Array.from("Hello"); // ["H", "e", "l", "l", "o"]