added semicolon

pull/13073/head
dnahol 2017-02-02 06:12:47 -08:00
parent 4116d30b42
commit d1b1c508f5
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@
"Use the <code>caret</code> character in a regex to find <code>\"Cal\"</code> only in the beginning of the string <code>rickyAndCal</code>." "Use the <code>caret</code> character in a regex to find <code>\"Cal\"</code> only in the beginning of the string <code>rickyAndCal</code>."
], ],
"challengeSeed": [ "challengeSeed": [
"let rickyAndCal = \"Cal and Ricky both like racing.\"", "let rickyAndCal = \"Cal and Ricky both like racing.\";",
"let calRegex = /change/; // Change this line", "let calRegex = /change/; // Change this line",
"let result = calRegex.test(rickyAndCal);" "let result = calRegex.test(rickyAndCal);"
], ],