How to turn each character of a string into its ASCII character code in JavaScript

1 Answer

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

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

 



answered Apr 3, 2021 by avibootz
...