- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 1 - 10 of 250 for test (0.13 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: 2025-03-21 01:29 - Last Modified: 2025-03-21 00:49 - 81.8K 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: 2025-03-21 01:08 - Last Modified: 2025-03-21 00:49 - 78.3K 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: 2025-03-21 01:28 - Last Modified: 2025-03-21 00:49 - 87.2K 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: 2025-03-21 00:48 - Last Modified: 2025-03-20 00:48 - 153.5K 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: 2025-03-21 01:06 - Last Modified: 2025-03-21 00:50 - 152.1K 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: 2025-03-21 00:43 - Last Modified: 2025-03-20 00:48 - 151.3K 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: 2025-03-21 01:26 - Last Modified: 2025-03-21 00:49 - 81.8K 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: 2025-03-21 01:06 - Last Modified: 2025-03-21 00:50 - 159.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: 2025-03-21 01:58 - Last Modified: 2025-03-21 00:49 - 70.6K bytes - Viewed (0) -
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/AssertionsRegistered: 2025-03-21 01:29 - Last Modified: 2025-03-21 00:49 - 168K bytes - Viewed (0)