Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
regexp π at work solution in Clear category for First Word (simplified) by vincent.tscherter
function firstWord(text: string): string {
return text.split(/\W/)[0]
}
April 23, 2020
Comments: