Skip to content

Instantly share code, notes, and snippets.

@cianclarke
Created April 30, 2013 18:33
Show Gist options
  • Save cianclarke/5490859 to your computer and use it in GitHub Desktop.
Save cianclarke/5490859 to your computer and use it in GitHub Desktop.
Functions & the new keyword
function Car(){
this.wheels = 4;
}
var redCar = new Car();
console.log('1: ' + typeof redCar);
console.log('2: ' + redCar.wheels);
var otherCar = Car();
console.log('3: ' + typeof otherCar);
console.log('4: ' + window.wheels);
console.log('5: ' + otherCar.wheels);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment