Skip to content

Files

Latest commit

 

History

History
19 lines (13 loc) · 200 Bytes

objectlei-xing.md

File metadata and controls

19 lines (13 loc) · 200 Bytes

Object类型

Object创建实例的方式有两种

第一种

var person = new Object();
person.name = "TYRMars";

第二种

var person = {
  name:"TYRMars"
}