0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Safariでの2進数表記

Last updated at Posted at 2015-09-28

Safari 8.0の場合、
var bin = 0b1000;
と書いても動いてくれないようです。
2進数表記をコード中に残しておきたかったので
var bin = parseInt("1000",2);
としました。びっくりしたなぁ・・・。

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?