1// STATEMENT: Code that performs actions (generally something that ends in ";"
2// example:
3const str = `String assigned to str`;
4
5// EXPRESSION: Code that produces a value
6// example(s):
73 + 4
81991
9true && false && false
1JavaScript statements are composed of Expressions.
2All expressions are statements composed of Expressions.
3A statement is a bunch of statments but
4statements are not a bunch of statements.
5Some statements are not really statements.