Operators
Operators
JavaScript Operators
Assignment operators
Comparison operators
Arithmetic operators
Logical operators
String operators
Conditional (ternary) operator
Comma operator
Unary operators
Relational operators
Assignment operators
Not equal (!=) Returns true if the operands are not equal.
For example,
var x = [0,1,2,3,4,5,6,7,8,9]
var a = [x, x, x, x, x];
delete object.property;
typeof
The typeof operator is used in either of the following
ways:
typeof operand
typeof (operand)
propNameOrNumber in objectName
// without destructuring
var one = foo[0];
var two = foo[1];
var three = foo[2];
// with destructuring
var [one, two, three] = foo;