3 lines
105 B
JavaScript
3 lines
105 B
JavaScript
|
|
document.write('a'.charCodeAt(0)); // prints "97"
|
||
|
|
document.write(String.fromCharCode(97)); // prints "a"
|