728x90
✨ASCII Code를 string으로 반환해주는 helper method
💻Example Code
console.log( String.fromCharCode(97) );
console.log( String.fromCharCode(113) );
console.log( String.fromCharCode(65) );
😋 ASCII Code를 활용하는 문제를 풀 때 간혹 필요할 수 있다. ASCII Code를 string으로 바꿔준다.
백준 알파벳 찾기(Find alphabet) 알고리즘 문제를 풀 때 사용했다.
👉자세한 내용은 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode
'JavaScript > Built-in Method etc.' 카테고리의 다른 글
Array.prototype.pop() (0) | 2020.01.04 |
---|---|
Array.prototype.unshift() (0) | 2020.01.04 |
Array.prototype.indexOf() (0) | 2020.01.01 |
String.prototype.match() (0) | 2019.12.31 |
String.charCodeAt() (0) | 2019.12.31 |