๐empty statement
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
Last updated
Was this helpful?