浅谈js函数中的实例对象、类对象、局部变量(局部函数)

前端之家收集整理的这篇文章主要介绍了浅谈js函数中的实例对象、类对象、局部变量(局部函数)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

定义

函数) }

调用

var p2 = new Person("美国",31); document.writeln("</br>"); document.writeln("age:" + p2.age); document.writeln("object national:" + p2.national); document.writeln("Class national:" + Person.national); document.writeln("local var:" + p2.bb); document.writeln("</br>"); document.writeln("Class national:" + Person.national); //age:29 object national:undefined Class national:中国 local var:undefined //age:31 object national:undefined Class national:美国 local var:undefined //Class national:美国</pre>

以上这篇浅谈js函数中的实例对象、类对象、局部变量(局部函数)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

猜你在找的JavaScript相关文章