Sort Score
Result 10 results
Languages All
Labels All
Results 111 - 120 of 22,097 for

js

(0.07 sec)
  1. HTMLElement: accessKeyLabel property - Web APIs...

    Learn about the HTMLElement.accessKeyLabel property, including its syntax, specifications and browser compatibility.... Syntax js label = element.accessKeyLabel...accessKeyLabel Example JavaScript js const btn = document.getElementById("btn1");...

    developer.mozilla.org/en-US/docs/Web/API/HTMLEl...
  2. Inheritance and the prototype chain - JavaScrip...

    In programming, inheritance refers to passing down characteristics from a parent to a child so that a new piece of code can reuse and build upon the features of an existing one. JavaScript implements inheritance by using objects. Each object has an internal link to another object called its prototype. That prototype object has a prototype of its own, and so on until an object is reached with null as its prototype. By definition, null has no prototype and acts as the final link in this prototype chain. It is possible to mutate any member of the prototype chain or even swap out the prototype at runtime, so concepts like static dispatching do not exist in JavaScript....trying to access a property: js const o = { a: 1, b: 2, // __proto__...will be sought on all of them. js const o = { a: 1, b: 2, // __proto__...

    developer.mozilla.org/en-US/docs/Web/JavaScript...
  3. Capturing group: (...) - JavaScript | MDN

    A capturing group groups a subpattern, allowing you to apply a quantifier to the entire group or use disjunctions within it. It memorizes information about the subpattern match, so that you can refer back to it later with a backreference, or access the information through the match results.... js /(ab)|(cd)/.exec("cd"); // ['cd'...the last match of the group. js /([ab])+/.exec("abc"); // ['ab'...

    developer.mozilla.org/en-US/docs/Web/JavaScript...
  4. Share objects with page scripts - Mozilla | MDN

    As the content scripts guide notes, content scripts don't see changes made to the DOM by scripts loaded by web pages. This means that, for example, if a web page loads a library like jQuery, content scripts won't be able to use it, and have to load their own copy. Conversely, scripts loaded by web pages can't see changes made by content scripts....js"></script> </body> </html> The...to the global window : js // main.js let foo = "I'm defined in...

    developer.mozilla.org/en-US/docs/Mozilla/Add-on...
  5. JPX | GroupDocs.Viewer for .NET API Reference

    JPEG 2000 Image File .jpx...Viewer JPM JS English Русский 简体中文 Español...

    reference.groupdocs.com/viewer/net/groupdocs.vi...
  6. Bug FF css filter linear gradient - MDN - Mozil...

    https://mlich.zam.slu.cz/Js-matter/Js-bridge/bb-edit.htm #levels button {background: linear-gradient(0deg, transparent 0%, #8e8583 0%, #8e8583 31%, transparent 31%); border: 2px solid #333; padding: 0; margin: 0 3px 6p…...cz/js-matter/js-bridge/bb-edit.htm #levels...

    discourse.mozilla.org/t/bug-ff-css-filter-linea...
  7. 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 = "#ff0").... This throws: js const COLUMNS; // SyntaxError:...statement in which it's declared: js const COLUMNS = 80; const , let...

    developer.mozilla.org/en-US/docs/Web/JavaScript...
  8. SyntaxError: duplicate formal argument x - Java...

    The JavaScript exception "duplicate formal argument x" or "duplicate argument names not allowed in this context" occurs when a function creates two or more parameter bindings with the same name, and the function is not a non-strict function with only simple parameters.... Examples Invalid cases js "use strict"; function add(x...duplicate formal argument x } js function doSomething(name, {...

    developer.mozilla.org/en-US/docs/Web/JavaScript...
  9. XRLightProbe - Web APIs | MDN

    Learn about the XRLightProbe interface, including its properties and methods, code examples, specifications, and browser compatibility.... js const lightProbe = await xrSession...get a light probe for a pose. js const probePose = xrFrame.getPose(lightProbe...

    developer.mozilla.org/en-US/docs/Web/API/XRLigh...
  10. class expression - JavaScript | MDN

    The class keyword can be used to define a class inside an expression.... Try it Syntax js class { // class body } class...refer to using the variable Foo . js const Foo = class { constructor()...

    developer.mozilla.org/en-US/docs/Web/JavaScript...