Logo

Programming-Idioms

  • JS
const i = Number(s);
const i = +s
let i = parseInt(s, 10)

parseInt(string, radix);
The radix is an integer between 2 and 36.
I : Integer := Integer'Value (s);

New implementation...