2012年10月15日 星期一

js convert int to ascii character

[string to int ]
String.charCodeAt() can convert string characters to ASCII numbers. 
For example:
"ABC".charCodeAt(0) // returns 65

[int to string]
String.fromCharCode(10)

沒有留言: