84
78

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.

JavaScriptの真偽判定まとめ。

Posted at

ifを使う時に空文字列とか空オブジェクトってどう判定されるのかいつも忘れてしまうのでまとめてみます。
下記の関数を使ってチェックしてみました。

  check = function(obj) {
    if (obj) {
      return 'true';
    } else {
      return 'false';
    }
  };
console.log(check(null)); //false

String

check('') // false
check('0') // true

空文字列はfalse
何か入っていればtrue

Number

check(1) // true
check(0) // false
check(-1) // true

0はfalse、それ以外はtrue

Array

check([]) // true
check([].length) // false

空のArrayでもtrueが返る。
空か否か判定する時はlengthを使う。

Object

check({name:false}) // true
check({}) // true
check(Object.keys({})) // true
check(Object.keys({}).length) // false

空のobjectでもtrueが返る。
空か否か判定する時はObject.keys(obj).lengthとする。

84
78
1

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
84
78

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?