I have been messing around with the Google's JavaScript code and I saw in their code that they define array in different way.
What's so unique in writing array like that?
var arr = (['b' , 'f' , 's']);
why is the "()" in that code, it could be fine either like that:
var arr = ['b' , 'f' , 's'];
- is it have purpose?
Thank you in advance.