let txt = "Hello World!";
txt = txt.toUpperCase();
function changeToUpperCase(founder) {
return founder.toUpperCase();
}
// calling the function
const result = changeToUpperCase("Quincy Larson");
// printing the result to the console
console.log(result);
// Output: QUINCY LARSON
const upperCase = function(names){
const toLower = names.toLowerCase().split(' ');
const namesUpper = [];
for(const wordName of toLower){
namesUpper.push(wordName[0].toUpperCase() + wordName.slice(1));
}
return namesUpper.join(' ');
}
echo example | awk -F 'd' '{ print toupper($1)}'
EXAMPLE #Example first uppercased outputed