nodejs push array code example
Example 1: 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"]
Example 2: javascript array push
var SomeRandomArray = [];
SomeRandomArray.push("Hello, world!");
Example 3: js array push
const arr = ["foo", "bar"];
arr.push('baz'); // 3
arr; // ["foo", "bar", "baz"]
Example 4: javascript array push
let arr = ["hello"];
arr.push("hi");