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?

if (!hoge)に使えるhogeはなに(JavaScript)

Last updated at Posted at 2024-09-18

気になったので調べてみた

こういうやつ

if (!hoge) {
.....
}

そのときのhogeは

  • false
  • null
  • undefined
  • 空文字(長さが0の文字列のこと)
  • NaN
  • 数字の0(-0や-0.0などもOK)
  • 0n
    のどれかになる

最後に

真偽値に変換したとき、falseになる値をfalsyな値という。
今回の値はfalsyな値にあたる。
※trueになる値はtruthyな値という。

0
0
2

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?