Skip to content

Instantly share code, notes, and snippets.

@safranck
Created February 10, 2015 02:39
Show Gist options
  • Save safranck/17c51e7084d01ee5c0ff to your computer and use it in GitHub Desktop.
Save safranck/17c51e7084d01ee5c0ff to your computer and use it in GitHub Desktop.
My first JavaScript Application
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