var str = "The Quick Brown Fox";
console.log(str.split("").join(""));
var result = str.split("").map(item => (item ===item.toUpperCase() ? item.toLowerCase() :
item.toUpperCase())).join("");
console.log(result);
To embed this program on your website, copy the following code and paste it into your website's HTML: