Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One string solution solution in Clear category for [old] Correct Sentence by oestott
"use strict";
function correctSentence(text) {
return text[0].toUpperCase() + text.slice(1) + (text.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!");
}
Dec. 13, 2017
Comments: