In a recent question, I received suggestions to talk on, amongst other things, the aspect of JavaScript where functions are \'first class\' objects. What does the \'first c
Simple test. If you can do this in your language (Python as example):
def double(x): return x*x f = double print f(5) #prints 25
Your language is treating functions as first class objects.