You have already completed these exercises!
Do you want to take them again?
You completed the JS Array Methods Exercises from W3Schools.com
Share on:
After executing the following code:const fruits = ['Banana', 'Orange', 'Apple'];fruits.pop();What will the fruits array look like?
const fruits = ['Banana', 'Orange', 'Apple'];fruits.pop();
fruits
['', 'Banana', 'Orange', 'Apple']
['Banana', 'Orange']
['Orange', 'Apple']