Explain the concepts of functional programming in JavaScript Last Updated : 12 Feb, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report Every program we write follows an approach or style of writing also referred to as a paradigm. Functional programming is a declarative programming paradigm (programming paradigm where we write code in such a way that it describes the result and not the approach). To understand functional programming let's take an example of usual mathematics functions: y = f(x) this function does not modify the input passed in. Hence it is a pure function y'=g(f(x)) here we have two functions 'g' and 'f', we take the result of the function 'f' and use it in the function 'g', this concept is called functional composition. It encourages code reusability and maintainability. Similarly, in a functional code, the output depends only on the arguments that are passed to the function. Example: JavaScript const a = [6, 1, 9]; function push(a, element) { return [...a, element]; } console.log("Original array: ", a); console.log("Updated array: ", push(a, 10)); Output: Original array: [6,1,9] Updated array: [6,1,9,10] Here, we have created a function to push elements in an array, the push function is a pure function as it does not change the global array and only gives the result based on the input arguments. Core principles of functional programming: Immutable data: an immutable variable is one that cannot be modified after initialization or we can say that a variable can be assigned a value only once. The benefits of avoiding data mutation are that it makes the code easier to read and easier to test and debug.Pure functions: as discussed above, a function that always returns the same value for the same arguments is called a pure function. A good example for dealing with impurity in functions would be Redux, it handles all of the side effects affecting the main store and the logic composed of pure functions. Benefits of pure functions are:easy to testeasy to debugleads to smaller single-responsibility functionsDeclarative Style ( using functional composition ): it focuses on the result and not on the approach of the function. Composed functions make the code much more scalable as we have a clear separation of concerns Comment More infoAdvertise with us S swapnil074 Follow Improve Article Tags : JavaScript JavaScript-Questions Similar Reads Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co 11 min read JavaScript Tutorial JavaScript is a programming language used to create dynamic content for websites. It is a lightweight, cross-platform, and single-threaded programming language. It's an interpreted language that executes code line by line, providing more flexibility.JavaScript on Client Side: On the client side, Jav 11 min read Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance 10 min read JavaScript Interview Questions and Answers JavaScript is the most used programming language for developing websites, web servers, mobile applications, and many other platforms. In Both Front-end and Back-end Interviews, JavaScript was asked, and its difficulty depends upon the on your profile and company. Here, we compiled 70+ JS Interview q 15+ min read Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact 12 min read Backpropagation in Neural Network Back Propagation is also known as "Backward Propagation of Errors" is a method used to train neural network . Its goal is to reduce the difference between the modelâs predicted output and the actual output by adjusting the weights and biases in the network.It works iteratively to adjust weights and 9 min read 3-Phase Inverter An inverter is a fundamental electrical device designed primarily for the conversion of direct current into alternating current . This versatile device , also known as a variable frequency drive , plays a vital role in a wide range of applications , including variable frequency drives and high power 13 min read Polymorphism in Java Polymorphism in Java is one of the core concepts in object-oriented programming (OOP) that allows objects to behave differently based on their specific class type. The word polymorphism means having many forms, and it comes from the Greek words poly (many) and morph (forms), this means one entity ca 7 min read CTE in SQL In SQL, a Common Table Expression (CTE) is an essential tool for simplifying complex queries and making them more readable. By defining temporary result sets that can be referenced multiple times, a CTE in SQL allows developers to break down complicated logic into manageable parts. CTEs help with hi 6 min read What is Vacuum Circuit Breaker? A vacuum circuit breaker is a type of breaker that utilizes a vacuum as the medium to extinguish electrical arcs. Within this circuit breaker, there is a vacuum interrupter that houses the stationary and mobile contacts in a permanently sealed enclosure. When the contacts are separated in a high vac 13 min read Like