//글자 랜덤 생성: Math.random(), toString(), 36진법
const makeRandomLetter = () => {
return Math.random().toString(36).slice(2)
}
//색깔 랜덤 생성: Hex, Math.floor(), Math.random(), 16진법
const makeRandomColorCode = () => {
return `#${Math.floor(Math.random()*16777215).toString(16)}`+
}
toString()
에 숫자 인자를 넣으면, 해당 숫자 진법을 사용하는 문자열을 반환한다.