8
votes
Why in JavaScript is a function considered both a constructor and an object?
Your understanding is wrong:
myFunction().myProperty; // myFunction has no properties
The reason it does not work is because ".myProperty" is applied to the return …
