In the first snippet i would say that thisWontBePure is pure. As far as i know pureFunction is a constant. What could possibly change the value returned by pureFunction at runtime?
var c = 0;
var obj1 = {
valueOf: function () {
c++;
return 1;
}
};
var obj2 = {
valueOf: function () {
c++
return 2;
}
};
function add(a) {
return function inner(b) {
return a + b;
};
}
console.log(add(obj1)(obj2));
console.log(c);
Fair question. This is javascript, right? In a dynamic language you can only write code in a functional style and hope that no one does a trick like the one you did there.
In your example inner becomes impure because valueOf is impure (it changes some state outside of its scope). So if an impure function gets executed inside of a "pure" function than it is no longer pure.
In the first snippet i would say that
thisWontBePureis pure. As far as i know pureFunction is a constant. What could possibly change the value returned bypureFunctionat runtime?Consider this:
I would say that
inneris still a pure function because the value ofacan't change once is locked in the closure.If a function doesn't have side effects and mantains referential transparency, to me that is a pure function.
mmm you got me thinking. What if :
I messed up the code format. Used from stack overflow... Sorry for asking this here, how can I format code in a comment?
The syntax highlight can be activated with a block closed in triple backticks, and optionaly a language name. Like this:
```javascript
console.log('hello');
// some code
```
Thank you sir. Sorry for the irrelevant question again.
Fair question. This is javascript, right? In a dynamic language you can only write code in a functional style and hope that no one does a trick like the one you did there.
In your example
innerbecomes impure becausevalueOfis impure (it changes some state outside of its scope). So if an impure function gets executed inside of a "pure" function than it is no longer pure.obj1.valueOfis not referential transparent!not all side effects are the same, only observed side effects are relevant for the definition of pure function.