ES6 new features development WeChat applet (9)

迷茫
Release: 2017-03-25 17:35:00
Original
2042 people have browsed it

No need to declare strict mode

There is no need to put "use strict" in the first line of the script file, when the WeChat applet development tool turns on the ES6 conversion function javasctipt strict mode (Strict Mode) is enabled by default.

Use block-level scope instead of IIFES

The common use of IIFE (immediately executed function expression) is to create an inner scope, In ES6, you can create a block-level scope instead of just a function scope. The advent of block-level scoping makes the widely used immediately executed anonymous functions (IIFE) no longer necessary.

IIFE:

ES6 new features development WeChat applet (9)

##ES6 block-level scope:

ES6 new features development WeChat applet (9)

Use for...of loop

ES6 Drawing on the C++, Java, C# and Python languages, the for...of loop is introduced as a unified method for traversing all data structures.

As long as a data structure is deployed with the Symbol.iterator attribute, it is considered to have the iterator interface, and its members can be traversed using a for...of loop. In other words, what is called inside the for...of loop is the Symbol.iterator method of the data structure.

For...of loops can be used in arrays, Set and Map structures, certain array-like objects, Generator objects, and strings.

Traverse the array:

ES6 new features development WeChat applet (9)

##Traverse the Set:

ES6 new features development WeChat applet (9)

for...of is used to traverse an iterator:

ES6 new features development WeChat applet (9)

for...in is used to traverse the properties in the object:

ES6 new features development WeChat applet (9)

The forEach method of an array instance traverses the elements and indexes of an array

ES6 new features development WeChat applet (9)

for...of loops support ES6 iteration (via iterables and iterators) and destructuring. . Through the new ES6 method entries() of the array combined with destructuring, the forEach method of the array instance can be replaced.

ES6 new features development WeChat applet (9)

Exchange the values ​​​​of two variables through variable destructuring

If a pair of variables By putting it into an array, and then destructuring the array and assigning the same variables (in different orders), you can exchange the values ​​of the two variables without relying on intermediate variables.

ES6 new features development WeChat applet (9)

Use spread operator and remainder operator

The spread operator (the spread syntax) allows an expression to be expanded somewhere, where there are multiple arguments (for function calls) or multiple elements (for array literals) or multiple variables (for destructuring assignments) That'll be it.

is used for function call syntax:

ES6 new features development WeChat applet (9)

is used for Array literal syntax:

ES6 new features development WeChat applet (9)

The rest operator (the rest operator), which looks like The spread operator is the same, but it is used to destructure arrays and objects. In a way, a residual element is the opposite of an unwind element, which "expands" an array into multiple elements, while a residual element collects multiple elements and "collapses" them into a single element.

The rest parameter allows actual parameters of indefinite length to be represented as an array.

Remaining parameter syntax:

ES6 new features development WeChat applet (9)

##Usage example:

ES6 new features development WeChat applet (9)

Compare two values ​​to see if they are strictly equal

Object. is() is used to compare whether two values ​​are strictly equal. It has basically the same behavior as the strict comparison operator (===), with only two differences: first, +0 is not equal to -0, and second, NaN is equal to itself.

ES6 new features development WeChat applet (9)

In order to meet the adaptation of the mobile terminal, Polyfill# can be added to the program

ES6 new features development WeChat applet (9)

##Object attribute copy

The Object.assign method is used to copy all enumerable properties of the source object (source) to the target object (target). It requires at least two objects as parameters, the first parameter is the target object, and the subsequent parameters are source objects. Whenever one of the parameters is not an object, a TypeError will be thrown.

ES6 new features development WeChat applet (9)

If the target object and the source object have the same attribute, or multiple source objects have the same attribute, then Later properties will overwrite previous properties.

In order to meet the mobile terminal adaptation, Polyfill can be added to the program

ES6 new features development WeChat applet (9)
##

The above is the detailed content of ES6 new features development WeChat applet (9). For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!