JavaScript JavaScript 6의 새로운 기능은 무엇인가요? JavaScript 6의 새로운 기능 중 일부를 살펴보겠습니다.
let
, const
(블록 로컬변수 정의에 사용), function
let {x, y} = pt; let [s, v, o] = triple();
(단,
)let pt = {x:2, y:-5}
function f(x, y=1, z=0) {⋯}
let a = [0,1,2,3], o = <a href="http://www.php.cn/wiki/%20165.html" target="_blank">새로운<p> 뭔가(...a);</p></a>
. let a = [0,1,2,3], o = <a href="http://www.php.cn/wiki/165.html" target="_blank">new</a> Something(...a);
배열 리터럴에도 사용할 수 있습니다: [1, ...<a href="http://www.php.cn/wiki/1041.html" target="_blank"> 배열</a>, 4]
.[1, ...<a href="http://www.php.cn/wiki/1041.html" target="_blank">array</a>, 4]
객체 약어: let one = 1; {return 1;}, ['<a href="http://www.php.cn/wiki/1051.html" target="_blank">key<br> ' + one]: 1 }</a>
.let one = 1; { one, func_one() {return 1;}, ['<a href="http://www.php.cn/wiki/1051.html" target="_blank">key</a> ' + one]: 1 }
함수약어 는 (a) => a * a
(function(a) { return a * a; }).bind(this)
과 같은 효과를 가집니다. map, set: .let m = new Map(); m.set(key, value); m.has(key); m.get(key)
에는 도 포함됩니다.<a href="http://www.php.cn/wiki/917.html" target=" _blank"> 지우기<br>()</a>
, .<a href="http://www.php.cn/wiki/1298.html" target="_blank">삭제<code>.<a href="http://www.php.cn/wiki/917.html" target="_blank">clear</a>()
( ) 코드>, .<a href="http://www.php.cn/wiki/127.html" target="_blank">forEach<code>.<a href="http://www.php.cn/wiki/1298.html" target="_blank">delete</a>()
(), .<a href="http://www.php.cn/wiki/127.html" target="_blank">forEach</a>()
..keys()
. let map = new WeakMap()
루프참조가 있을 때 사용하세요. 마찬가지 . new WeakSet()
.new Promise((resolve, reject) => {…})
가 promise.then(value => {…})
에서 약속된 값(또는 New promise)을 반환하는 경우 , 연쇄 호출 형성) resolve(valueOrPromise)
promise.then(…).then(…).catch(error => {…})
이 약속을 어길 때 reject(new Error(…))
, Promise.resolve(value)
.Promise.reject(error)
약속.<a href="http://www.php.cn/wiki/1483.html" target="_blank">all<p>(listOfPromises).then(listOfValues => …)</p></a>
,Promise.<a href="http://www.php.cn/wiki/1483.html" target="_blank">all</a>(listOfPromises).then(listOfValues => …)
Promise.race(listOfPromises).then(valueThatResolvedFirst => …)
let obj = new Proxy(proto, han<a href="http://www.php.cn/wiki/596.html" target="_blank">dl<p>er)</p></a>
.let obj = new Proxy(proto, han<a href="http://www.php.cn/wiki/596.html" target="_blank">dl</a>er)
간단히 말하면: Generator: function* gen() { yield 1; yield 2; }
실제로
는 <a href="http://www.php.cn/wiki/1071.html" target="_blank">next <code>gen()
()가 포함된 메시지를 반환합니다. > 함수의 객체입니다. <a href="http://www.php.cn/wiki/1071.html" target="_blank">next</a>()
. for (var [key, val] of items(x)) { alert(key + ',' + val); }
<a href="http://www.php.cn/wiki/166.html" target="_blank">확장<p> </p></a>
, <a href="http://www.php.cn/code/8202.html" target="_blank">super<code><a href="http://www.php.cn/wiki/166.html" target="_blank">extends</a>
및 <a href="http://www.php.cn/wiki/188.html" target="_blank">정적<code><a href="http://www.php.cn/code/8202.html" target="_blank">super</a>
:<a href="http://www.php.cn/wiki/188.html" target="_blank">static</a>
class Point extends Base { constructor(x,y) { super(); this[px] = x, this[py] = y; this.r = function() { return Math.sqrt(x*x + y*y); } } get x() { return this[px]; } get y() { return this[py]; } proto_r() { return Math.sqrt(this[px] * this[px] + this[py] * this[py]); } equals(p) { return this[px] === p[px] && this[py] === p[py]; } }
멤버)에서 사용할 수 있는 개인 키를 생성합니다.
let a = Map(); { let k = Symbol(); a.set(k, 'value'); // 这里你可以访问和设置'value',比如a.get(k)。 } //这里不行,k是不可见的。
모듈식:
module math { export function sum(x, y) { return x + y; } export var pi = 3.141593; } import {sum, pi} from math; alert(sum(pi,pi));
문자열: 여러 줄이 될 수 있으며, 변수를 포함할 수 있습니다.
.`You are ${age} years old.`
아아앙
위 내용은 JavaScript6의 새로운 기능에 대한 자세한 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!