Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,038 questions

40,789 answers

573 users

How to use array push and pop in JavaScript

1 Answer

0 votes
let array = [1, 2, 3, 4] 
 
array.push(23) 
array.push(78) 
array.push(99) 
 
console.log(array);
 
array.pop()
array.pop()
 
console.log(array);
 
 
 
/*
run:
 
[
   1,  2,  3, 4,
  23, 78, 99
]
[ 1, 2, 3, 4, 23 ]
 
*/

 





answered Mar 9 by avibootz
edited Mar 10 by avibootz

Related questions

1 answer 20 views
1 answer 18 views
1 answer 89 views
1 answer 81 views
1 answer 45 views
...