js学习(五)-全局函数和类内部函数区别
//---------------------------js代码---------------------------
function User(){
//类成员的定义及构造函数
this.name = "hello";
this.age = 25;
this.sayHello = function (){
console.log("here is class1");
}
}
//-------------------------html页面-------------------------
<script type="text/javascript" src="demo01.js"></script>
<script type="text/javascript">
var u = new User();
var say = new u.sayHello();
console.log(typeof(say))
</script>
总结:全局函数和作为一个对象方法定义的函数之间没有任何区别,因为可以把全局函数和变量看作为window对象的方法和属性。也可以使用new操作符来操作一个对象的方法来返回一个对象,这样一个对象的方法也就可以定义为类的形式,其中的this指针则会指向新创建的对象。