Skip to content

Instantly share code, notes, and snippets.

@sb-bilal-dev
Last active October 21, 2020 17:30
Show Gist options
  • Save sb-bilal-dev/b9d1549bf3f740c7c2f92f62c03e3580 to your computer and use it in GitHub Desktop.
Save sb-bilal-dev/b9d1549bf3f740c7c2f92f62c03e3580 to your computer and use it in GitHub Desktop.
console.log code for Debugging JavaScript Part 1
// Let's log catCount
if (isLogging && catCount === 10) {}
// You can do it like this
if (isLogging && (console.log(catCount), catCount === 10)) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment