JavaScript Refresh – Program Structure
Expressions and statements A fragment of code that produces a value is called an expression. Expressions can contain other expressions. true l false 1 “hello” 2×5 Math.min((2+6),4) Statements Statements are one or multiple expressions with a semicolon after it. A program is a list of statements. Statements are made up of expressions. This is a … Read more