23.
In JavaScript, functions can be assigned to variables and passed as arguments to other functions. What is this concept called?
Function as value
Function declaration
Function binding
Function hoisting
Correct: A
In JavaScript, functions are first-class citizens, which means they can be treated just like any other value. This allows functions to be assigned to variables, passed as arguments to other functions, and even returned as values from other functions.