JavaScript 6裡都有啥新鮮東西?讓我們一起來看看JavaScript 6的一些新功能。
let
, const
(用來定義block-local變數), 程式過程中的 function
解構: let {x, y} = pt; let [s, v, o] = triple();
#(前提是let pt = {x:2, y:-5}
)
#預設參數值: function f(x, y=1 , z=0) {⋯}
其它參數: function g(i, j, ...r) { <a href="http://www.php.cn/wiki/135.html" target="_blank">return</a> r.slice(i, j); }
(不需要再使用 arguments
)。
資料展開: 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">array</a>, 4]
.
#物件簡寫:<a href="http://www.php.cn/wiki/1051.html" target="_blank"></a>let one = 1; { one, func_one() {return 1;}, ['
key
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">也包含 </a>.
clear()<a href="http://www.php.cn/wiki/1298.html" target="_blank"> , </a>.
delete()<a href="http://www.php.cn/wiki/127.html" target="_blank">, </a>.
forEach()
,
弱map: let map = new WeakMap()。當有循環
引用
時使用它。同理
promise:
當
promise.then(value => {…})
時,
當
promise.then(…).then(…).catch(error => {…})
時
快速promise 建立:
Promise.resolve(value)
,
<a href="http://www.php.cn/wiki/1483.html" target="_blank">迭代: </a>Promise.
all
(listOfPromises).then(listOfValues => …),
##代理: <a href="http://www.php.cn/wiki/596.html" target="_blank">let obj = new Proxy(proto, han</a>dl
#er)
.簡單地說: 使用類別物件的元素進行重載(能夠帶來所有可存取的屬性
<a href="http://www.php.cn/wiki/1071.html" target="_blank"></a>
<a href="http://www.php.cn/wiki/166.html" target="_blank">產生器</a>:
function* gen() { yield 1; yield 2; }<a href="http://www.php.cn/code/8202.html" target="_blank">事實上,</a>gen()
會傳回一個含有 <a href="http://www.php.cn/wiki/188.html" target="_blank">next</a>()
函數的物件。
循環:
for (var [key, val] of items(x)) { alert(key + ',' + val); }
super
, 和 #static
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.`###.###
// 多行字符串 re`line1: (words )* line2: \w+` // It desugars to: re({raw:'line1: (words )*\nline2: \w+', cooked:'line1: (words )*\nline2: \w+'})#########類型化陣列############# ##
以上是具體介紹JavaScript6的新特性的詳細內容。更多資訊請關注PHP中文網其他相關文章!