Files

769 B

id, title, challengeType, dashedName
id title challengeType dashedName
660ef6355e8f5a9e67fe5f46 Step 16 1 step-16

--description--

With the number data type, you can perform mathematical operations, like addition. Try printing count + 1 to the console.

--hints--

You should access the console in your code.

assert.match(__helpers.removeJSComments(code), /console/);

You should access the .log() of the console.

assert.match(__helpers.removeJSComments(code), /console\.log/);

You should log count + 1 to the console.

assert.match(__helpers.removeJSComments(code), /console\.log\(\s*count\s*\+\s*1\s*\);?/);

--seed--

--seed-contents--

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

--fcc-editable-region--