Week 2 - 122v3.htm

<SCRIPT>

var myColor = prompt("Enter Color \(Red/Blue/Green\) :", "blue");

// if the person cancelled the prompt make "blue" the default color
if (!myColor) myColor = "blue";

var mySentence = prompt("Enter a sentence", "Let's see what happens!");

// if the person cancelled the prompt make "Let's see what happens!" the default sentence
if (!mySentence) mySentence = "Let's see what happens!";

document.write(mySentence.bold().fontcolor(myColor));

</SCRIPT>