Become a member
Sign in
Monalika Biswas
Monalika Biswas

Monalika Biswas

18 Following
16 Followers
  • Profile
  • Claps
  • Highlights

Highlighted by Monalika Biswas

See more

From A perfect guide for cracking a JavaScript interview (A developer’s perspective) by Naren Yellavula

…maths:95, chemistry: 91};
finalizedMarks = Object.freeze(marks);
finalizedMarks["physics"] = 86; // throws error in strict mode
console.log(marks); // {physics: 98, maths: 95, chemistry: 91}

From A perfect guide for cracking a JavaScript interview (A developer’s perspective) by Naren Yellavula

…aths:95, chemistry: 91};
finalizedMarks = Object.freeze(marks);
finalizedMarks["physics"] = 86; // throws error in strict mode
console.log(marks); // {physics: 98, maths: 95, chemistry: 91}

From How JavaScript works in browser and node? by Uday Hiwarale

…ck queue/message queue) and the event loop. But V8, event queue and event loop runs on single thread while worker threads are responsible to provide asynchronous I/O operation. That’s why Node.js is said to have as non-blocking event driven asynchronous I/O architecture.

Claps from Monalika Biswas

See more

How JavaScript works in browser and node?

Uday Hiwarale

Demystifying OAuth 2.0 and OpenId Connect (and SAML)

Prashant Ram