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
return str.replace(/[-_](.)/g, (_, c) => c.toUpperCase());
const upperCase = (string) => {
const newText = string.toUpperCase();
return newText;
};