Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created August 16, 2020 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/7dafe01dcddaf316f3ce7a48701c9a71 to your computer and use it in GitHub Desktop.
Save codecademydev/7dafe01dcddaf316f3ce7a48701c9a71 to your computer and use it in GitHub Desktop.
Codecademy export
const groceryList = ['orange juice', 'bananas', 'coffee beans', 'brown rice', 'pasta', 'coconut oil', 'plantains'];
let ShortgroceryList = groceryList.shift()
console.log(ShortgroceryList)
console.log(groceryList.shift())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment