You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> A function is said to be pure if the return value is only determined by its
95
-
input values, without any side effects and mutations.
95
+
input values, without any side effects.
96
96
97
97
```js
98
98
let greet ="yo";
@@ -181,7 +181,7 @@ Points-free function definitions look just like normal assignments without `func
181
181
Object.freeze({name:'John', age:30}) // The `freeze` function enforces immutability.
182
182
(a) => a
183
183
```
184
-
Note that the value-containing structures defined below such as [Functor](#functor), [Monad](#monad) etc. are themselves values. This means, among other things, that they can be nested within each other.
184
+
Note that value-containing structures such as [Functor](#functor), [Monad](#monad) etc. are themselves values. This means, among other things, that they can be nested within each other.
0 commit comments