JavaScript 알파벳 배열 만들기

김예진·2021년 2월 14일
1

JavaScript 알고리즘

목록 보기
6/6
post-thumbnail
const arr = Array.from({ length: 26 }, (v, i) => String.fromCharCode(i + 65));
console.log(arr)
/*
[
  'A', 'B', 'C', 'D', 'E', 'F',
  'G', 'H', 'I', 'J', 'K', 'L',
  'M', 'N', 'O', 'P', 'Q', 'R',
  'S', 'T', 'U', 'V', 'W', 'X',
  'Y', 'Z'
]
*/

0개의 댓글