- 2
Imagine you have an empty JavaScript array (list=[ ]), If you insert 3 in position 0, 9 in position 1, and then 6 in position 0
console
2 Respostas
0
list[0] = 3
0
Imagine you have an empty list (list=[]). If you insert 6 in position 0, 3 in position 1, and then 9 in position 0 again, what do you get when you print the list? *