Last Updated: February 25, 2016
·
563
· arunrajashanmugavel

Javascript - function defnition vs execution

Function defnition

var a =  function() { console.log('test'); }

The function is assigned to an variable

Annonymous function execution

var a = new function() { console.log('test'); }

The Function is assigned as well as function get executed once.