Equal | == |
Strict equal | === |
Not equal | != |
Strict not equal | !== |
Greater than | > |
Less than | < |
Greater than or equal | >= |
Less than or equal | <= |
Property access | . | appends an object, method, or property to another object |
Array index | [] | Access an element of an array |
Parentheses | () | Used with a function to contain parameters. Used in an expression to determine the order of operations. |
Comma | , | Used to separate parameters in a parameter list, |
Return Value | Data type of identifier |
---|---|
Number | Integers and floating point numbers |
String | Text strings |
Boolean | True or false |
Object | Objects, arrays, and null variables |
Function | Functions |
Undefined | Undefined variables |