diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 4ea89e7175..c907b21888 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -1774,9 +1774,9 @@ "
function functionName() {", "You can call or invoke this function by using its name followed by parentheses, like this:", "
console.log(\"Hello World\");
}
functionName();
",
- "Each time the function is called it will print out the message \"Hello World\" on the dev console. All of the code between the curly braces will be executed every time the function is called.",
+ "Each time the function is called it will print out the message \"Hello World\"
on the dev console. All of the code between the curly braces will be executed every time the function is called.",
"myFunction
which prints \"Hi World\" to the dev console. Call that function."
+ "myFunction
which prints \"Hi World\"
to the dev console.myFunction
should be a function');",