Answers for "change letters to numbers in js"

3

javascript letters as number

const toChars = n => `${n >= 26 ? toChars(Math.floor(n / 26) - 1) : ''}${'ABCDEFGHIJKLMNOPQRSTUVWXYZ'[n % 26]}`;

// Examples
toChars(0);     // A
toChars(1);     // B
toChars(25);    // Z
Posted by: Guest on July-03-2020
6

how to change a string to number in javascript

let theInt = parseInt("5.90123"); //5
let theFloat = parseFloat("5.90123"); //5.90123
Posted by: Guest on May-03-2020

Code answers related to "change letters to numbers in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language