Code structure
Statements
alert('Hello');
alert('World');semicolons
alert("There will be an error")
[1, 2].forEach(alert)alert("There will be an error")[1, 2].forEach(alert)Comments
/*
/* nested comment ?!? */
*/
alert( 'World' );Last updated