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
Expected behavior:
SyntaxError: Numeric separator can not be used after leading 0.
Actual behavior:
0_0// -> 0 valid but shouldn't0_0.0// -> 0 valid but shouldn't0_0e0_0// -> 0 valid but shouldn't0_0_1// -> 1 valid but shouldn't. Btw 001 is invalid in strict mode1_0.0_1// -> 10.01 ok1_0e0_1// -> 100 ok