jscript/operators
Материал из Справочник Web-языков.
| Главная | ::. | JScript | ::. | Список операторов JScript |
- Оператор (+=) - Adds the value of an expression to the value of a variable and assigns the result to the variable.
- Оператор (+) - Sums two numbers or concatenates two strings.
- Оператор (=) - Assigns a value to a variable.
- Оператор (&=) - Performs a bitwise AND on the value of a variable and the value of an expression and assigns the result to the variable.
- Оператор (&) - Performs a bitwise AND on two expressions.
- Оператор (<<) - Shifts the bits of an expression to the left.
- Оператор (~) - Performs a bitwise NOT (negation) on an expression.
- Оператор (|=) - Performs a bitwise OR on the value of a variable and the value of an expression and assigns the result to the variable.
- Оператор (|) - Performs a bitwise OR on two expressions.
- Оператор (>>) - Shifts the bits of an expression to the right, maintaining sign.
- Оператор (^=) - Performs a bitwise exclusive OR on a variable and an expression and assigns the result to the variable.
- Оператор (^) - Performs a bitwise exclusive OR on two expressions.
- Оператор (,) - Causes two expressions to be executed sequentially.
- Оператор Сравнения - Returns a Boolean value indicating the result of the comparison.
- Оператор Compound Assignment Operators - List of compound assignment operators.
- Оператор (?:) - Executes one of two expressions depending on a condition.
- Оператор (--) - Decrements a variable by one.
- Оператор delete - Deletes a property from an object, or removes an element from an array.
- Оператор (/=) - Divides the value of a variable by the value of an expression and assigns the result to the variable.
- Оператор (/) - Divides two numbers and returns a numeric result.
- Оператор in - Tests for the existence of a property in an object.
- Оператор (==) - Compares two expressions to determine if they are equal.
- Оператор (>) - Compares two expressions to determine if one is greater than the other.
- Оператор (>=) - Compares two expressions to determine if one is greater than or equal to the other.
- Оператор (===) - Compares two expressions to determine if they are equal in value and of the same data type.
- Оператор (++) - Increments a variable by one.
- Оператор (!=) - Compares two expressions to determine if they are unequal.
- Оператор instanceof - Returns a Boolean value that indicates whether or not an object is an instance of a particular class.
- Оператор (<<=) - Left shifts the value of a variable by the number of bits specified in the value of an expression and assigns the result to the variable.
- Оператор (<) - Compares two expressions to determine if one is less than the other.
- Оператор (<=) - Compares two expressions to determine if one is less than or equal to the other.
- Оператор (&&) - Performs a logical conjunction on two expressions.
- Оператор (!) - Performs logical negation on an expression.
- Оператор (||) - Performs a logical disjunction on two expressions.
- Оператор (%=) - Divides the value of a variable by the value of an expression, and assigns the remainder to the variable.
- Оператор (%) - Divides two numbers and returns the remainder.
- Оператор (*=) - Multiplies the value of a variable by the value of an expression and assigns the result to the variable.
- Оператор (*) - Multiplies two numbers.
- Оператор new - Creates a new object.
- Оператор (!==) - Compares two expressions to determine that they are not equal in value or of the same data type.
- Оператор (>>=) - Right shifts the value of a variable by the number of bits specified in the value of an expression, maintaining the sign, and assigns the result to the variable.
- Оператор (-=) - Subtracts the value of an expression from the value of a variable and assigns the result to the variable.
- Оператор (-) - Performs subtraction of two expressions.
- Оператор typeof - Returns a string that identifies the data type of an expression.
- Оператор (-) - Indicates the negative value of a numeric expression.
- Оператор (>>>=) - Right shifts the value of a variable by the number of bits specified in the value of an expression, without maintaining sign, and assigns the result to the variable.
- Оператор (>>>) - Performs an unsigned right shift of the bits in an expression.
- Оператор void - Prevents an expression from returning a value.
