Skip to content

Instantly share code, notes, and snippets.

@Tocacar
Created April 17, 2019 10:19
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 Tocacar/829405260b5cde8953be437d47baf601 to your computer and use it in GitHub Desktop.
Save Tocacar/829405260b5cde8953be437d47baf601 to your computer and use it in GitHub Desktop.
var array = [{name: 'anne'}, {name: 'jim'}, {name: 'sam'}, {name: 'kay'}, {name: 'olive'}]
console.log('%c <<< log start >>> ', 'color: red; background-color: yellow');
for (let i = 0; i < array.length; i++) {
console.log(array[i]);
}
console.log('%c <<< log end >>> ', 'color: yellow; background-color: black');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment