freeCodeCamp/curriculum/challenges/arabic/02-javascript-algorithms-an.../basic-javascript/increment-a-number-with-jav...

1.1 KiB

id title challengeType videoUrl localeTitle
56533eb9ac21ba0edf2244ac Increment a Number with JavaScript 1

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(myVar === 88, "<code>myVar</code> should equal <code>88</code>");'
  - text: ''
    testString: 'assert(/var\s*myVar\s*=\s*87;\s*\/*.*\s*([+]{2}\s*myVar|myVar\s*[+]{2});/.test(code), "<code>myVar = myVar + 1;</code> should be changed");'
  - text: ''
    testString: 'assert(/[+]{2}\s*myVar|myVar\s*[+]{2}/.test(code), "Use the <code>++</code> operator");'
  - text: ''
    testString: 'assert(/var myVar = 87;/.test(code), "Do not change code above the line");'

Challenge Seed

var myVar = 87;

// Only change code below this line
myVar = myVar + 1;

After Test

console.info('after the test');

Solution

// solution required