JS

JavaScript ES6 - String

4.

Given the following code, what will be the output?

let string = "Hello, world!";
console.log(string.includes("world"));

Syntax Error

False

True

Undefined