Advertisement
ndburrus

word blanks @Bois1011

Sep 2nd, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // word blanks
  2. // @Bois1011
  3.  
  4. function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  5. var result = "";
  6. // Your code below this line
  7. result =( ) ;
  8.  
  9. // Your code above this line
  10. return result;
  11. }
  12.  
  13. // Change the words here to test your function
  14. wordBlanks("dog", "big", "ran", "quickly");
  15. wordBlanks("cat", "little", "hit", "slowly");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement