Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for [old] Correct Sentence by SaintDron
"use strict";
function correctSentence(text) {
return text[0].toUpperCase() + text.replace(/\.?$/, '.').slice(1);
}
var assert = require('assert');
if (!global.is_checking) {
console.log('Example:')
console.log(correctSentence("greetings, friends"))
// These "asserts" using for self-checking and not for auto-testing
assert.equal(correctSentence("greetings, friends"), "Greetings, friends.")
assert.equal(correctSentence("Greetings, friends"), "Greetings, friends.")
assert.equal(correctSentence("Greetings, friends."), "Greetings, friends.")
assert.equal(correctSentence("hi"), "Hi.")
console.log("Coding complete? Click 'Check' to earn cool rewards!");
}
April 6, 2019
Comments: