Challenge word-blanks has an issue.
See original GitHub issueChallenge word-blanks has an issue.
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36
.
Please describe how to reproduce this issue, and include links to screenshots if possible.
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
var result = "";
// Your code below this line
result = myAdjective + " " + myNoun + " " + myVerb + " " + myAdverb;
// Your code above this line
return result;
}
// Change the words here to test your function
wordBlanks("dog", "big", "ran", "quickly");
```
The error :
wordBlanks("dog", "big", "ran", "quickly") should contain all of the passed in words separated by non-word characters (and any additional words in your madlib).
wordBlanks("cat", "little", "hit", "slowly") should contain all of the passed in words separated by non-word characters (and any additional words in your madlib).
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:9 (3 by maintainers)
Top Results From Across the Web
Challenge word-blanks has an issue. #10558 - GitHub
Challenge word-blanks has an issue. User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, ...
Read more >Word Blanks challenge last stage - The freeCodeCamp Forum
Tell us what's happening: Describe your issue in detail here. I have completed the challenge up to the following point
Read more >Solved: Fill in the Blank distractors can conflict with co...
One challenge has been that each blank has to have its own set of distractors ( covered in another post -- see below)....
Read more >Blank definition and meaning | Collins English Dictionary
A blank is a space which is left in a piece of writing or on a printed form for you to fill in...
Read more >Word Blanks - Free Code Camp Help - Basic Javascript
Free Code Camp Material - To help you learn and walk-through step-by-step. JavaScript Algorithms and Data Structures SectionBasic Javascript ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
var result = myNoun +“, " + myAdjective +”, " + myVerb + ", " + myAdverb + ", " ;
Is the literal answer to “wordBlanks should contain all of the passed in words separated by non-word characters”. And it works. This is stupid, 30 min trying to figure out.