let fLCapital = s => s = s.charAt(0).toUpperCase() + s.slice(1); fLCapital('this is a test') // "This is a test"