Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
const i = +s
const i = Number(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...