How do you create an array?
var bucketList = [‘Web Developer’, ‘Girlfriend’, ‘Dog’];
If I have a list using an array with what number, would I select the last string, with a list of three strings?
[2]
How can you find out how many items are inside of an array?
console.log(bucketList.length);
With a built in function that Javascript has for arrays, how can we add items to the end of an array?
bucketList.push(‘item 3’, ‘item 4’);
With a built in function that Javascript has for arrays, how can we delete the last item from an array?
bucket.pop();