Skip to content

Instantly share code, notes, and snippets.

@gt50
Created July 20, 2018 02:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gt50/addb461b13517f5c76465dc97c1a86f0 to your computer and use it in GitHub Desktop.
Save gt50/addb461b13517f5c76465dc97c1a86f0 to your computer and use it in GitHub Desktop.
/*
* 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