Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 10 of 227 for test (0.05 sec)

  1. RegExp.prototype.test() - JavaScript | MDN

    test(str)); // Expected output: false Syntax js test(str)...match. Examples Using test() This example tests if "hello" is contained...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test
    Registered: Wed Feb 04 03:18:26 UTC 2026
    - Last Modified: Wed Feb 04 01:06:45 UTC 2026
    - 154.1K bytes
    - Viewed (0)
  2. Function.prototype.toString() - JavaScript | MDN

    function* g() {} test(f); // "function f() {}" test(A); // "class...{ a() {} }" test(g); // "function* g() {}" test((a) => a); //...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/toString
    Registered: Wed Feb 04 01:31:24 UTC 2026
    - Last Modified: Wed Feb 04 01:06:42 UTC 2026
    - 152.7K bytes
    - Viewed (0)
  3. RegExp.prototype.sticky - JavaScript | MDN

    Because test() is a simple wrapper around exec() , test() would...regex.test(str); // true regex.lastIndex = 5; regex.test(str);...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/sticky
    Registered: Wed Feb 04 02:41:21 UTC 2026
    - Last Modified: Wed Feb 04 01:06:45 UTC 2026
    - 155.9K bytes
    - Viewed (0)
  4. Labeled statement - JavaScript | MDN

    items) { for (const test of tests) { if (!test.pass(item)) { continue...true; for (const test of tests) { if (!test.pass(item)) { passed...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/label
    Registered: Wed Feb 04 01:35:56 UTC 2026
    - Last Modified: Wed Feb 04 01:06:50 UTC 2026
    - 194.3K bytes
    - Viewed (0)
  5. Character escape: \n, \u{...} - JavaScript | MDN

    test("\x10"); // true /[\c_]/.test("\x1f"); // true...true /[\c*]/.test("\\"); // true /\c/.test("\\c"); // true /\c0/.test("\\c0");...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Character_escape
    Registered: Wed Feb 04 01:40:55 UTC 2026
    - Last Modified: Wed Feb 04 01:06:49 UTC 2026
    - 188.1K bytes
    - Viewed (0)
  6. void operator - JavaScript | MDN

    executed" void function test() { console.log("test function executed");...executed"); }; try { test(); } catch (e) { console.log("test function is...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/void
    Registered: Wed Feb 04 01:56:56 UTC 2026
    - Last Modified: Wed Feb 04 01:06:49 UTC 2026
    - 190.1K bytes
    - Viewed (0)
  7. Assertions - JavaScript | MDN

    by the word "test", but we do not include "test" in the match...regex = /First(?= test)/g; console.log("First test".match(regex));...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Assertions
    Registered: Wed Feb 04 02:31:26 UTC 2026
    - Last Modified: Wed Feb 04 01:06:39 UTC 2026
    - 193.9K bytes
    - Viewed (0)
  8. isNaN() - JavaScript | MDN

    5em;-webkit-text-decoration:none;text-decoration:none;v...ing:.5em;-webkit-text-decoration:none;text-decoration:none;v...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isNaN
    Registered: Wed Feb 04 01:55:50 UTC 2026
    - Last Modified: Wed Feb 04 01:06:43 UTC 2026
    - 189.2K bytes
    - Viewed (0)
  9. contributors.txt

    rence/global_objects/regexp/test/index.md # Original Wiki contributors...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test/contributors...
    Registered: Wed Feb 04 05:05:39 UTC 2026
    - Last Modified: Tue Aug 19 16:04:30 UTC 2025
    - 478 bytes
    - Viewed (0)
  10. instanceof - JavaScript | MDN

    The object to test. constructor Constructor to test against. Exceptions...ing:.5em;-webkit-text-decoration:none;text-decoration:none;v...
    developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/instanceof
    Registered: Wed Feb 04 01:48:31 UTC 2026
    - Last Modified: Tue Feb 03 01:09:57 UTC 2026
    - 198.5K bytes
    - Viewed (0)
Back to top