diff --git a/readme.md b/readme.md index 001700e..38b2b68 100644 --- a/readme.md +++ b/readme.md @@ -72,6 +72,12 @@ curriedSum(40)(2) // 42. --- ## Idempotency +> A function is said to be idempotent if it has no side-effects on multiple +executions with the the same input parameters. + +`f(f(x)) = f(x)` + +`Math.abs(Math.abs(10))` --- @@ -145,5 +151,3 @@ referential transparent. ## Chain --- - -