3
1

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 3 years have passed since last update.

JavaScriptの配列のキーにマイナス値を使ってハマった話

Last updated at Posted at 2020-03-08

#JavaScriptの配列にマイナス値をキーに使ってハマった話

lengthでキーの数を拾ってループさせているつもりなのに、
何か挙動がおかしくて、検証してみました。
マイナス値のキー値を使うと、lengthでキーの数は拾えないことがわかりました。
#サンプルコード

a=[];    

a[1]="one"; 
alert("1:"+a);
// 1:,one  
alert("length:"+a.length);
// lenght:2
a[-1]="minus one"
alert("-1:"+a[-1]);
// -1:minus one

alert("a:"+a);
//a:,one   キー「-1」が表示されない!
alert("length:"+a.length);
//length:2 キー「-1」がlengthでカウントていない!

alert("keys:"+Object.keys(a));
// keys:1,-1 キーとしては存在

#まとめ
そもそも要素数とキーの数は一致しないこともわかりました。

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?