What will be the output of the console.log statement in the following code snippet?
let str = 'Hello, World!';
let regex = /h/i;
console.log(regex.test(str));
What will be the output of the console.log statement in the following code snippet?
let str = 'Hello, World!';
let regex = /h/i;
console.log(regex.test(str));