1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Most examples from https://github.com/rse/es6-features under MIT license
const PI = 3.141593;
let callbacks = [];
odds = evens.map(v => v + 1);
nums.forEach(v => {
if (v % 5 === 0)
fives.push(v);
})
function f (x, y, ...a) {
return (x + y) * a.length;
}
var params = [ "hello", true, 7 ];
var other = [ 1, 2, ...params ]; // [ 1, 2, "hello", true, 7 ]
f(1, 2, ...params) === 9;
var str = "foo";
var chars = [ ...str ]; // [ "f", "o", "o" ]
var customer = { name: "Foo" };
var card = { amount: 7, product: "Bar", unitprice: 42 };
message = `Hello ${customer.name},
want to buy ${card.amount} ${card.product} for
a total of ${card.amount * card.unitprice} bucks?`;
0b111110111 === 503;
0o767 === 503;
for (let codepoint of "𠮷") console.log(codepoint);
function* ();
*function();
yield;
export class Node {
}
class A {
constructor() {
super()
}
constructor(test) {
super(test);
}
}
isFinite();
isNaN();
x = new Promise(...a);
x = new Proxy(...a);
x ??= 1;
x &&= 2 ?? 3;
x **= 2**3|2&4;
x ||= 2;
throw new Error();
throw new TypeError();
new Uint8ClampedArray();
new DataView();
new Map();
new WeakMap();
Intl.DateTimeFormat();
globalThis = window = global = this;
|