How to turn each character of a string into its ASCII character code and join them together in JavaScript

1 Answer

0 votes
const s = "javascript programming";
let ascii = "";

for (let i = 0; i < s.length; i++) {
    let asciicode =  s.charCodeAt(i);
    console.log(asciicode);
    ascii += asciicode;
}

console.log(ascii);

  
    
    
/*
run:
    
106
97
118
97
115
99
114
105
112
116
32
112
114
111
103
114
97
109
109
105
110
103
"1069711897115991141051121163211211411110311497109109105110103"
    
*/

 



answered Apr 3, 2021 by avibootz
...