简述es6各种简单方法

Posted Nothing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简述es6各种简单方法相关的知识,希望对你有一定的参考价值。

1、取代var的let和const

局部变量都可以使用let

固定变量都可以使用const

2、字符串的变化

反引号的使用

3、解构赋值

let [a, b, c] = [1, 2, 3];
let [ , , third] = ["foo", "bar", "baz"];

4、拷贝数组

const itemsCopy = [...items];

5、立即执行函数

[1, 2, 3].map(x => x * x);

6、map函数

let map = new Map(arr);

for (let key of map.keys()) {
  console.log(key);
}

for (let value of map.values()) {
  console.log(value);
}

for (let item of map.entries()) {
  console.log(item[0], item[1]);
}

7、模块

import React from ‘react‘;

  

 

以上是关于简述es6各种简单方法的主要内容,如果未能解决你的问题,请参考以下文章

简述ES6其他的东西

ES6简述

ES6基础知识简述(字符串、数组)

Java各种锁机制简述

小程序各种功能代码片段整理---持续更新

IOS开发-OC学习-常用功能代码片段整理