#functional-programming
Read more stories on Hashnode
Articles with this tag
What is a Monoid? A monoid consists of three components: A set of values. An associative binary operation that combines two values of the set,...
Return value : true if the callback function returns a truthy value for at least one element in the array. Otherwise, false. The Array.some() method...
In functional programming, currying is the process of taking a function with multiple arguments and turning it into a sequence of functions that each...
Input of one function comes from the output of another function. š simple defination of function composition that i could find. Main Ideas of...
FP is a programming paradigm where programs are constructed by applying and composing functions. Ā· Main Ideas of Functional Programming. Function - This...