const value = " Hi there! ";
console.log(value.trim());
// output: "Hi there!"
const value = "Hi There!";
console.log(value.toLowerCase());
// output: "hi there!"
const value = "Hi There!";
console.log(value.toUpperCase());
// output: "HI THERE!"
const value = " Hi there! ";
console.log(value.replace("", "-"));
// output: "-Hi there! "
console.log(value.replace(/ /g, "-"));
// output: "-Hi-there!-"