javascript add one array to an integer code example
Example 1: append array js
var colors= ["red","blue"];
colors.push("yellow"); //["red","blue","yellow"]
Example 2: add item to array javascript
const arr1 = [1,2,3]
const newValue = 4
const newData = [...arr1, obj] // [1,2,3,4]