Created
April 17, 2019 10:19
-
-
Save Tocacar/829405260b5cde8953be437d47baf601 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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