Skip to content

Instantly share code, notes, and snippets.

@5TDg9
Last active August 29, 2015 14:16
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 5TDg9/f9008872bf11ba84b54a to your computer and use it in GitHub Desktop.
Save 5TDg9/f9008872bf11ba84b54a to your computer and use it in GitHub Desktop.
Object forEach
var friends = ["Mike", "Stacy", "Andy", "Rick"];
friends.forEach(function (eachName, index){
console.log(index + 1 + ". " + eachName); // 1. Mike, 2. Stacy, 3. Andy, 4. Rick​
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment