Skip to content

Instantly share code, notes, and snippets.

@loburets
Last active September 7, 2016 04:38
Show Gist options
  • Save loburets/ec62287a57db9e3ac3e17edcfae8580c to your computer and use it in GitHub Desktop.
Save loburets/ec62287a57db9e3ac3e17edcfae8580c to your computer and use it in GitHub Desktop.
console.log with current statement (different ways)
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