在构造函数中的setData和getData

构造函数中的设置方法和获取方法


    // 在构造函数中
    function Person(name,age){
        this.name = name;
        this.age = age;
        //getters 获取一个值
        this.getData = function(){
            return this.name;
        }
        //setters 设置一个值
        this.setData = function(val){
            this.age = val;
        } 
    }

    var obj = new Person('wuyujie',23);
    console.log(obj.getData());//获取名字 wuyujie
    console.log(obj.age);//输出当前age 23
    obj.setData(25);//设置age
    console.log(obj.age);//25

你可能感兴趣的:(JavaScript随笔)