Open powerdong opened 4 years ago
function Person(){ // return 123; //值类型 // return "abcdef"; //值类型 // return ["a","b"]; //引用类型 // return {a:2}; //引用类型 return function(){ console.log(1)}; //引用类型 } Person.prototype.sayHello = function() { console.log('hello world'); }; console.log(new Person()); //new Person()分别返回以下: // 1. Person{} // 2. Person{} // 3. ["a","b"]; // 4. Object {a:2} // 5. function(){ console.log(1)};