From 703551648367d8a8a26063e47d1a6ab540ec9de1 Mon Sep 17 00:00:00 2001 From: Joel Duran Date: Thu, 30 Apr 2020 08:11:55 -0400 Subject: [PATCH] fix: typo in 'Build JavaScript Objects' (#38690) --- .../basic-javascript/build-javascript-objects.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.english.md index d4bf60d65c..6d7f074ab9 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.english.md @@ -38,7 +38,7 @@ However, if your object has any non-string properties, JavaScript will automatic ## Instructions
Make an object that represents a dog called myDog which contains the properties "name" (a string), "legs", "tails" and "friends". -You can set these object properties to whatever values you want, as long "name" is a string, "legs" and "tails" are numbers, and "friends" is an array. +You can set these object properties to whatever values you want, as long as "name" is a string, "legs" and "tails" are numbers, and "friends" is an array.
## Tests