Share via


Operators (JScript) 

JScript includes a number of operators that fall into the arithmetic, logical, bitwise, assignment, and miscellaneous categories. The following sections link to information that explains how to use the operators.

In This Section

  • Comparison Operators
    An assortment of operators (==, >, >=, ===, !=, <, <=, !==) that return a Boolean value indicating the result of a comparison
  • delete Operator
    Deletes a property from an object, or removes an element from an array.
  • in Operator
    Tests for the existence of a property in an object.
  • instanceof Operator
    Returns a Boolean value that indicates whether or not an object is an instance of a particular class.
  • typeof Operator
    Returns a string that identifies the data type of an expression.
  • JScript Reference
    Lists elements that comprise JScript Language Reference and links to topics that explain the details behind the proper use of language elements.
  • JScript Operators
    Provides a conceptual overview of operators used in JScript and links to topics that explain the proper syntax for each operator and the significance of operator precedence.
  • Operator Precedence
    Provides a list containing information about the execution precedence of JScript operators.
  • Operator Summary
    Lists JScript operators and links to topics that explain their proper use.