美文网首页
ES6对象字面量增强写法

ES6对象字面量增强写法

作者: 63537b720fdb | 来源:发表于2020-07-17 19:24 被阅读0次

1.生成对象的方法

1.利用对象构造函数

            const obj = new Object();

2.字面量写法

            const obj = {
                
            }

2.属性的增强写法

1.ES5

            const name = 'sunny',
                   age = 18,
                   sex = 'male';

            const obj = {
                name: name,
                age: age,
                sex: sex
            }
            console.log(obj);
image.png

2.ES5属性增强写法

            const name = 'sunny',
                   age = 18,
                   sex = 'male';

            const obj = {
                name,
                age,
                sex
            }
            console.log(obj);
image.png

3.函数增强写法

1.ES5

            const obj = {
                eat: function() {
                    console.log('eatting');
                },
                run: function() {
                    console.log('running');
                }
            }
image.png

2.ES6函数增强写法

            const obj = {
                eat() {
                    console.log('eatting');
                },
                run() {
                    console.log('running');
                }
            }
image.png

相关文章

网友评论

      本文标题:ES6对象字面量增强写法

      本文链接:https://www.haomeiwen.com/subject/lyknhktx.html