Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omarkdev/b3f2a41e381532862e26fa936553fda8 to your computer and use it in GitHub Desktop.
Save omarkdev/b3f2a41e381532862e26fa936553fda8 to your computer and use it in GitHub Desktop.
const result = new Boolean('awesome');
result.origin = 'https://omark.dev';
console.log(result);
console.log(result == true);
console.log(result === true);
// { [Boolean: true] origin: 'https://omark.dev' }
// true
// false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment