question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Challenge word-blanks has an issue.

See original GitHub issue

Challenge 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:closed
  • Created 7 years ago
  • Reactions:4
  • Comments:9 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
dogomeodenzoycommented, Oct 19, 2018

var result = myNoun +“, " + myAdjective +”, " + myVerb + ", " + myAdverb + ", " ;

1reaction
sadelaxcommented, Nov 24, 2018

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found