InterviewSolution
Saved Bookmarks
| 1. |
What is functional programming in JavaScript? |
|
Answer» A programming PARADIGM designed to handle pure mathematical functions is known as FUNCTIONAL programming. The emphasis in this is on WRITING more complex and pure functions. Because JavaScript is a multi-paradigm language, we may simply combine a variety of paradigms within a single piece of JavaScript code. In JavaScript, we can employ object-oriented, procedural, and functional programming paradigms all at once. What makes JavaScript so attractive and powerful is that it is multi-paradigm and ALLOWS US to interact with a variety of programming languages. |
|