es6对象字面量的增强写法

tech2024-12-04  9

es6对象字面量的增强写法

// const obj = new Object() // const obj = { // name: 'lll', // age: 18, // run: function () { // console.log('在敲代码'); // }, // eat: function () { // console.log('在吃东西'); // } // } // 1.属性的增强写法 const name = 'lll'; const age = 18; const height = 1.88 // ES5的写法 // const obj = { // name: name, // age: age, // height: height // } // const obj = { // name, // age, // height, // } // // console.log(obj); // 2.函数的增强写法 // ES5的写法 // const obj = { // run: function () { // // }, // eat: function () { // // } // } const obj = { run() { }, eat() { } }
最新回复(0)