You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to propose a new option: adding space between opening bracket and the first argument (in function call, array, property access), also between the last one and the closing bracket.
This is it:
[],{}// empty arrays and objects stay the same[1,2,3]// [ 1, 2, 3 ]arr[0]// arr[ 0 ]obj[prop]// obj[ prop ]functionfunc(a,b){}// function func( a, b ) {}func(arg1,arg2)// func( arg1, arg2 )
The text was updated successfully, but these errors were encountered:
I'd like to propose a new option: adding space between opening bracket and the first argument (in function call, array, property access), also between the last one and the closing bracket.
This is it:
The text was updated successfully, but these errors were encountered: