Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 191 - 200 of 2,702 for host:developer.mozilla.org (0.03 sec)

  1. Unsigned right shift (>>>) - JavaScript | MDN

    The unsigned right shift (>>>) operator returns a number whose binary representation is the first operand shifted by the specified number of bits to the right. Excess bits shifted off to the right are discarded, and zero bits are shifted in from the left. This operation is also called "zero-filling right shift", because the sign bit becomes 0, so the resulting number is always positive. Unsigned right shift does not accept BigInt values.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unsigned_right_shift
    Registered: Fri Nov 15 00:55:53 UTC 2024
    - Last Modified: Tue Nov 12 01:28:26 UTC 2024
    - 150.2K bytes
    - Viewed (0)
  2. SyntaxError: illegal character - JavaScript | MDN

    The JavaScript exception "illegal character" occurs when the lexer reads a character that's not part of a string literal, and the character cannot constitute a valid token in the language.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Illegal_character
    Registered: Fri Nov 15 00:56:39 UTC 2024
    - Last Modified: Tue Nov 12 01:28:11 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. try...catch - JavaScript | MDN

    The try...catch statement is comprised of a try block and either a catch block, a finally block, or both. The code in the try block is executed first, and if it throws an exception, the code in the catch block will be executed. The code in the finally block will always be executed before control flow exits the entire construct.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch
    Registered: Fri Nov 15 00:56:42 UTC 2024
    - Last Modified: Tue Nov 12 01:28:26 UTC 2024
    - 169.9K bytes
    - Viewed (0)
  4. yield* - JavaScript | MDN

    The yield* operator is used to delegate to another iterable object, such as a Generator.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/yield*
    Registered: Fri Nov 15 00:56:03 UTC 2024
    - Last Modified: Tue Nov 12 01:28:26 UTC 2024
    - 158.9K bytes
    - Viewed (0)
  5. intercept - SVG: Scalable Vector Graphics | MDN

    The intercept attribute defines the intercept of the linear function of color component transfers when the type attribute is set to linear.
    developer.mozilla.org/en-US/docs/Web/SVG/Attribute/intercept
    Registered: Fri Nov 15 00:51:36 UTC 2024
    - Last Modified: Tue Nov 12 01:28:31 UTC 2024
    - 128.2K bytes
    - Viewed (0)
  6. fill-opacity - SVG: Scalable Vector Graphics | MDN

    The fill-opacity attribute is a presentation attribute defining the opacity of the paint server (color, gradient, pattern, etc.) applied to a shape.
    developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-opacity
    Registered: Fri Nov 15 00:51:40 UTC 2024
    - Last Modified: Tue Nov 12 01:28:31 UTC 2024
    - 129.4K bytes
    - Viewed (0)
  7. SyntaxError: "0"-prefixed octal literals are de...

    The JavaScript strict mode-only exception "0-prefixed octal literals are deprecated; use the "0o" prefix instead" occurs when deprecated octal literals (0 followed by digits) are used.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Deprecated_octal_literal
    Registered: Fri Nov 15 00:51:46 UTC 2024
    - Last Modified: Tue Nov 12 01:28:10 UTC 2024
    - 140.8K bytes
    - Viewed (0)
  8. image-rendering - SVG: Scalable Vector Graphics...

    The image-rendering attribute provides a hint to the browser about how to make speed vs. quality tradeoffs as it performs image processing.
    developer.mozilla.org/en-US/docs/Web/SVG/Attribute/image-rendering
    Registered: Fri Nov 15 00:52:31 UTC 2024
    - Last Modified: Tue Nov 12 01:28:31 UTC 2024
    - 125.1K bytes
    - Viewed (0)
  9. id - SVG: Scalable Vector Graphics | MDN

    The id attribute assigns a unique name to an element.
    developer.mozilla.org/en-US/docs/Web/SVG/Attribute/id
    Registered: Fri Nov 15 00:51:24 UTC 2024
    - Last Modified: Tue Nov 12 01:28:31 UTC 2024
    - 125.9K bytes
    - Viewed (0)
  10. gradientTransform - SVG: Scalable Vector Graphi...

    The gradientTransform attribute contains the definition of an optional additional transformation from the gradient coordinate system onto the target coordinate system (i.e., userSpaceOnUse or objectBoundingBox). This allows for things such as skewing the gradient. This additional transformation matrix is post-multiplied to (i.e., inserted to the right of) any previously defined transformations, including the implicit transformation necessary to convert from object bounding box units to user space.
    developer.mozilla.org/en-US/docs/Web/SVG/Attribute/gradientTransform
    Registered: Fri Nov 15 00:52:40 UTC 2024
    - Last Modified: Tue Nov 12 01:28:31 UTC 2024
    - 129.6K bytes
    - Viewed (0)
Back to top