add new array to object javascript code example
Example 1: ad data to js object
//Consider the following example object literal:
var myObject = {
sProp: 'some string value',
numProp: 2,
bProp: false
};
//You can use dot syntax to add a new property to it as follows:
myObject.prop2 = 'data here';
//Modify a Property of an Object Literal
//The process for modifying a property is essentially the same.
//Here we will assign a new value to the sProp property shown in the
//original myObject definition above:
myObject.sProp = 'A new string value for our original string property';
//Read Current Value of Object Property
//The following demonstrates how to access a property of an object literal:
alert(myObject.sProp) // display myObject.sProp value in alert
var val = myObject.sProp; // assign myObject.sProp to variable
Example 2: how to append object in array javascript
var select =[2,5,8];
var filerdata=[];
for (var i = 0; i < select.length; i++) {
filerdata.push(this.state.data.find((record) => record.id == select[i]));
}
//I have a data which is object,
//find method return me the filter data which are objects
//now with the push method I can make array of objects
Example 3: how to append objects to javascript lists ?
var studentList = ['Jason', 'Samantha', 'Alice', 'Joseph'];
//Add a new student to the end of the student list
studentList.push('Jacob');
//list is updated to ['Jason', 'Samantha', 'Alice', 'Joseph', 'Jacob'];
Example 4: how to add object to list in javascript
var a=[]
var b={};
a.push(b);