myString = 'the quick green alligator...'; myString.replace(/^w/, (c) => c.toUpperCase()); myString = ' the quick green alligator...'; myString.trim().replace(/^w/, (c) => c.toUpperCase());