* 普通函数中的this是谁?=======》window
* 对象.方法中的this是谁?======>当前的实例对象
* 定时器方法中的this是谁?=====>window
* 构造函数中的this是谁?=======>实例对象
* 原型对象中的this是谁?=======》实例对象
*
* */
//普通函数
function f1() {
console.log("小小读书郎");
}
f1();
//构造函数---通过new来调用,创建对象
function F1() {
console.log("构造函数。噢耶");
}
var f=new F1();
//对象的方法
function Person() {
this.play=function () {
console.log("我喜欢敲代码");
};
}
var per=new Person();
per.play();