I have a doubt regarding functions(objects) in javascript.
I have 2 pieces of code like,
var a= function(){
console.log('abc')
}
and
var a= (function(){
console.log('abc')
})
what is the difference between these two>>
thanx:)

(((function(){})))and it'll still be the same thing, unless what you mean is(function(){}())... – elclanrs Sep 21 '12 at 7:31