The simple definition of an expression is "something that resolves to a value." The simple definition of a statement is "an executable chunk of code."
With that in mind, since this function below resolves to a value of 6, does that make it an expression as well, instead of a statement, or both?
function ii () {
return 6;
}
ii();