Sort Score
Result 10 results
Languages All
Labels All
Results 631 - 640 of 23,249 for

js

(0.07 sec)
  1. HTMLIFrameElement: contentWindow property - Web...

    Learn about the HTMLIFrameElement.contentWindow property, including its type, code examples, specifications, and browser compatibility.... js const iframe = document.querySelector("iframe")...iframe's contentWindow property. js const expectedOrigin = "https://example...

    developer.mozilla.org/en-US/docs/Web/API/HTMLIF...
  2. AsyncIterator - JavaScript | MDN

    An AsyncIterator object is an object that conforms to the async iterator protocol by providing a next() method that returns a promise fulfilling to an iterator result object. The AsyncIterator.prototype object is a hidden global object that all built-in async iterators inherit from. It provides an [Symbol.asyncIterator]() method that returns the async iterator object itself, making the async iterator also async iterable....obtained with the following code: js const AsyncIteratorPrototy =...them in a for await...of loop: js const asyncIterator = (async...

    developer.mozilla.org/en-US/docs/Web/JavaScript...
  3. Navigator: languages property - Web APIs | MDN

    Learn about the Navigator.languages property, including its type, code examples, specifications, and browser compatibility....languages js navigator.language; // "en-US"...locale supported by Intl is used: js const date = new Date("2012-05-24");...

    developer.mozilla.org/en-US/docs/Web/API/Naviga...
  4. VisibilityStateEntry - Web APIs | MDN

    Learn about the VisibilityStateEntry interface, including its properties and methods, code examples, specifications, and browser compatibility....performance entries to the console: js function getVisibilityStateEn()...before the first contentful paint: js function wasHiddenBeforeFirst()...

    developer.mozilla.org/en-US/docs/Web/API/Visibi...
  5. EyeDropper - Web APIs | MDN

    Learn about the EyeDropper interface, including its constructor and methods, code examples, specifications, and browser compatibility....id="result"></span> JavaScript js document.getElementById("start-button")...id="result"></span> JavaScript js document.getElementById("start-button")...

    developer.mozilla.org/en-US/docs/Web/API/EyeDro...
  6. OrientationSensor - Web APIs | MDN

    Learn about the OrientationSensor interface, including its properties and methods, code examples, specifications, and browser compatibility.... js const options = { frequency:... () => { // model is a Three.js object instantiated elsewhere...

    developer.mozilla.org/en-US/docs/Web/API/Orient...
  7. CookieStoreManager - Web APIs | MDN

    Learn about the CookieStoreManager interface, including its methods, code examples, specifications, and browser compatibility.... js const subscriptions = [{ name:...for the original subscription. js const subscriptions = await self...

    developer.mozilla.org/en-US/docs/Web/API/Cookie...
  8. XRTransientInputHitTestResult - Web APIs | MDN

    Learn about the XRTransientInputHitTestResult interface, including its properties and methods, code examples, specifications, and browser compatibility.... js // frame loop function onXRFrame(time...test results by input source. js // frame loop function onXRFrame(time...

    developer.mozilla.org/en-US/docs/Web/API/XRTran...
  9. InternalError - JavaScript | MDN

    The InternalError object indicates an error that occurred internally in the JavaScript engine.... js function loop(x) { // "x >= 10"...extremely high value, may not work: js function loop(x) { if (x >= 1000000000000)...

    developer.mozilla.org/en-US/docs/Web/JavaScript...
  10. Named backreference: \k<name> - JavaScript | MDN

    A named backreference refers to the submatch of a previous named capturing group and matches the same text as that group. For unnamed capturing groups, you need to use the normal backreference syntax.... js /\k/.test("k"); // true Examples...the matching quote characters: js function parseTitle(metastring)...

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