Home  >  Article  >  Web Front-end  >  Javascript directly defines object instances [_javascript tips

Javascript directly defines object instances [_javascript tips

WBOY
WBOYOriginal
2016-05-16 19:22:511035browse

From: JavaEye.com

JavaScript can directly define object instances without defining object categories:
var person = {
name : "",
age : 0,
toString: function() {
document.writeln("[name]:" this.name "
" "[age]:" this.age);
}
}

Full HTML example:


[Ctrl A select all Note:
If you need to introduce external Js, you need to refresh to execute
]
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn