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:)