es6features
es6features copied to clipboard
Add semicolons to "... APIs" part
Once examples is executed as a whole code block,
Array.of(1, 2, 3)
[0, 0, 0].fill(7, 1)
will be treated as
Array.of(1, 2, 3)[0, 0, 0].fill(7, 1)
which is not as hoped.