diff --git a/public/c7979f1c69945c59.html b/public/c7979f1c69945c59.html deleted file mode 100644 index c2aaac1ecc..0000000000 --- a/public/c7979f1c69945c59.html +++ /dev/null @@ -1 +0,0 @@ -simply-hired-verification: c7979f1c69945c59.html \ No newline at end of file diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index 52a43a1396..e4fc37fc8f 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -3656,7 +3656,7 @@ "You may recall from Comparison with the Equality Operator that all comparison operators return a boolean true or false value.", "A common anti-pattern is to use an if/else statement to do a comparison and then return true/false:", "
function isEqual(a,b) {
if (a === b) {
return true;
} else {
return false;
}
}
", - "Since === returns true or false, we can simply return the result of the comparison:", + "Since === returns true or false, we can return the result of the comparison:", "
function isEqual(a,b) {
return a === b;
}
", "

Instructions

", "Fix the function isLess to remove the if/else statements." @@ -4968,7 +4968,7 @@ "description": [ "Random numbers are useful for creating random behavior.", "JavaScript has a Math.random() function that generates a random decimal number between 0 (inclusive) and not quite up to 1 (exclusive). Thus Math.random() can return a 0 but never quite return a 1", - "Note
Like Storing Values with the Equal Operator, all function calls will be resolved before the return executes, so we can simply return the value of the Math.random() function.", + "Note
Like Storing Values with the Equal Operator, all function calls will be resolved before the return executes, so we can return the value of the Math.random() function.", "

Instructions

", "Change randomFraction to return a random number instead of returning 0." ], diff --git a/seed/challenges/01-front-end-development-certification/jquery.json b/seed/challenges/01-front-end-development-certification/jquery.json index ac88fbdc74..588ea23772 100644 --- a/seed/challenges/01-front-end-development-certification/jquery.json +++ b/seed/challenges/01-front-end-development-certification/jquery.json @@ -76,7 +76,7 @@ "title": "Target HTML Elements with Selectors Using jQuery", "description": [ "Now we have a document ready function.", - "Now let's write our first jQuery statement. All jQuery functions start with a $, usually referred to as a dollar sign operator, or simply as bling.", + "Now let's write our first jQuery statement. All jQuery functions start with a $, usually referred to as a dollar sign operator, or as bling.", "jQuery often selects an HTML element with a selector, then does something to that element.", "For example, let's make all of your button elements bounce. Just add this code inside your document ready function:", "$(\"button\").addClass(\"animated bounce\");",