add object to end of array javascript code example
Example 1: js add item to array
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 2: javascript add object to array
var object = {'Name'};
var array = [ ]; // Create empty array
// SIMPLE
array.push(object); // ADDS OBJECT TO ARRAY (AT THE END)
// or
array.unshift(object); // ADDS OBJECT TO ARRAY (AT THE START)
// ADVANCED
array.splice(position, 0, object);
// ADDS OBJECT TO THE ARRAY (AT POSITION)
// Position values: 0=1st, 1=2nd, etc.
// The 0 says: "remove 0 objects at position"
Example 3: how to push array
//the array comes here
var numbers = [1, 2, 3, 4];
//here you add another number
numbers.push(5);
//or if you want to do it with words
var words = ["one", "two", "three", "four"];
//then you add a word
words.push("five")
//thanks for reading
Example 4: add item to array javascript
const arr1 = [1,2,3]
const newValue = 4
const newData = [...arr1, obj] // [1,2,3,4]
Example 5: add object to array javascript
let obj = { name: 'Bob' };
let arr = [{ name: 'John' }];
// add obj to array
arr = [...arr, obj];
console.log(arr) // [{ name: 'Bob' }, { name: 'John' }];
Example 6: how to add object to array javascript
var object = "Some Object"
var array = []
array.push(object)