Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 41 - 50 of 3,176 for host:developer.mozilla.org (0.03 sec)

  1. Memory management - JavaScript | MDN

    Low-level languages like C, have manual memory management primitives such as malloc() and free(). In contrast, JavaScript automatically allocates memory when objects are created and frees it when they are not used anymore (garbage collection). This automaticity is a potential source of confusion: it can give developers the false impression that they don't need to worry about memory management.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Memory_management
    Registered: Mon Jan 05 00:48:43 UTC 2026
    - Last Modified: Sun Jan 04 01:10:02 UTC 2026
    - 200.9K bytes
    - Viewed (0)
  2. Classes - JavaScript | MDN

    Classes are a template for creating objects. They encapsulate data with code to work on that data. Classes in JS are built on prototypes but also have some syntax and semantics that are unique to classes.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
    Registered: Mon Jan 05 00:50:55 UTC 2026
    - Last Modified: Sun Jan 04 01:10:02 UTC 2026
    - 200.2K bytes
    - Viewed (0)
  3. const - JavaScript | MDN

    The const declaration declares block-scoped local variables. The value of a constant can't be changed through reassignment using the assignment operator, but if a constant is an object, its properties can be added, updated, or removed.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const
    Registered: Mon Jan 05 00:48:58 UTC 2026
    - Last Modified: Sun Jan 04 01:10:11 UTC 2026
    - 192.6K bytes
    - Viewed (0)
  4. null - JavaScript | MDN

    The null keyword refers to the null primitive value, which represents the intentional absence of any object value.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/null
    Registered: Mon Jan 05 00:50:03 UTC 2026
    - Last Modified: Sun Jan 04 01:10:11 UTC 2026
    - 186K bytes
    - Viewed (0)
  5. <animate> - SVG | MDN

    The <animate> SVG element provides a way to animate an attribute of an element over time.
    developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/animate
    Registered: Mon Jan 05 00:48:57 UTC 2026
    - Last Modified: Sun Jan 04 01:10:15 UTC 2026
    - 169.8K bytes
    - Viewed (0)
  6. <ellipse> - SVG | MDN

    The <ellipse> SVG element is an SVG basic shape, used to create ellipses based on a center coordinate, and both their x and y radius.
    developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/ellipse
    Registered: Mon Jan 05 00:48:51 UTC 2026
    - Last Modified: Sun Jan 04 01:10:15 UTC 2026
    - 170.9K bytes
    - Viewed (0)
  7. href - SVG | MDN

    The href attribute defines a link to a resource as a reference URL. The exact meaning of that link depends on the context of each element using it.
    developer.mozilla.org/en-US/docs/Web/SVG/Reference/Attribute/href
    Registered: Mon Jan 05 01:06:32 UTC 2026
    - Last Modified: Sun Jan 04 01:10:14 UTC 2026
    - 195.1K bytes
    - Viewed (0)
  8. SyntaxError: missing = in const declaration - J...

    The JavaScript exception "missing = in const declaration" occurs when a const declaration was not given a value in the same statement (like const RED_FLAG;). You need to provide one (const RED_FLAG = true).
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Missing_initializer_in_const
    Registered: Mon Jan 05 01:05:32 UTC 2026
    - Last Modified: Sun Jan 04 01:10:03 UTC 2026
    - 179.6K bytes
    - Viewed (0)
  9. TypeError: "x" is not a constructor - JavaScrip...

    The JavaScript exception "is not a constructor" occurs when there was an attempt to use an object or a variable as a constructor, but that object or variable is not a constructor.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Not_a_constructor
    Registered: Mon Jan 05 01:05:35 UTC 2026
    - Last Modified: Sun Jan 04 01:10:03 UTC 2026
    - 181.6K bytes
    - Viewed (0)
  10. patternUnits - SVG | MDN

    The patternUnits attribute indicates which coordinate system to use for the geometry properties of the <pattern> element.
    developer.mozilla.org/en-US/docs/Web/SVG/Reference/Attribute/patternUnits
    Registered: Mon Jan 05 01:05:40 UTC 2026
    - Last Modified: Sun Jan 04 01:10:14 UTC 2026
    - 167.3K bytes
    - Viewed (0)
Back to top