📜  js 运算符 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:24.204000             🧑  作者: Mango

代码示例2
/* 
JavaScript includes operators as in other languages. An operator performs
some operation on single or multiple operands (data value) and produces a
result. For example 1 + 2, where + sign is an operator and 1 is left operand
and 2 is right operand. + operator adds two numeric values and produces a
result which is 3 in this case.
*/