Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for First Word (simplified) by nicolas.tscherter
function firstWord(text: string): string {
return text.split(" ")[0];
}
June 15, 2020
Comments: