↧
Mutable States in Functional Programming
Functions are First class members in functional programming. Avoiding Mutable states is one of important property that a function should follow to ensure that there are no concurrency issues.
View ArticleStatelessness in Functions
Functions should be stateless in functional programming. It is important that functions do not depend on state or maintain the same which in not in their scope. This helps to keep functions independent...
View Article