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.

๐Ÿ”ฐ่ถ…ๅˆๅฟƒ่€…ใฎใ“ใฎๅ…ˆใฎ่ถ…ๅˆๅฟƒ่€…ใฎ็š†ๆง˜ใซๅ‘ใ‘ใฆ#3

Last updated at Posted at 2022-11-11

๏ผŠ่ซ–็†ๆผ”็ฎ—
็œŸ็†ๅ€คใซๅฏพใ™ใ‚‹ๆผ”็ฎ—ใงBoolๅž‹ใซใฏๅฆๅฎšใ€่ซ–็†็ฉใ€่ซ–็†ๅ’Œใฎ๏ผ“ใคใŒใ‚ใ‚Šใพใ™ใ€‚

๏ผŠๅฆๅฎš
็œŸ็†ๅ€คใฎ็œŸๅฝใ‚’้€†ใซใ™ใ‚‹ๆผ”็ฎ—ใงใ™ใ€‚
๏ผใ‚’ไฝฟ็”จใ—ใพใ™ใ€‚
let a = true
็ตๆžœtrue
let b = !a
็ตๆžœfalse

๏ผŠ่ซ–็†็ฉ
ไธŽใˆใ‚‰ใ‚ŒใŸ่ค‡ๆ•ฐใฎ็œŸ็†ๅ€คใŒใ„ใšใ‚Œใ‚‚็œŸใงใ‚ใ‚Œใฐใ€็œŸใจใชใ‚Šใพใ™ใ€‚
๏ผ†๏ผ†ใ‚’ไฝฟ็”จใ—ใพใ™ใ€‚
let a = false && false
็ตๆžœfalse
let b = false && true
็ตๆžœfalse
let c = true && false
็ตๆžœfalse
let d = true && true
็ตๆžœtrue

๏ผŠ่ซ–็†ๅ’Œ
ไธŽใˆใ‚‰ใ‚ŒใŸ่ค‡ๆ•ฐใฎ็œŸ็†ๅ€คใฎๅฐ‘ใชใใจใ‚‚ใฉใ‚Œใ‹๏ผ‘ใคใŒ็œŸใ‚ใ‚Œใฐใ€็œŸใจใชใ‚Šใพใ™ใ€‚
||ใ‚’ไฝฟ็”จใ—ใพใ™
let a = false || false
็ตๆžœfalse
let b = false || true
็ตๆžœtrue
let c = true || false
็ตๆžœtrue
let d = true || true
็ตๆžœtrue

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?