摘要: 1.The Object Type(Object类型)There are two ways to explicitly create an instance of Object. The first is to use the new operator with the Object constructor like this:var person = new Object();person.name = "Nicholas";person.age = 29;The other way is to use object literal notation(对象描述符号):va 阅读全文
posted @ 2012-12-11 11:23 黎明露珠 阅读(202) 评论(0) 推荐(0) 编辑