Skip to content

Instantly share code, notes, and snippets.

@MrKou47
Created July 28, 2017 04:24
Show Gist options
  • Save MrKou47/7bc0d272cd4785ac90d711aac013bbf7 to your computer and use it in GitHub Desktop.
Save MrKou47/7bc0d272cd4785ac90d711aac013bbf7 to your computer and use it in GitHub Desktop.
关于js new 标识符的一些点
function Car() {
console.log(this);
console.log(this instanceof Car);
this.a = 'i am a ';
}
var t = new Car();
var tt = Car();
console.log(t);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment