Tip 1: Revise the fundamentals of JavaScript.
Tip 2: Always strive to learn concepts in depth.
Tip 3: Be well-prepared to discuss everything mentioned in your resume.
Tip 1: Keep your resume to one page.
Tip 2: Highlight your impact and achievements in your resume.
I scheduled the interview in the afternoon. The interviewer was okay.
console.log(Number('name')===Number('name'));
console.log(NaN === NaN);
console.log(undefined === undefined);
console.log(null === null);
If you know about how JS work internally, you can easily solve. I solved 2 question but others I predicted wrong.
Explain about Reduce method. Also write the polyfill of reduce method. (Learn)
What is prototype and prototype chaining? Follow up - Where this prototype chaining ends? (Learn)
I explain properly but was unable to tell where it will end in DOM.
Write a closure example and explain its real life use cases in React.js. (Learn)
function Outer() {
this.count = 1;
return function () {
this.count++;
console.log(this.count);
};
}
const obj = new Outer();
const fn = obj();
fn();

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which traversal uses a queue as its primary data structure?