@imran1mind
FullStack Engineer
Full Stack Geek at Conde Nast
Nothing here yet.
May 1, 2023 · 1 min read · Frontend Interview or Nodejs Interview it's the most frequently asked interview question. function doFlat(){ let flatten = []; function flat(arr){ for(let i=0; i<arr.length; i++){ const item = arr[i]; if(Ar...
Join discussion
May 1, 2023 · 2 min read · In my interview journey, I have seen 80% of the company asking about this hot topic called polyfills. So before applying to a job interview, you should have a thorough understanding of polyfills. But you might be thinking why companies are asking for...
Join discussion
May 1, 2023 · 2 min read · What is a promise A promise is an Object that adds the callback functions once it gets resolved (success or failure) instead of passing the callback function as a parameter in the function. Basically with a Promise, we handle the asynchronous flow of...
Join discussion
Aug 6, 2022 · 3 min read · What is Promise.all A Promise.all() is a static method that takes an array (group) of promises as input and does the process as a single promise and return in than-able or catch. The basic syntax of Promise.all is Promise.all([promise1, promise2,.....
ADeveloper commented