Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for First Word by suic
function firstWord(text: string): string {
return text.match(/\b[a-zA-Z']+\b/)[0];
}
Aug. 9, 2020
Comments: