Same as push but uses concat
const myArray = [1, 2, 3]append(myArray, 0); // myArray => [1, 2, 3, 0]
Generated using TypeDoc
Same as push but uses concat
Example