Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Single line solution in Clear category for [old] Correct Sentence by MaxGraey
const correctSentence = text => `${text[0].toUpperCase()}${text.substr(1)}${(~text.lastIndexOf('.') ? '' : '.')}`
May 11, 2019
Comments: