美文网首页
ES6——对象的简写

ES6——对象的简写

作者: 向上而活 | 来源:发表于2020-06-16 18:00 被阅读0次

    * 省略同名的属性值

    * 省略方法的function

    <script type="text/javascript">

        let x = 3;

        let y = 5;

        //普通额写法

    //    let obj = {

    //        x : x,

    //        y : y,

    //        getPoint : function () {

    //            return this.x + this.y

    //        }

    //    };

        //简化的写法

        let obj = {

            x,

            y,

            getPoint(){

                return this.x

            }

        };

        console.log(obj, obj.getPoint());

    </script>

    相关文章

      网友评论

          本文标题:ES6——对象的简写

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