From feb449752be1315c3787b2271429549535f917b9 Mon Sep 17 00:00:00 2001 From: Akira Laine Date: Sun, 10 Jan 2016 19:09:17 +1100 Subject: [PATCH] fixed semicolon typo --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 8da8aff3be..dcb5ecdce0 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -757,7 +757,7 @@ "title": "Declare String Variables", "description": [ "Previously we have used the code", - "var myName = \"your name\"", + "var myName = \"your name\";", "\"your name\" is called a string literal. It is a string because it is a series of zero or more characters enclosed in single or double quotes.", "

Instructions

", "Create two new string variables: myFirstName and myLastName and assign them the values of your first and last name, respectively."