Advertisement
idotherest34

Untitled

Oct 3rd, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  3.   var result = "";
  4.   // Your code below this line
  5.  
  6.   result =  "the" +  " " + myAdjective + myNoun + myVerb  + myAdverb;
  7.  
  8.   // Your code above this line
  9.   return result;
  10. }
  11.  
  12. // Change the words here to test your function
  13. wordBlanks("dog" + " ", "big" + " ", "ran" + " ", "quickly" + " ");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement