Skip to content

Commit 3309a15

Browse files
authored
Merge pull request #15 from tommygonzaleza/master
Small issue on the exercise fixed.
2 parents efe6b98 + ba35ed2 commit 3309a15

File tree

2 files changed

+3
-2
lines changed
  • exercises

2 files changed

+3
-2
lines changed

exercises/19-And-One-and-a-Two-and-a-Three/app.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ let contact = {
33
phone: "321-321-4321",
44
email: "test@test.com"
55
}
6-
for(et key in contact){
6+
for(let key in contact){
77
// Code goes here
8+
89
}

exercises/25-Techno-beat/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test('The output in the console should match the one in the instructions!', func
3636
}
3737
}
3838
}
39-
return string
39+
return string.trim()
4040
}
4141

4242

0 commit comments

Comments
 (0)