Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created October 8, 2020 17:34
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/697d423f425095eea080091f853f19ba to your computer and use it in GitHub Desktop.
Save codecademydev/697d423f425095eea080091f853f19ba to your computer and use it in GitHub Desktop.
Codecademy export
const vacationSpots = ['Bali','Paris','Tulum'];
console.log(vacationSpots.lenght);
// Write your code below
for (let i = 0; i <= vacationSpots.lenght; i++ )
{
console.log(`I would love to visit ${vacationSpots[i]}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment