let str = 'John Wick'
let firstChar = str. charAt(0)
console. log(firstChar); // "J"
var word = "This is how you locate a word in a string";
var n = word.includes("word");
var str = "Hello world, welcome to the universe.";
var n = str.includes("world", 12);