Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for First Word by flytaly
function firstWord(text: string): string {
return text.match(/[a-z']+/i)?.[0] || '';
}
April 23, 2020