InterviewSolution
Saved Bookmarks
| 1. |
What do you understand about functional programming in JavaScript? |
|
Answer» The term "functional PROGRAMMING" refers to a programming paradigm for dealing with PURE mathematical functions. Writing increasingly sophisticated and pure functions is the focus here. We may integrate a number of paradigms within a SINGLE PIECE of JavaScript code since JavaScript is a multi-paradigm language. Object-oriented, procedural, and functional programming paradigms can all be used with JavaScript at the same time. The fact that JavaScript is multi-paradigm and can interact with a range of programming languages is what MAKES it so appealing and powerful. |
|