mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-07 18:03:49 -05:00
Merge pull request #3112 from AryanJ-NYC/AryanJ-NYC-3105
Properly checks that .length() is used in JS brackets notation challenges
This commit is contained in:
@@ -221,7 +221,7 @@
|
||||
],
|
||||
"tests": [
|
||||
"assert(lastLetterOfLastName === \"e\", 'lastLetterOfLastName should be \"e\"');",
|
||||
"assert(editor.getValue().match(/\\.length/g), 'You have to use <code>.length</code> to get the last letter');"
|
||||
"assert(editor.getValue().match(/\\.length/g).length === 2, 'You have to use <code>.length</code> to get the last letter');"
|
||||
],
|
||||
"challengeSeed": [
|
||||
"var firstName = \"Ada\";",
|
||||
@@ -253,7 +253,7 @@
|
||||
],
|
||||
"tests": [
|
||||
"assert(secondToLastLetterOfLastName === 'c', 'secondToLastLetterOfLastName should be \"c\".');",
|
||||
"assert(editor.getValue().match(/\\.length/g), 'You have to use .length to get the third last letter.');"
|
||||
"assert(editor.getValue().match(/\\.length/g).length === 2, 'You have to use .length to get the third last letter.');"
|
||||
],
|
||||
"challengeSeed": [
|
||||
"var firstName = \"Ada\";",
|
||||
|
||||
Reference in New Issue
Block a user