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
If a variable is declared with var but nothing is assigned to it before its first use, it probably means that an assignment was forgotten somewhere. If the intention is to make the variable nil, it should be explicitly assigned as var foo = nil.
If a variable is declared with
varbut nothing is assigned to it before its first use, it probably means that an assignment was forgotten somewhere. If the intention is to make the variable nil, it should be explicitly assigned asvar foo = nil.