character to int javascript code example
Example 1: javascript convert between string and ascii
let ascii = 'a'.charCodeAt(0); // 97
let char = String.fromCharCode(ascii); // 'a'
Example 2: parseint javascript
var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256
Example 3: javascript type casting int
Number("3.14") // returns 3.14
false.toString() // returns "false"
String(false) // returns "false"
Example 4: js convert order to char
String.fromCharCode(65,66,67); // returns 'ABC'