var str = "hello world!";
var new_str = str.toUpperCase();
conlose.log(new_str);
HELLO WORLD!
new_str = str.toLowerCase();
hello world!