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 1 year has passed since last update.

「JavaScript完全に理解した」とか言うんなら、これぐらい知ってるよな?(||, &&演算子)

Posted at

問題

以下コードを実行すると、コンソールには何が出力されるでしょうか?

JavaScript
const bool1 = false;
const name = bool1 || "Hello World";
console.log(name);

答え

Hello World

解説

||演算子は、
左側がfalseなら、右側の値を返す。
左側がtrue判定なら、右側の値を返す。
という特性があります。

先程の問題だと、
左側の値である変数bool1falseなので、
右側の値Hello Worldが変数nameに代入されているのです。
const name = bool1 || "Hello World";

テスト

変数outputには何が代入されるでしょうか?

const output = "val2" || "こんにちは";

答え

val2が代入される。
(文字列"val2"はtrue判定だから。)

おまけ

&&演算子は、
左側がtrueなら、右側の値を返す。
左側がfalseなら、左側の値を返す。
という特性があります。

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?