Week 2 - 122v5.htm

<SCRIPT>

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

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

// this example demonstrates that we can chain together many String Method
//
Again Remember -- that JavaScript just reflects HTML
document.write(mySentence.bold().fontcolor(myColor).fontsize(5).italics());

</SCRIPT>