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 ⭐️
Last updated 2 years ago