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 c7bc96e1f5..9e5b75788e 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -439,7 +439,7 @@
"id": "cf1391c1c11feddfaeb4bdef",
"title": "Create Decimal Numbers with JavaScript",
"description": [
- "We can store decimal numbers in variables too. Decimal numbers are sometimes refered to as floating point numbers or floats.",
+ "We can store decimal numbers in variables too. Decimal numbers are sometimes referred to as floating point numbers or floats.",
"Note
Not all real numbers can accurately be represented in floating point. This can lead to rounding errors. Details Here.",
"
myDecimal
and give it a decimal value."
@@ -526,7 +526,7 @@
"5 % 2 = 1 because", "Usage
Math.floor(5 / 2) = 2 (Quotient)
2 * 2 = 4
5 - 4 = 1 (Remainder)
2
.",
"17 % 2 = 1 (17 is Odd)", - "Note
48 % 2 = 0 (48 is Even)
remainder
equal to the remainder of 11
divided by 3
using the remainder (%
) operator."
],
@@ -1105,7 +1105,7 @@
"title": "Use Bracket Notation to Find the First Character in a String",
"description": [
"Bracket notation
is a way to get a character at a specific index
within a string.",
- "Most modern programming languages, like JavaScript, don't start counting at 1 like humans do. They start at 0. This is refered to as Zero-based indexing.",
+ "Most modern programming languages, like JavaScript, don't start counting at 1 like humans do. They start at 0. This is referred to as Zero-based indexing.",
"For example, the character at index 0 in the word \"Charles\" is \"C\". So if var firstName = \"Charles\"
, you can get the value of the first letter of the string by using firstName[0]
.",
"lastName
variable and assign it to firstLetterOfLastName
.",