- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 1 - 10 of 227 for test (0.06 sec)
-
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/testRegistered: Mon Jul 07 03:51:21 UTC 2025 - Last Modified: Thu Jul 03 09:38:20 UTC 2025 - 80.5K bytes - Viewed (0) -
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/stickyRegistered: Mon Jul 07 03:51:40 UTC 2025 - Last Modified: Thu Jul 03 09:38:20 UTC 2025 - 86.1K bytes - Viewed (0) -
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/voidRegistered: Mon Jul 07 01:30:36 UTC 2025 - Last Modified: Thu Jul 03 09:38:28 UTC 2025 - 155.1K bytes - Viewed (0) -
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_escapeRegistered: Mon Jul 07 01:45:38 UTC 2025 - Last Modified: Thu Jul 03 09:38:28 UTC 2025 - 153.6K bytes - Viewed (0) -
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/toStringRegistered: Mon Jul 07 01:50:48 UTC 2025 - Last Modified: Thu Jul 03 09:38:15 UTC 2025 - 77.8K bytes - Viewed (0) -
isNaN() - JavaScript | MDN
Parameters value The value to be tested. Return value true if the given...For number values, isNaN() tests if the number is the value NaN...developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isNaNRegistered: Mon Jul 07 01:22:17 UTC 2025 - Last Modified: Thu Jul 03 09:38:17 UTC 2025 - 152.9K bytes - Viewed (0) -
TypedArray.prototype.filter() - JavaScript | MDN
that pass the test. If no elements pass the test, an empty typed...given typed array that pass the test implemented by the provided...developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/filterRegistered: Mon Jul 07 02:12:02 UTC 2025 - Last Modified: Thu Jul 03 09:38:26 UTC 2025 - 79.9K bytes - Viewed (0) -
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/labelRegistered: Mon Jul 07 01:47:15 UTC 2025 - Last Modified: Thu Jul 03 09:38:29 UTC 2025 - 161.8K bytes - Viewed (0) -
RegExp.input ($_) - JavaScript | MDN
test("foo"); // new test, non-matching RegExp.$_;..."hi there!" re.test("hi world!"); // new test, matching RegExp.$_;...developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/inputRegistered: Mon Jul 07 03:53:28 UTC 2025 - Last Modified: Thu Jul 03 09:38:20 UTC 2025 - 69.1K bytes - Viewed (0) -
SyntaxError: getter and setter for private name...
Mismatched placement js class Test { static set #foo(_) {} get...either both static : js class Test { static set #foo(_) {} static...developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Either_be_both_static_or_non-staticRegistered: Mon Jul 07 01:27:41 UTC 2025 - Last Modified: Thu Jul 03 09:38:11 UTC 2025 - 139.7K bytes - Viewed (0)