- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 41 - 50 of 3,176 for host:developer.mozilla.org (0.03 sec)
-
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/toReversedRegistered: Fri Dec 26 01:26:13 UTC 2025 - Last Modified: Fri Dec 26 01:05:21 UTC 2025 - 149.6K bytes - Viewed (0) -
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_overviewRegistered: Fri Dec 26 00:42:52 UTC 2025 - Last Modified: Thu Dec 25 01:06:45 UTC 2025 - 199.4K bytes - Viewed (0) -
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_classesRegistered: Fri Dec 26 00:42:55 UTC 2025 - Last Modified: Thu Dec 25 01:06:35 UTC 2025 - 219.1K bytes - Viewed (0) -
<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/lineRegistered: Fri Dec 26 00:42:56 UTC 2025 - Last Modified: Thu Dec 25 01:06:50 UTC 2025 - 170.9K bytes - Viewed (0) -
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/encodeURIComponentRegistered: Fri Dec 26 00:42:59 UTC 2025 - Last Modified: Thu Dec 25 01:06:38 UTC 2025 - 192.1K bytes - Viewed (0) -
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/constRegistered: Fri Dec 26 00:42:26 UTC 2025 - Last Modified: Thu Dec 25 01:06:46 UTC 2025 - 192.6K bytes - Viewed (0) -
<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/scriptRegistered: Fri Dec 26 00:42:41 UTC 2025 - Last Modified: Thu Dec 25 01:06:50 UTC 2025 - 170.8K bytes - Viewed (0) -
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_managementRegistered: Fri Dec 26 00:42:42 UTC 2025 - Last Modified: Thu Dec 25 01:06:35 UTC 2025 - 200.9K bytes - Viewed (0) -
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/instanceofRegistered: Fri Dec 26 00:43:11 UTC 2025 - Last Modified: Thu Dec 25 01:06:45 UTC 2025 - 198.6K bytes - Viewed (0) -
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/switchRegistered: Fri Dec 26 00:43:15 UTC 2025 - Last Modified: Thu Dec 25 01:06:46 UTC 2025 - 198.5K bytes - Viewed (0)