Contact: aviboots(AT)netvision.net.il
39,848 questions
51,769 answers
573 users
const arr = ['c', 'node.js', 'c++']; arr.push('c#', 'php', 'go', 'python'); console.log(arr); /* run: [ 'c', 'node.js', 'c++', 'c#', 'php', 'go', 'python' ] */
let arr = ['c', 'node.js', 'c++']; arr = [...arr, 'c#', 'php', 'go', 'python']; console.log(arr); /* run: [ 'c', 'node.js', 'c++', 'c#', 'php', 'go', 'python' ] */