Created
February 10, 2015 02:39
-
-
Save safranck/17c51e7084d01ee5c0ff to your computer and use it in GitHub Desktop.
My first JavaScript Application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var stringToShout = prompt("What should I shout?"); | |
var shout = stringToShout.toUpperCase(); | |
shout += "!!!"; | |
alert(shout); | |
console.log(stringToShout); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment