can you add a value of object to array in js code example
Example: how to add object to array javascript
var object = "Some Object"
var array = []
array.push(object)
var object = "Some Object"
var array = []
array.push(object)