Search Results

-1
votes

The difference between the two functions

They mean the exact same thing. It's just syntactic sugar. The latter is IMO more revealing of what JavaScript is really doing; i.e. "sum" is just a variable, initialised with a function object, wh …
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 …
2
votes

How to programmatically capture a web page with forced updates.

Install Firefox and GreaseMonkey. Have the GM script add DOM events where appropriate to track modifications. You can then use XMLHttpRequest …