One line - one match solution in Clear category for [old] First Word by MaxGraey
const firstWord = str => str.match(/[\w']+/)[0]
May 11, 2019