Konversi string ke naskah huruf besar
var str = "Apples are round, and Apples are Juicy.";
console.log(str.toUpperCase());
Wicked Wryneck
var str = "Apples are round, and Apples are Juicy.";
console.log(str.toUpperCase());