This website requires JavaScript.
Explore
Help
Sign In
theluyuan
/
webveuje
Watch
1
Star
0
Fork
0
You've already forked webveuje
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
73467822cb
Branches
Tags
View all branches
webveuje
/
javascript
/
10对象.md
luyuan
0879393caf
js
2020-12-21 10:33:16 +08:00
188 B
Raw
Blame
History
对象
创建
new Object()
{}
使用
var
obj
=
new
Object
()
// 创建属性
obj
.
name
=
"name"
// 动态操作属性
var
name
=
'age'
obj
[
age
]
=
18
;