ES6学习手册

Posted designbyly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6学习手册相关的知识,希望对你有一定的参考价值。

扩展运算符能将 数组 转换为逗号分隔的 参数序列

。。。运算符

  1. 数组的合并

  2. 数组的克隆(属于浅拷贝)

      const xx = ['E', 'G', 'M']
            console.log([...xx])
    
  3. 将伪数组转换为真数组

     const divs = document.querySelectorAll('div')
            console.log([...divs])
                //console.log(divs)
    

ES6引入新的原始数据类型

它是JS的第七种数据类型,是一种类似于字符串的数据类型。

特点

  1. 值唯一,用来解决命名冲突的问题
  2. 值不能与其他数据进行运算
  3. 定义的对象属性不能使用for…in循环遍历,但是可以使用Reflect.ownKeys来获取对象的所有键名。

Symbol的创建

  1. 直接形式创建

            let s = Symbol()
            console.log(s, typeof s)   //Symbol() "symbol"
    
  2. 函数形式创建

            let s2 = Symbol('描述字符串')
            let s3 = Symbol('描述字符串')
            console.log(s2 === s3)      //false
    
  3. 对象形式创建

            let s4 = Symbol.for('参数字符串')
            console.log(s4, typeof s4)   //Symbol(参数字符串) "symbol"
    
            let s4 = Symbol.for('参数字符串')
            let s5 = Symbol.for('参数字符串')
            console.log(s4 === s5)    //true
    

https://developer.mozilla.org/zh-CN/docs/Web/javascript/Reference/Global_Objects/Symbol
在这里插入图片描述

每日一句
我还是喜欢我自己一个人,没辜负,没牵挂,没感动,也没失望。

以上是关于ES6学习手册的主要内容,如果未能解决你的问题,请参考以下文章

ES6学习手册

ES6学习手册

ES6学习手册(12)

ES6学习手册

ES6学习手册

ES6学习手册(13)