javascript regex .test

JavaScript
const str = 'hello world!';
const result = /^hello/.test(str);

console.log(result); // true

/**
The test() method executes a search for a match between 
a regular expression and a specified string
*/
Source

Also in JavaScript: