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
The Nullish Coalescing Operator is not supported in v12 for example (ES2020)
could be replaced following the syntax below: return answer == null ? 42 : answer;
same than return answer ?? 42;