Posts by rizidoro • 315 points
1 post
-
20
votes3
answers2363
viewsA: What does it mean: "functions are first class objects in Javascript"?
The term "first class" means that the function is treated in the same way as any type of value in javascript. For example, for you to assign a value to a variable, you do so: var meuInteiro = 10;…