Real interview questions from top companies for Web 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.
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 represents the absence of a value, while undefined represents an uninitialized variable or a variable that has not been declared.
What is a promise in JavaScript?
A promise is an object that represents the eventual completion (or failure) of an asynchronous operation, and its resulting value.
What is the difference between synchronous and asynchronous programming?
Synchronous programming executes one task at a time, while asynchronous programming executes multiple tasks concurrently.
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, and can be used to access properties and methods of an 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, while 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 enables strict mode, which helps to prevent common errors and improves code security.
What is a JavaScript framework?
A JavaScript framework is a library that provides a set of pre-built components and tools to help build web applications.
What is the difference between a library and a framework in JavaScript?
A library is a collection of reusable code that provides a specific functionality, while a framework is a more comprehensive library that provides a set of pre-built components and tools to help build web applications.
What is a single-page application (SPA) in JavaScript?
A single-page application is a web application that loads a single HTML page, and dynamically updates the content as the user interacts with the application.
What is a RESTful API in JavaScript?
A RESTful API is an architectural style for designing networked applications, based on the idea of resources, which are identified by URIs, and can be manipulated using a fixed set of operations.
What is a JSON object in JavaScript?
A JSON object is a lightweight data interchange format, that represents data as a collection of key-value pairs.
What is the difference between JSON and JavaScript objects?
JSON is a data interchange format, while JavaScript objects are a data type in the JavaScript language.
What is a web storage in JavaScript?
Web storage is a mechanism for storing data locally within a user's browser, using either local storage or session storage.
What is the difference between local storage and session storage in JavaScript?
Local storage stores data indefinitely, while session storage stores data only for the duration of the session.
What is a cookie in JavaScript?
A cookie is a small text file that is stored on the user's device, and is used to store information about the user's interactions with a website.
What is the difference between a cookie and local storage in JavaScript?
Cookies are sent with every HTTP request, while local storage is only accessible on the client-side.
Write a JavaScript function to reverse a string.
function reverseString(str) {
return str.split('').reverse().join('');
}
Write a JavaScript function to find the maximum value in an array.
Write a JavaScript function to check if a string is a palindrome.
function isPalindrome(str) {
return str === str.split('').reverse().join('');
}
Write a JavaScript function to find the first duplicate in an array.
functionfindFirstDuplicate(arr) {
let seen = newSet();
for (let i = 0; i < arr.length; i++) {
if (seen.has(arr[i])) {
return arr[i];
}
seen.add(arr[i]);
}
returnnull;
}
Write a JavaScript function to find the missing number in an array of consecutive integers.
functionfindMissingNumber(arr) {
let n = arr.length;
let sum = (n * (n + 1)) / 2;
let actualSum = arr.reduce((a, b) => a + b, 0);
return sum - actualSum;
}
Write a JavaScript function to check if a binary tree is balanced.