Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Correct Sentence solution in Clear category for Correct Sentence by Atadolfo
var correctSentence = (text: string): string => text[0].toUpperCase() + text.slice(1) + (text.endsWith(".") ? "" : ".");
Nov. 11, 2020
Comments: