JavaScript Konversi antara String dan ASCII

let ascii = 'a'.charCodeAt(0); // 97
let char = String.fromCharCode(ascii); // 'a'
Mattalui