Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 10 of 1,623 for host:developer.mozilla.org (0.03 sec)

  1. Private elements - JavaScript | MDN

    Private elements are counterparts of the regular class elements which are public, including class fields, class methods, etc. Private elements get created by using a hash # prefix and cannot be legally referenced outside of the class. The privacy encapsulation of these class elements is enforced by JavaScript itself. The only way to access a private element is via dot notation, and you can only do so within the class that defines the private element.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Private_elements
    Registered: Mon Jan 05 01:02:27 UTC 2026
    - Last Modified: Sun Jan 04 01:10:02 UTC 2026
    - 201.6K bytes
    - Viewed (0)
  2. 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: Mon Jan 05 01:02:55 UTC 2026
    - Last Modified: Sun Jan 04 01:10:03 UTC 2026
    - 179.7K bytes
    - Viewed (0)
  3. fill - SVG | MDN

    The fill attribute has two different meanings. For shapes and text it's a presentation attribute that defines the color (or any SVG paint servers like gradients or patterns) used to paint the element; for animation it defines the final state of the animation.
    developer.mozilla.org/en-US/docs/Web/SVG/Reference/Attribute/fill
    Registered: Mon Jan 05 01:01:49 UTC 2026
    - Last Modified: Sun Jan 04 01:10:14 UTC 2026
    - 193.5K bytes
    - Viewed (0)
  4. get - JavaScript | MDN

    The get syntax binds an object property to a function that will be called when that property is looked up. It can also be used in classes.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/get
    Registered: Mon Jan 05 01:02:40 UTC 2026
    - Last Modified: Sun Jan 04 01:10:03 UTC 2026
    - 196.6K bytes
    - Viewed (0)
  5. do...while - JavaScript | MDN

    The do...while statement creates a loop that executes a specified statement as long as the test condition evaluates to true. The condition is evaluated after executing the statement, resulting in the specified statement executing at least once.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/do...while
    Registered: Mon Jan 05 01:00:50 UTC 2026
    - Last Modified: Sun Jan 04 01:10:11 UTC 2026
    - 189.3K bytes
    - Viewed (0)
  6. Uint8Array - JavaScript | MDN

    The Uint8Array typed array represents an array of 8-bit unsigned integers. The contents are initialized to 0 unless initialization data is explicitly provided. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
    Registered: Mon Jan 05 01:01:45 UTC 2026
    - Last Modified: Sun Jan 04 01:10:10 UTC 2026
    - 157.4K bytes
    - Viewed (0)
  7. Number.prototype.toPrecision() - JavaScript | MDN

    The toPrecision() method of Number values returns a string representing this number to the specified number of significant digits.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toPrecision
    Registered: Mon Jan 05 02:06:46 UTC 2026
    - Last Modified: Mon Jan 05 01:11:19 UTC 2026
    - 149.5K bytes
    - Viewed (0)
  8. WeakSet.prototype.delete() - JavaScript | MDN

    The delete() method of WeakSet instances removes the specified value from this set, if it is in the set.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet/delete
    Registered: Mon Jan 05 02:08:54 UTC 2026
    - Last Modified: Mon Jan 05 01:11:24 UTC 2026
    - 144.6K bytes
    - Viewed (0)
  9. WeakSet.prototype.has() - JavaScript | MDN

    The has() method of WeakSet instances returns a boolean indicating whether the specified value exists in this WeakSet or not.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet/has
    Registered: Mon Jan 05 02:09:31 UTC 2026
    - Last Modified: Mon Jan 05 01:11:24 UTC 2026
    - 144.5K bytes
    - Viewed (0)
  10. Number.prototype.toLocaleString() - JavaScript ...

    The toLocaleString() method of Number values returns a string with a language-sensitive representation of this number. In implementations with Intl.NumberFormat API support, this method delegates to Intl.NumberFormat.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString
    Registered: Mon Jan 05 02:07:55 UTC 2026
    - Last Modified: Mon Jan 05 01:11:19 UTC 2026
    - 156.2K bytes
    - Viewed (0)
Back to top