首页 > 代码库 > javascript创建对象的方式

javascript创建对象的方式

一、字面量

字面量也称单例模式

var person = {        username: ‘wuyushuo‘,        age: 22,        say: function() {            console.log(‘hello‘)        },        getname: function() {            return this.username;        },        getage: getage   //在对象外定义,不定义会报错    }    // 对象外定义对象中的方法    function getage() {        return person.age    }    // 再次创建新的空间模块    person.hello = {        gettime: function() {            return new Date()        }    }    // 可以随意更改属性    person.username=‘abc‘    console.log(person.username);  //abc

javascript创建对象的方式