コンテンツにスキップ

js num-string変換#

num to string#

const num = 123;
String(num); // "123"

const flo = 123.45678;
String(flo); // "123.45678"

string to num#

var str = '123';
Number(str); // 123.45678

var str = '123.45678';
Number(str); // 123.45678

References#

https://www.softel.co.jp/blogs/tech/archives/5524


References#

Tags#

  • #js