Last updated 2 years ago
Was this helpful?
JS โฉ statement โฉ other โฉ empty
(statement) provide no statement, although the JS syntax would expect one.
for(let i = 0; i < a.length; a[i++] = 0) /* empty */ ; // in this case, loop body isn't needed โฐโโโโโโโโโโโโโโฏ <-- empty statement
JavaScript: The Definitive Guide โฉ Ch. 5 Statements
Statements and declarations โฉ Others โฉ empty โญ๏ธ