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. TypedArray.prototype.toReversed() - JavaScript ...

    The toReversed() method of TypedArray instances is the copying counterpart of the reverse() method. It returns a new typed array with the elements in reversed order. This method has the same algorithm as Array.prototype.toReversed().
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/toReversed
    Registered: Fri Dec 26 01:26:13 UTC 2025
    - Last Modified: Fri Dec 26 01:05:21 UTC 2025
    - 149.6K bytes
    - Viewed (0)
  2. JavaScript technologies overview - JavaScript |...

    Whereas HTML defines a webpage's structure and content and CSS sets the formatting and appearance, JavaScript adds interactivity to a webpage and creates rich web applications.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/JavaScript_technologies_overview
    Registered: Fri Dec 26 00:42:52 UTC 2025
    - Last Modified: Thu Dec 25 01:06:45 UTC 2025
    - 199.4K bytes
    - Viewed (0)
  3. Using classes - JavaScript | MDN

    JavaScript is a prototype-based language โ€” an object's behaviors are specified by its own properties and its prototype's properties. However, with the addition of classes, the creation of hierarchies of objects and the inheritance of properties and their values are much more in line with other object-oriented languages such as Java. In this section, we will demonstrate how objects can be created from classes.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_classes
    Registered: Fri Dec 26 00:42:55 UTC 2025
    - Last Modified: Thu Dec 25 01:06:35 UTC 2025
    - 219.1K bytes
    - Viewed (0)
  4. <line> - SVG | MDN

    The <line> SVG element is an SVG basic shape used to create a line connecting two points.
    developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/line
    Registered: Fri Dec 26 00:42:56 UTC 2025
    - Last Modified: Thu Dec 25 01:06:50 UTC 2025
    - 170.9K bytes
    - Viewed (0)
  5. encodeURIComponent() - JavaScript | MDN

    The encodeURIComponent() 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 encodeURI(), this function encodes more characters, including those that are part of the URI syntax.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent
    Registered: Fri Dec 26 00:42:59 UTC 2025
    - Last Modified: Thu Dec 25 01:06:38 UTC 2025
    - 192.1K bytes
    - Viewed (0)
  6. 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: Fri Dec 26 00:42:26 UTC 2025
    - Last Modified: Thu Dec 25 01:06:46 UTC 2025
    - 192.6K bytes
    - Viewed (0)
  7. <script> - SVG | MDN

    The <script> SVG element allows to add scripts to an SVG document.
    developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/script
    Registered: Fri Dec 26 00:42:41 UTC 2025
    - Last Modified: Thu Dec 25 01:06:50 UTC 2025
    - 170.8K bytes
    - Viewed (0)
  8. 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: Fri Dec 26 00:42:42 UTC 2025
    - Last Modified: Thu Dec 25 01:06:35 UTC 2025
    - 200.9K bytes
    - Viewed (0)
  9. instanceof - JavaScript | MDN

    The instanceof operator tests to see if the prototype property of a constructor appears anywhere in the prototype chain of an object. The return value is a boolean value. Its behavior can be customized with Symbol.hasInstance.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/instanceof
    Registered: Fri Dec 26 00:43:11 UTC 2025
    - Last Modified: Thu Dec 25 01:06:45 UTC 2025
    - 198.6K bytes
    - Viewed (0)
  10. switch - JavaScript | MDN

    The switch statement evaluates an expression, matching the expression's value against a series of case clauses, and executes statements after the first case clause with a matching value, until a break statement is encountered. The default clause of a switch statement will be jumped to if no case matches the expression's value.
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/switch
    Registered: Fri Dec 26 00:43:15 UTC 2025
    - Last Modified: Thu Dec 25 01:06:46 UTC 2025
    - 198.5K bytes
    - Viewed (0)
Back to top