@rohit35184
Learn Till Death
Nothing here yet.
Nothing here yet.
Feb 7 · 3 min read · 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++) {...
Join discussionFeb 7 · 3 min read · 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...
Join discussion