Files

766 B

id, title, challengeType, dashedName
id title challengeType dashedName
660ef5c1904955978a986a5c Step 15 1 step-15

--description--

Use let to declare a count variable. Assign it the number 8. When using a number value, you do not use quotes. For example:

let money = 100;

--hints--

You should have a second let keyword in your code.

assert.lengthOf(__helpers.removeJSComments(code).match(/let/g), 2);

You should use let to declare a count variable.

assert.match(__helpers.removeJSComments(code), /let\s+count/);

You should assign the number 8 to your count variable.

assert.equal(count, 8);

--seed--

--seed-contents--

--fcc-editable-region--
let character = 'Hello';

--fcc-editable-region--