Posts for function

An in-depth view of Higher-Order functions

Introduction As complex as it may seem, higher-order functions are functions that either accepts a function as an argument or returns a function or does both. This is possible because, in JavaScript, functions are first-class citizens — they are treated as variables and can be passed as arguments to other functions and returned by other […]

December 5, 2019 in Javascript & Tutorials