ARTICLES
combinators--> Combinators A combinator are higher-order , pure functions that doesn't have any free variable and
can combine primitive artifacts like…
programming functors--> Functors A functor is nothing more than a data structure that you can map functions with the purpose of
lifting values intro a wrapper…
Mixins--> In JavaScript we can only inherit from a single object. There can be only one [ Prototype ] for
an object.
And a class may extend only…
Lexical and Dynamic scope--> Lexical scoping Evil eval We can cheat on lexical scoping using eval keywod.
The eval keyword, takes any given strings and it treats as…
functional programming--> functional programming In computer science, functional programming is a programming paradigm — a style of building the structure and…
Method chaining in Javascript--> Method chaining in Javascript from wikipedia
Method chaining, also known as named parameter idiom, is a common syntax for invoking…