Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 30, 2022 02:09 am GMT

Become a Better Developer by Learning Functional Programming in JavaScript.

Functional programming (abbreviated as FP) is a programming paradigm that's popular in JavaScript. JavaScript treats functions asfirst-class citizensand this makes it easy to write functional programming in JavaScript.

This post will tell you the basics and benefits of functional programming and how to use them in JavaScript.

What is Functional Programming?
Functional programming is a way of writing software with specific principles. The idea is that these principles will

Make it easier to write, test, and debug the code

Make it easier to reason about the code

Improve developer productivity
And more

Core Principles of Functional Programming

Pure Functions

Functions should be pure. Pure functions always produce the same output and have no side effects affecting the output. Side effects are anything that's outside the control of the function. e.g., any input/output (I/O) such as reading from a database/file or usingconsole.log. Or even a static variable.

Here's a simple example

//This function is pure because it's determinisic.//It has no side effects.//Nothing outside the function can influence the output.//addTen(5) will _always_ be 15const addTen = input => {  return input + 10;};//Fetch the number from the databaseconst numberFromDb = DB.getNumber();//This function is not pure because it's not deterministic.//It has a side effect (the numberFromDb value).//We cannot know for sure that the outcome will be the same//every time we call it, and that's why it's not pureconst addWithNumberFromDb = input => {  return input + numberFromDb;};

1. But I Need I/O?

An application without I/O is not that useful. Functional programming is not about eliminating I/O. Instead, you should separate the business logic from I/O. Any side effects should be handled at the edges of our processes, and not in the middle of them. By doing this you achieve pure business logic that is easily testable.

JavaScript is not a purely functional programming language. So there's nothing from stopping you doing whatever you feel comfortable with though.Haskell, on the other hand, is an example of a purely functional programming language. In Haskell, you're forced to use functional programming principles.

Immutable State

An immutable state means that the state should not change. Instead of changing the state, in functional programming wecopy it. This might seem counter-intuitive: why would we want to copy the state instead of changing it?

In JavaScript, you can pass on values by reference. This can be dangerous. let's look at an example

// Create a person with a namelet simon = {"name": "simon"};// Instead of copying simon, we assign it by reference.// This is dangerous and can have unwanted behavior later.let lisa = simon;// Set the correct name of lisalisa.name = "lisa";// But now we also updated simon's name!console.log(simon); // { name: 'lisa' }// If we would have copied simon, this would not have happened// Let's see how we would do it in functional programminglet beth = {"name": "beth"};// Copy beth instead of using a reference to itlet andy = {...beth};// Set the correct name of andyandy.name = "andy";// Now both variables have the correct nameconsole.log(andy); // { name: 'andy' }console.log(beth); // { name: 'beth' }

Recursion

With recursion, lists are not iterated usingfor,while, ordo...whilebecause they mutate state (increasing the counter, for example). Instead, functional programming functions such asmap(),filter(), andreduce()are used.

The word "recursion" scared me for a long time, I have to admit. But in JavaScript, you can quickly see the benefits of readability and productivity using these functions.

let's look at an example

// A list of fruit, and their priceconst fruit = [  {name: 'banana', price: 5},  {name: 'apple', price: 3},  {name: 'pear', price: 7}];// Now we want to increase the price of all fruit// Let's do this using a for loop// NOTE: We're also mutating state here,// which as you know can be dangerousfor (f of fruit) {  f.price = f.price + 5;}// Instead, let's use map()const moreExpensiveFruit = fruit  .map(f => {    return { ...f, price: f.price + 5 }  });// Now we're using functional programming!// 1. We're not mutating fruit, instead we're copying data with the spread operatator `...`// 2. map() returns a new list, so the fruit list is still unchanged

reduce()will let you "reduce" a list of elements into a single value. This is useful for working with numbers.

// A list of fruit, and their priceconst fruit = [  {name: 'banana', price: 5},  {name: 'apple', price: 3},  {name: 'pear', price: 7}];// We use reduce() to get the "total price of all fruit"const sumPriceFruit = fruit  .reduce((previous, current) => previous + current.price, 0);// Log to see the resultconsole.log(sumPriceFruit); // 15

reduce()will let you "reduce" a list of elements into a single value. This is useful for working with numbers.
This function was the hardest one to understand for me.

Conclusion

Now you know what functional programming is about, why it's useful, and how to use it in JavaScript. It might take some time to get used to but it's well worth the effort. The functions we cover are available in all major programming languages. This is not something specific to JavaScript.


Original Link: https://dev.to/callmebobonwa/become-a-better-developer-by-learning-functional-programming-in-javascript-55ep

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To