Checks if value includes with another value.
const hello = includes("hello");hello("ahoj"); // Error: includeshello("--hello--"); // passes Copy
const hello = includes("hello");hello("ahoj"); // Error: includeshello("--hello--"); // passes
Value used in matching.
Checks if value includes with another value.
Example