Operators Cheat Sheet/JavaScript


Definition:
“Operators are used to assign values, compare values, perform arithmetic operations and more. Operators allow programmers to create a single value from one or more values.”
バイナリ演算子:
Definition: Requires two operands, one before the operator and one after the operator.
Syntax: operand1 operator operand2
2 + 3; or x * z;
汎用オペレータ(単項演算子):
Definition: Requires a single operand, either before or after the operator.
Syntax: operator operand OR operand operator
y++ OR ++y
Arithmetic Operators : Multiplication, Division, Modulus, Addition and Subtraction
Definition:
Takes numerical values (either literals or variables) as their operands and returns a single numerical value.
Comparison Operators(比較演算子):
式の両側を比較し、比較が真であるかどうかに基づいて論理値を返します.被演算子は、数値値、文字列値、論理値、またはオブジェクト値であってもよい.
==:演算子を使用して、2つの異なるタイプの変数の値を比較します.
===:厳密な比較([value&データ型]->true).この演算子をできるだけ使用します.
5 == '5'; // true
5 === '5' // false
ふとうひかくえんざんし
!= : 等価演算子(==)の論理的逆の値.等しい演算子を使用して比較するときにtrueの場合、不等演算子は反対のfalseを返します.つまり、ピア演算子の反対の値です.
!== : 厳密な対等比較演算子(===)の論理は逆です.すなわち,返される値は,厳密に等しい演算子で比較した値とは逆である.
JavaScript Beginner Bootcamp(2021)