Skip to content
This repository was archived by the owner on Sep 25, 2019. It is now read-only.

Commit e1dfe8f

Browse files
anku255raisedadead
authored andcommitted
fix: Remove an unnecessary line from basic javascript challenge (#19)
1 parent bbb9d6a commit e1dfe8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2274,7 +2274,7 @@
22742274
"id": "56533eb9ac21ba0edf2244bb",
22752275
"title": "Word Blanks",
22762276
"description": [
2277-
"We will now use our knowledge of strings to build a \"<a href='https://en.wikipedia.org/wiki/Mad_Libs' target='_blank'>Mad Libs</a>\" style word game we're calling \"Word Blanks\". You will create an (optionally humorous) \"Fill in the Blanks\" style sentence. Here's an example of an incomplete sentence.",
2277+
"We will now use our knowledge of strings to build a \"<a href='https://en.wikipedia.org/wiki/Mad_Libs' target='_blank'>Mad Libs</a>\" style word game we're calling \"Word Blanks\". You will create an (optionally humorous) \"Fill in the Blanks\" style sentence.",
22782278
"In a \"Mad Libs\" game, you are provided sentences with some missing words, like nouns, verbs, adjectives and adverbs. You then fill in the missing pieces with words of your choice in a way that the completed sentence makes sense.",
22792279
"Consider this sentence - \"It was really <strong>____</strong>, and we <strong>____</strong> ourselves <strong>____</strong>\". This sentence has three missing pieces- an adjective, a verb and an adverb, and we can add words of our choice to complete it. We can then assign the completed sentence to a variable as follows:",
22802280
"<blockquote>var sentence = \"It was really\" + \"hot\" + \", and we\" + \"laughed\" + \"ourselves\" + \"silly.\";</blockquote>",

0 commit comments

Comments
 (0)