Which use is possible for the function value produced by a function expression?
It can exist only as an immediately executed expression
It can be assigned to a variable for a later call✓Correct answer
It must always be anonymous
It can be stored only as an object's string property
Explanation
A function expression evaluates to a function value, so the program can assign that value to a variable or pass it elsewhere. The expression need not be anonymous, and merely creating the value does not force an immediate call.