es6features icon indicating copy to clipboard operation
es6features copied to clipboard

Add semicolons to "... APIs" part

Open Gerhut opened this issue 8 years ago • 0 comments

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.

Gerhut avatar May 12 '17 06:05 Gerhut