Real interview questions from top companies for Full stack developer. Includes theoretical concepts and coding problems.
What is the difference between var, let, and const in JavaScript?
Var is function scoped, let and const are block scoped. Let and const are used for variable declaration in modern JavaScript.
What is a closure in JavaScript?
A closure is a function that has access to its outer function scope, even when the outer function has returned.
What is the difference between null and undefined in JavaScript?
Null is a primitive value that represents the absence of any object value, while undefined is a primitive value that represents an uninitialized variable or a non-existent property.
What is a promise in JavaScript?
A promise is a result object that is used to manage asynchronous operations, it can be in one of these states: pending, fulfilled or rejected.
What is the difference between synchronous and asynchronous programming?
Synchronous programming is a sequential execution of code, while asynchronous programming is a non-blocking execution of code that allows other tasks to be performed while waiting for a task to complete.
What is a callback function in JavaScript?
A callback function is a function that is passed as an argument to another function, and is executed after a specific operation has been completed.
What is the purpose of the 'this' keyword in JavaScript?
The 'this' keyword refers to the current execution context of a function, it can refer to the global object, a function, an object or a constructor.
What is a higher-order function in JavaScript?
A higher-order function is a function that takes another function as an argument or returns a function as a result.
What is the difference between a class and an object in JavaScript?
A class is a blueprint for creating objects, while an object is an instance of a class.
What is inheritance in JavaScript?
Inheritance is a mechanism that allows one class to inherit the properties and methods of another class.
What is polymorphism in JavaScript?
Polymorphism is the ability of an object to take on multiple forms, depending on the context in which it is used.
What is encapsulation in JavaScript?
Encapsulation is the idea of bundling data and methods that operate on that data within a single unit, making it harder for other parts of the program to access or modify the data directly.
What is abstraction in JavaScript?
Abstraction is the practice of showing only the necessary information to the outside world while hiding the internal details.
What is the difference between a for loop and a while loop in JavaScript?
A for loop is used to iterate over a block of code for a specified number of times, while a while loop is used to iterate over a block of code as long as a certain condition is true.
What is the purpose of the 'break' and 'continue' statements in JavaScript?
The 'break' statement is used to exit a loop or switch statement, while the 'continue' statement is used to skip the rest of the code in the current iteration and move on to the next iteration.
What is the difference between the '==' and '===' operators in JavaScript?
The '==' operator checks for value equality, while the '===' operator checks for both value and type equality.
What is the purpose of the 'typeof' operator in JavaScript?
The 'typeof' operator is used to determine the data type of a variable or expression.
What is the difference between the 'delete' and 'undefined' operators in JavaScript?
The 'delete' operator is used to remove a property from an object, while the 'undefined' operator is used to set a variable or property to undefined.
What is the purpose of the 'in' operator in JavaScript?
The 'in' operator is used to check if a property exists in an object.
What is the difference between the 'for...in' and 'for...of' loops in JavaScript?
The 'for...in' loop is used to iterate over the properties of an object, while the 'for...of' loop is used to iterate over the values of an iterable object.
Write a function that takes a string as input and returns the string with all vowels removed.