Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
s.slice(s.search(/\w/), 0o1 + s.search(/\w\b/)) solution in Creative category for First Word (simplified) by danielsan
var firstWord = (s: string): string => s.slice(s.search(/\w/), 0o1 + s.search(/\w\b/));
April 23, 2020
Comments: