Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test

Results 21 - 30 of 118 for test (0.14 sec)

  1. Named backreference: \k<name> - JavaScript | MDN

    test("k"); // true Examples Pairing...capturing group and matches the same text as that group. For unnamed capturing...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Named_backreference
    Registered: Fri Nov 01 00:55:52 UTC 2024
    - Last Modified: Tue Oct 29 00:53:40 UTC 2024
    - 143K bytes
    - Viewed (0)
  2. Backreference: \1, \2 - JavaScript | MDN

    test("ac"); // true /\1(a)/.test("a"); // true...match text with different casing from the original text. js /(b)\1/i.test("bB");...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Backreference
    Registered: Fri Nov 01 00:52:25 UTC 2024
    - Last Modified: Wed Oct 30 00:59:59 UTC 2024
    - 147.5K bytes
    - Viewed (0)
  3. Regular expressions - JavaScript | MDN

    or simply test if the string conforms to that...Assertions are constructs that test whether the string meets a certain...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions
    Registered: Fri Nov 01 00:59:44 UTC 2024
    - Last Modified: Wed Oct 30 00:59:59 UTC 2024
    - 178.1K bytes
    - Viewed (0)
  4. let - JavaScript | MDN

    the line shown: js function test() { var foo = 33; if (foo) {...+ 55; // ReferenceError } } test(); The if block is evaluated...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let
    Registered: Mon Oct 28 01:10:44 UTC 2024
    - Last Modified: Sat Oct 26 00:52:41 UTC 2024
    - 173.2K bytes
    - Viewed (0)
  5. JavaScript technologies overview - JavaScript |...

    repo ECMAScript conformance test suite repo TC39 meeting notes...shell allows you to quickly test snippets of JavaScript code...
    developer.mozilla.org/en-US/docs/Web/JavaScript/JavaScript_technologies_overview
    Registered: Mon Oct 28 01:30:07 UTC 2024
    - Last Modified: Sat Oct 26 00:52:23 UTC 2024
    - 177.8K bytes
    - Viewed (0)
  6. Functions - JavaScript | MDN

    a test is performed to determine if...something else } Note that in the if test, a reference to noFunc is used...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions
    Registered: Fri Nov 01 00:54:14 UTC 2024
    - Last Modified: Wed Oct 30 00:59:36 UTC 2024
    - 188.5K bytes
    - Viewed (0)
  7. in - JavaScript | MDN

    To test if a certain value exists in...Description The in operator tests if a string or symbol property...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/in
    Registered: Fri Nov 01 00:41:15 UTC 2024
    - Last Modified: Tue Oct 29 00:53:38 UTC 2024
    - 165.1K bytes
    - Viewed (0)
  8. data-* - SVG: Scalable Vector Graphics | MDN

    provides the attribute data-test-value via SVGElement.dataset.testValue...
    developer.mozilla.org/en-US/docs/Web/SVG/Attribute/data-*
    Registered: Fri Nov 01 00:53:00 UTC 2024
    - Last Modified: Wed Oct 30 01:00:10 UTC 2024
    - 122.3K bytes
    - Viewed (0)
  9. String.prototype.replace() - JavaScript | MDN

    const test = /(-?\d+(?:\.\d*)?)F\b/g; return s.replace(test, convert);..."-17.77777777777778C" . The regular expression test checks for any number that ends...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace
    Registered: Mon Oct 28 02:05:50 UTC 2024
    - Last Modified: Sat Oct 26 00:52:36 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  10. Statements and declarations - JavaScript | MDN

    specified statement until the test condition evaluates to false....specified statement as long as the test condition evaluates to true....
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements
    Registered: Fri Nov 01 00:44:58 UTC 2024
    - Last Modified: Wed Oct 30 01:00:00 UTC 2024
    - 162K bytes
    - Viewed (0)
Back to top