Created
July 20, 2018 02:04
-
-
Save gt50/addb461b13517f5c76465dc97c1a86f0 to your computer and use it in GitHub Desktop.
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
/* | |
* 1. Declare a madLib variable | |
* 2. Use the adjective1, adjective2, and adjective3 variables to set the madLib variable to the message: | |
* | |
* 'The Intro to JavaScript course is amazing. James and Julia are so fun. I cannot wait to work through the rest of this entertaining content!' | |
*/ | |
var adjective1 = 'amazing'; | |
var adjective2 = 'fun'; | |
var adjective3 = 'entertaining'; | |
var madLibs = 'The Intro to JavaScript course is ' + adjective1 + '.' + ' James and Julia are so ' + adjective2 + '.' + ' I cannot wait to work through the rest of this ' + adjective3 + ' content!'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment