Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created August 18, 2020 11:58
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/acae3621e69167d0ed913c4e6f979f21 to your computer and use it in GitHub Desktop.
Save codecademydev/acae3621e69167d0ed913c4e6f979f21 to your computer and use it in GitHub Desktop.
Codecademy export
const rapperArray = ["Lil' Kim", "Jay-Z", "Notorious B.I.G.", "Tupac"];
// Write your code below
for ( i = 0 ; i < rapperArray.length ; i++) {
console.log(rapperArray[i]);
}
console.log(i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment