When you return b
, it is just a reference to function b, but not being executed at this time.
When you return b()
, you're executing the function and returning its value.
Try alert
ing typeof(s)
in your examples. Snippet b will give you 'function'. What will snippet a give you?