function toTitleCase(s) {
return s.replace(/\w\S*/g, function (word) {
return word.charAt(0).toUpperCase() + word.substr(1).toLowerCase();
}
);
}
console.log(toTitleCase("nodejs is a back-end javascript runtime environment"));
/*
run:
Nodejs Is A Back-end Javascript Runtime Environment
*/