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
Numers in CS like 0b1010 and 0o31 currently compile to0xa and 0x19 respectively.
Doing that conversion during compilation is no longer neccessary since those literals are now natively supported in JS.
Omitting that conversion and outputting as-is could slightly increase the ouput's readability or reveal intention.