* fix: restructure certifications guide articles * fix: added 3 dashes line before prob expl * fix: added 3 dashes line before hints * fix: added 3 dashes line before solutions
786 B
786 B
title
title |
---|
Pass Arguments to Avoid External Dependence in a Function |
Pass Arguments to Avoid External Dependence in a Function
Hints
Hint 1
Try to pass argument to function and return increased value of this argument.
Solutions
Solution 1 (Click to Show/Hide)
// the global variable
var fixedValue = 4;
// Add your code below this line
function incrementer(value) {
return value + 1;
// Add your code above this line
}
var newValue = incrementer(fixedValue); // Should equal 5
console.log(fixedValue); // Should print 4
Code Explanation
This code will provide the same result as the last challenge, only this time we will pass the fixedValue
into the function as a parameter.