2 lines
84 B
ActionScript
2 lines
84 B
ActionScript
trace(String.fromCharCode(97)); //prints 'a'
|
|
trace("a".charCodeAt(0));//prints '97'
|