fix(curriculum): rename variable to avoid conflict (#39428)
This commit is contained in:
@ -32,7 +32,8 @@ tests:
|
||||
- text: Your <code>incrementer</code> function should take an argument.
|
||||
testString: assert(incrementer.length === 1);
|
||||
- text: Your <code>incrementer</code> function should return a value that is one larger than the <code>fixedValue</code> value.
|
||||
testString: const newValue = incrementer(fixedValue); assert(newValue === 5);
|
||||
testString: const __newValue = incrementer(fixedValue); assert(__newValue === 5);
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user