Top JavaScript Interview Questions
Top JavaScript Interview Questions
1. What is JavaScript?
'5' == 5 // true
'5' === 5 // false
3. Datatypes of JavaScript?
● String
● Number
● Boolean
● Undefined
● Null
● BigInt (as of ES2020)
● Symbol (introduced in ES6)
● Object
● Array
Answer: Primitive types are the simplest form of data types and are
immutable (cannot be changed). They represent a single value and are
stored directly on the stack.
Answer:
Answer:
7. What is a Loop?
Answer:
Answer:
By: Waleed Mousa
● For..in: Iterates over enumerable properties of an object,
typically used for objects.
● For..of: Iterates over iterable objects (like arrays, strings,
etc.), introduced in ES6.
Answer:
● Named Functions: Have a name and can be called using that name.
● Anonymous Functions: Have no name and are typically used as
arguments to other functions.
● Immediately Invoked Function Expressions (IIFE): Runs as soon as
it's defined.
● Arrow Functions: Introduced in ES6, they have a concise syntax and
do not bind their own this.
function outer() {
Answer: Arrow functions don’t have their own this. Instead, they
inherit this from the enclosing function or context. This behavior
makes arrow functions particularly suitable for callbacks and event
handlers, especially within frameworks and libraries where preserving
the context of this is important.
23. What is the event loop and the call stack in JavaScript?
Answer: The event loop is the continuous process that the JavaScript
engine uses to monitor the call stack and the callback queue. If the
call stack is empty, it takes the first event from the queue and pushes
it to the call stack to be executed. The call stack is a data structure
that tracks the execution of functions in a program. Functions get
added (pushed) to the stack as they are called and removed (popped) as
they complete.
Answer: You can create a class using the class keyword. Classes are
used to create objects and encapsulate behavior.
class Person {
constructor(name) {
this.name = name;
Answer: Arrow functions are a new ES6 syntax for writing JavaScript
functions. They are more concise and do not have their own bindings to
this, arguments, super, or new.target.
class Animal {
// ...
}
class Dog extends Animal {
// ...
}
if ('property' in object) {
// ...
}
if (object.hasOwnProperty('property')) {
// ...
}
Answer: Timers like setTimeout and setInterval are used to execute code
after a set time interval.
setTimeout(() => {
console.log('Runs after 2 seconds');
}, 2000);
try {
// code that may throw an error
Answer: JavaScript modules allow separating code into multiple files and
managing dependencies through export and import statements.
Answer: Generators are special functions that can pause and resume
their execution, allowing other code to run in between.
function* generator() {
yield 'value';
}
Answer: Tail call optimization reduces the call stack size for
recursive functions by reusing the current stack frame if a function's
return value is the same as the last call.
Answer: Webpack is a module bundler and build tool that helps manage
dependencies, transpile code, and optimize assets for better
performance.
Answer: You can use recursion or the flat method with an appropriate
depth argument.
Answer: The bind method creates a new function that, when called, has
its this value set to the provided value.
Answer: The DOM is a representation of the web page. The Virtual DOM is
a concept used in some modern UI libraries to efficiently update the DOM
by minimizing direct manipulations.