let myStr = "Hello World"
let firstWord = myStr.split(" ")[0]
let sentence = "The big brown fox"
let word = sentence.split(" ")[0]
console.log(word) // The
var x = 'some string';
alert(x.charAt(0)); // alerts 's'
var str = "Java Script Object Notation";
var matches = str.match(/(w)/g); // ['J','S','O','N']
var acronym = matches.join(''); // JSON
console.log(acronym)