Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sairion/1d8fb55d6ab87d667704e24bbd2d40ec to your computer and use it in GitHub Desktop.
Save sairion/1d8fb55d6ab87d667704e24bbd2d40ec to your computer and use it in GitHub Desktop.
  1. You can override constructor output by returning object type.
class A {
  constructor(){
    return new Number(0)
  }
}
console.log(new A == 0) // => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment