function toTitleCase(s : string) {
return s.replace(/\w\S*/g, function (word : string) {
return word.charAt(0).toUpperCase() + word.substr(1).toLowerCase();
}
);
}
console.log(toTitleCase("typescript is a programming language"));
/*
run:
"Typescript Is A Programming Language"
*/