xxxxxxxxxx
//expression vs statement vs declaration in js
EXPRESSION - It produces a value (a = funA())
STATEMENT - Block of execution and It does not return anything (looping statement)
DECLARATION - is a value that is assigned to a variable (var b = 3)