How to push multiple values to an array in Node.js

2 Answers

0 votes
const arr = ['c', 'node.js', 'c++'];
 
arr.push('c#', 'php', 'go', 'python');
 
console.log(arr);
   
   
   
   
/*
run:
   
[ 'c', 'node.js', 'c++', 'c#', 'php', 'go', 'python' ]
   
*/

 



answered Jun 27, 2022 by avibootz
0 votes
let arr = ['c', 'node.js', 'c++'];
 
arr = [...arr, 'c#', 'php', 'go', 'python']; 
 
console.log(arr);
   
   
   
   
/*
run:
   
[ 'c', 'node.js', 'c++', 'c#', 'php', 'go', 'python' ]
   
*/

 



answered Jun 27, 2022 by avibootz

Related questions

1 answer 115 views
1 answer 166 views
166 views asked Mar 10, 2024 by avibootz
1 answer 151 views
4 answers 324 views
2 answers 154 views
...