Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1321 - 1330 of 2,702 for host:developer.mozilla.org (0.07 sec)

  1. Unary plus (+) - JavaScript | MDN

    The unary plus (+) operator precedes its operand and evaluates to its operand but attempts to convert it into a number, if it isn't already.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unary_plus
    Registered: Mon Nov 25 04:23:46 UTC 2024
    - Last Modified: Sat Nov 23 16:10:25 UTC 2024
    - 145K bytes
    - Viewed (0)
  2. static - JavaScript | MDN

    The static keyword defines a static method or field for a class, or a static initialization block (see the link for more information about this usage). Static properties cannot be directly accessed on instances of the class. Instead, they're accessed on the class itself.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/static
    Registered: Mon Nov 25 04:23:18 UTC 2024
    - Last Modified: Sat Nov 23 16:10:11 UTC 2024
    - 161.5K bytes
    - Viewed (0)
  3. encodeURI() - JavaScript | MDN

    The encodeURI() function encodes a URI by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character (will only be four escape sequences for characters composed of two surrogate characters). Compared to encodeURIComponent(), this function encodes fewer characters, preserving those that are part of the URI syntax.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI
    Registered: Mon Nov 25 04:26:52 UTC 2024
    - Last Modified: Sat Nov 23 16:10:15 UTC 2024
    - 155.3K bytes
    - Viewed (0)
  4. Exponentiation (**) - JavaScript | MDN

    The exponentiation (**) operator returns the result of raising the first operand to the power of the second operand. It is equivalent to Math.pow(), except it also accepts BigInts as operands.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation
    Registered: Mon Nov 25 04:24:52 UTC 2024
    - Last Modified: Sat Nov 23 16:10:24 UTC 2024
    - 153.1K bytes
    - Viewed (0)
  5. font-weight - SVG: Scalable Vector Graphics | MDN

    The font-weight attribute refers to the boldness or lightness of the glyphs used to render the text, relative to other fonts in the same font family.
    developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-weight
    Registered: Mon Nov 25 04:32:16 UTC 2024
    - Last Modified: Sat Nov 23 16:10:30 UTC 2024
    - 126.2K bytes
    - Viewed (0)
  6. Logical AND (&&) - JavaScript | MDN

    The logical AND (&&) (logical conjunction) operator for a set of boolean operands will be true if and only if all the operands are true. Otherwise it will be false.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_AND
    Registered: Mon Nov 25 04:31:51 UTC 2024
    - Last Modified: Sat Nov 23 16:10:25 UTC 2024
    - 154.6K bytes
    - Viewed (0)
  7. undefined - JavaScript | MDN

    The undefined global property represents the primitive value undefined. It is one of JavaScript's primitive types.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined
    Registered: Mon Nov 25 04:28:44 UTC 2024
    - Last Modified: Sat Nov 23 16:10:24 UTC 2024
    - 150.8K bytes
    - Viewed (0)
  8. Bitwise XOR (^) - JavaScript | MDN

    The bitwise XOR (^) operator returns a number or BigInt whose binary representation has a 1 in each bit position for which the corresponding bits of either but not both operands are 1.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_XOR
    Registered: Mon Nov 25 04:29:20 UTC 2024
    - Last Modified: Sat Nov 23 16:10:24 UTC 2024
    - 145.7K bytes
    - Viewed (0)
  9. GeneratorFunction - JavaScript | MDN

    The GeneratorFunction object provides methods for generator functions. In JavaScript, every generator function is actually a GeneratorFunction object.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction
    Registered: Mon Nov 25 04:28:29 UTC 2024
    - Last Modified: Sat Nov 23 16:10:16 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  10. Left shift assignment (<<=) - JavaScript | MDN

    The left shift assignment (<<=) operator performs left shift on the two operands and assigns the result to the left operand.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Left_shift_assignment
    Registered: Mon Nov 25 04:30:57 UTC 2024
    - Last Modified: Sat Nov 23 16:10:25 UTC 2024
    - 140.5K bytes
    - Viewed (0)
Back to top