Family of Nicky and Cookie
'use strict'
function Cat(){
this.name = 'Fluffy';
this.color = 'white';
}
var cat = new Cat();
console.log(cat);
function Cat(){
this.name = 'Fluffy';
this.color = 'white';
}
var cat = Cat();
console.log(cat);//undefined, 因为Cat未return回去,但是this指向的是global(window)
console.log(window.color);