memrootじしょ
英和翻訳
equality operator
Managers
tidbits
Imaginary unit
out of step
guide sign
attempt to secure
cancel a contract
night without sleep
Sandbox Game
equality operator
/ɪˈkwɒlɪti ˈɒpəreɪtər/
イクウォリティ オペレーター
1.
二つの値が等しいかどうかを比較する演算子。
プログラミングや数学において、二つの値が等しいかどうかを判定するために使用される特殊な記号または関数です。結果は通常、真(true)または偽(false)で返されます。
In
JavaScript,
the
double
equals
sign
`==`
is
used
as
an
equality
operator.
(JavaScriptでは、二重等号 `==` が等価演算子として使用されます。)
In JavaScript
JavaScriptというプログラミング言語の中で
the double equals sign `==`
二重等号の記号 `==`
is used
使用されます
as an equality operator
等価演算子として
Always
use
the
strict
equality
operator
`===`
to
avoid
type
coercion
issues.
(型の強制変換の問題を避けるため、常に厳密等価演算子 `===` を使用してください。)
Always use
常に使用してください
the strict equality operator `===`
厳密等価演算子である `===` を
to avoid
避けるために
type coercion issues
型の強制変換に関する問題
The
equality
operator
will
return
true
if
both
operands
have
the
same
value.
(両方のオペランドが同じ値を持つ場合、等価演算子はtrueを返します。)
The equality operator
その等価演算子は
will return true
trueを返します
if
もし〜ならば
both operands
両方のオペランドが
have the same value
同じ値を持つ
関連
comparison operator
relational operator
inequality operator
assignment operator
strict equality
logical operator