Created
August 30, 2012 13:49
-
-
Save cloudsben/3528913 to your computer and use it in GitHub Desktop.
js创建对象
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var person = new Object(); | |
person.name = 'cloudsben'; | |
person.age = 23; | |
person.job = 'Web Developer'; | |
person.sayName = function(){ | |
alert(this.name); | |
} | |
person.sayName(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment