var add = ()() Why do we need two brackets when declaring a variable?
var add = (function(){})(); will directly execute the function and get the return result
var add = (function(){})(); will directly execute the function and get the return result