# Pure Function
A pure function:
1. return values are identical for identical arguments (x -> y will always be true, and x -> z will always be false)
2. has no [[side effect]]
Pure functions can be very useful to [[Memoization|memoize]].
---
Bibliography:
- [Title - website.com](need bibliography)