LoginSignup
2
2

More than 5 years have passed since last update.

JavaScript の数値変換あれこれ

Last updated at Posted at 2012-08-03
console
010 + 1
// => 9

"010" + 1
// => "0101"

eval(010) + 1
// => 9

eval("010") + 1
// => 9

Number(010) + 1
// => 9

Number("010") + 1
// => 11

parseInt(010) + 1
// => 9

parseInt("010") + 1
// => 11

parseInt(010, 10) + 1
// => 9

parseInt("010", 10) + 1
// => 11

ぐぬぬ。
実行環境はSafari6.0ですよ。

2
2
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2