Javascript toStringを使って10進数をn進数に変換する

環境
Google Chrome 111.0.5563.147
Windows 10 Home 64bit

構文
数値.toString(n);
toString関数を使って、10進数をn進数に変換します。

使用例

let n = 8;

// 2進数
console.log(n.toString(2)); 

// 4進数
console.log(n.toString(4)); 

// 8進数
console.log(n.toString(8)); 

// 16進数
console.log(n.toString(16));

実行結果
> “1000"
> “20"
> “10"
> “8"

JavaScript

Posted by arkgame