Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are these way to define function in javascript equal?

Tags:

javascript

I was wondering if the following way of writing function in javascript are equal.

To me it seems they produce the same result, but in what they can be different?

First way:

(function(){
    alert('ciao')
})();

Second way:

new function bar(){alert('ciao')}; 
like image 560
antonjs Avatar asked Apr 22 '26 21:04

antonjs


2 Answers

The second one returns a new instance of the function, as if it was a constructor.

So, these are equivelent:

Traditional method:

function bar() {
    this.x = 5;
};
var x = new bar();

Lazy one-liner.

var x = new function bar() { this.x = 5; };

The only difference is that you cannot reuse bar later.

If you don't believe me, try console.log(x.y); on both examples.

Your first example is an anonymous function which is not instantiated, it is just called.

like image 190
beatgammit Avatar answered Apr 25 '26 10:04

beatgammit


The first one executes the function and returns the result of it. The second one executes the function and returns an object.

EDIT: example:

enter image description here

like image 24
Oscar Del Ben Avatar answered Apr 25 '26 10:04

Oscar Del Ben