We all know that it's bad to call a JavaScript constructor function without the 'new' keyword. So why does this:
Function("a", "b", "return a + b")(1, 1); // returns "2"
Return the same value as this?:
new Function("a", "b", "return a + b")(1, 1); // Also returns "2"
And is there any harm (or benefit) in omitting the 'new' key word in this instance?
The
Function
constructor creates a new function whether you call it withnew
or not. That's just how it is written. Constructors can be written that way, if desired.From the MDN page on the Function constructor:
There is no harm or benefit or even any difference in using or not using the
new
operator with theFunction
constructor.