Last active
September 7, 2016 04:38
-
-
Save loburets/ec62287a57db9e3ac3e17edcfae8580c to your computer and use it in GitHub Desktop.
console.log with current statement (different ways)
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
console.log(JSON.parse(JSON.stringify(ojbect))); | |
//or | |
console.log(array.slice()); | |
//or | |
console.group('group'); | |
array.forEach(function(item) { | |
console.log(item); | |
}); | |
console.groupEnd(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment