Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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"]
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #push #array #javascript
ADD COMMENT
Topic
Name
8+8 =