javascript pushing to an array
some_array = ["John", "Sally"];
some_array.push("Mike");
console.log(some_array); //output will be =>
["John", "Sally", "Mike"]
javascript pushing to an array
some_array = ["John", "Sally"];
some_array.push("Mike");
console.log(some_array); //output will be =>
["John", "Sally", "Mike"]
push to an array
var someArray = ["Item 1", "Item 2"];
// Add a variable, string, number, or boolean to the array list
someArray.push("Item 3");
console.log(someArray);
// This '.push()' method modifies the array to become something like this
// someArray = ["Item 1", "Item 2", "Item 3"];
// ===============================================================
// You could also push more than one item into an array. Like this:
var mainArray = ["Doe", "mizpah", "Tsukuyomi"];
mainArray.push("Katara", 54, false, true);
console.log(mainArray);
// Result >>>
// mainArray = ["Doe", "mizpah", "Tsukuyomi", "Katara", 54, false, true]
pushing to an array
array = ["hello"]
array.push("world");
console.log(array);
//output =>
["hello", "world"]
push array javascript
let array = ["A", "B"];
let variable = "what you want to add";
//Add the variable to the end of the array
array.push(variable);
//===========================
console.log(array);
//output =>
//["A", "B", "what you want to add"]
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us