2014-09-07

javascript:数値と文字列の変換


文字列→数値

parseFloat(str);


文字列→整数

parseInt(str);


数値→文字列

String(n);


数値→整数

Math.floor(n);