I couldn’t attend yesterday’s lecture, so I completed it today, and man… it was damn fun.
I already understood how the Node.js Event Loop works internally, but learning it from the master @piyushgarg_dev made things even clearer.
Also, thanks to Piyush sir, I finally bought X Premium. Micro-managing captions and squeezing ideas into character limits just wasn’t worth it.
So from now on, expect posts that actually deliver value instead of being compressed to fit content limits.
Thank you, @piyushgarg_dev, for inspiring that decision.
@ChaiCodeHQ@Hiteshdotcom@nirudhuuu@yntpdotme@devwithjay@surajtwt_@BlazeisCoding@Aasuyadavv#chaicode#nodejs#nodejsinternals#eventloop
async function getAllData() {
const a = await fetchA();
const b = await fetchB();
const c = await fetchC();
return [a, b, c];
}
Can you tell me whats wrong with this ?
#NodeJSInternals