Q:

jquery push array

some_array = ["John", "Sally"];
some_array.push("Mike");

console.log(some_array); //output will be =>
["John", "Sally", "Mike"]
38
array = ["hello"]
array.push("world");

console.log(array);
//output =>
["hello", "world"]
15
let animals = ["dog","cat","tiger"];

animals.pop(); // ["dog","cat"]

animals.push("elephant"); // ["dog","cat","elephant"]
3
var fruits = ["Banana", "Orange", "Apple", "Mango"];

fruits.push("Kiwi"); 
0

New to Communities?

Join the community