Real interview questions from top companies for Front end 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 were introduced in ES6 to provide more control over variable declarations. Var can be redeclared, let and const cannot.
What is a closure in JavaScript?
A closure is a function that has access to its outer function's scope, even when the outer function has returned. This allows the inner function to use variables from the outer function's scope.
What is the difference between null and undefined in JavaScript?
Null is a primitive value that represents the absence of any object value. 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 handle asynchronous operations. It represents a value that may not be available yet, but will be resolved at some point in the future.
What is the difference between synchronous and asynchronous code in JavaScript?
Synchronous code is executed line by line, one at a time. Asynchronous code is executed in parallel, with multiple tasks being performed at the same time.
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 is used to refer to the current object in a function. It can be used to access properties and methods of the current object.
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 function declaration and a function expression in JavaScript?
A function declaration is a statement that defines a function. A function expression is an expression that defines a function.
What is a JavaScript module?
A JavaScript module is a file that exports specific variables, functions, or classes, and can be imported by other files.
What is the purpose of the 'use strict' directive in JavaScript?
The 'use strict' directive is used to enable strict mode in JavaScript, which helps to catch common coding mistakes and improves the overall security of the code.
Write a JavaScript function that takes a string as input and returns the string with all vowels removed.