So I have been researching functional programming recently and wanted to know everyone's thoughts on this topic. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

So I have been researching functional programming recently and wanted to know everyone's thoughts on this topic.

Functional programming. what would be some pros/cons of this?

5th Feb 2018, 5:53 AM
Shawn Brown
Shawn Brown - avatar
1 Answer
0
If you have been researching then you may know more than me. In functional programming the output is more​ predictable (for any function, and therefore the program) because there is no state. ie the same function with the same input should always give the same output. This can make debugging easier. However the constraint of statelessness can make certain types of problems harder to solve. (May also lead to messier code). To be fair other programming paradigms​ are less suited to specific problems also, just different ones.
5th Feb 2018, 7:59 AM
Jared Bird
Jared Bird - avatar