different between pure function and impure function
Answers
Answered by
1
The return value of the pure functionssolely depends on its arguments Hence, if you call the pure functionswith the same set of arguments, you will always get the same return values. They do not have any side effects like network or database calls. They do not modify the arguments which are passed to them.
aryan7069:
thanks dear
Similar questions