higherorderfunctionsonarrays.hashnode.devHigher Order Functions (HOF)A function that: Accepts another function as an argument, Or Returns a function. const diameter=function(radius){ return 2*radius; } Array.prototype.calculate = function(logic) { const output = []; for (let i = 0; i < this.length; i++) {...Feb 7·3 min read
temp45682.hashnode.devMessaging Queues & Enterprise Message Bus (EMB)In simple way, a messaging queue is a holding area for the data (messages) being sent between two applications. Rather than App A communicating directly with App B and waiting for a response, App A can simply put a message in the queue and go back to...Feb 7·3 min read