Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
✂️ Split solution in Clear category for First Word (simplified) by zborde
var firstWord = (text: string): string => text.split( ' ' )[0];
April 24, 2020
Comments: