toString()

10진수 -> 2진수

let num10 = 10;
num10.toSting(); // "10"

숫자를 문자로 바꿔준다.

let num10 = 10;
num2 = num10.toString(2); // 2진수로 바꿈
console.log(num2); // "1010"


10진수 -> 16진수

let num255 = 255;
num255.toString(16);
num16 = num255.toString(16); // 16진수
console.log(num16); // ff

댓글남기기