Skip to content

Instantly share code, notes, and snippets.

@xenioushk
Last active November 16, 2021 04:55
Show Gist options
  • Save xenioushk/6acaf1dc4578afc96f512d7f2709eec7 to your computer and use it in GitHub Desktop.
Save xenioushk/6acaf1dc4578afc96f512d7f2709eec7 to your computer and use it in GitHub Desktop.
Browser console.assert() example
let a = 3;
let b = 4;
console.assert(a == b, {
a: a,
b: b,
errorMsg: a + " is not equal to " + b
})
// More examples:
// https://developer.mozilla.org/en-US/docs/Web/API/console/assert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment