Statement ↔ single line of Code, end with ; semicolon
Line Comment
// JS Syntax to comment for single line
Block Comment
/ JS Syntax to comment for multiple lines /
Control Flow
Execution Sequence Order of Statement(s)
Directive
Statement to direct Compiler/Preprocessor behavior
References
Program↔ self-contained sequence of Statement to perform taskControl Flow↔ Execution Sequence Order of Statement(s)continue↔ JS Keyword to end execution of Statement in current Iteration of loop, & continue execution with next iteration in looplabel↔ to prefix Statement with Identifier to call withbreak&continue"use strict"↔ Directive Statement to invoke Strict Mode for either entire script or specific functionwith↔ JS Keyword to extend Scope Chain of Statement . !Forbidden in Strict Mode!throw↔ JS Keyword Statement to stop executing current function with user-defined ExceptionDirective↔ Statement to direct Compiler/Preprocessor behavior