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

Javascript directly defines object instances [_javascript tips

WBOY
Release: 2016-05-16 19:22:51
Original
1050 people have browsed it

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
]
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template