Minor edit in Find the Nth Character

In "Use Bracket Notation to Find the Nth Character in a String" section removed "last" from  'The third last letter of lastName should be..."
This commit is contained in:
AEA2002
2015-08-25 18:34:31 -04:00
parent 300e79273a
commit b9cfc09eb9

View File

@ -189,7 +189,7 @@
"Try looking at the <code>secondLetterOfFirstName</code> variable declaration if you get stuck."
],
"tests": [
"assert(thirdLetterOfLastName === 'v', 'The third last letter of lastName should be a \"v\"');"
"assert(thirdLetterOfLastName === 'v', 'The third letter of lastName should be a \"v\"');"
],
"challengeSeed": [
"var firstName = \"Ada\";",