2 lines
71 B
JavaScript
2 lines
71 B
JavaScript
parseInt("0e0"); // 0
|
|
parseInt("08"); // 0, '8' is not an octal digit.
|
parseInt("0e0"); // 0
|
|
parseInt("08"); // 0, '8' is not an octal digit.
|