数値型を文字列型に変換する(空の文字列と連結)
説明
数値型を文字列型に変換するには空の文字列と連結します。
サンプルプログラム
var a = 123;
a = ""+a;
document.write(typeof(a));
サンプルを
実行
[
戻る
]