Real interview questions from top companies for Javascript. Includes theoretical concepts and coding problems.
What is the difference between null and undefined in JavaScript?
Null and undefined are both primitive values in JavaScript, but they have different meanings. Null represents the absence of a value, while undefined represents an uninitialized variable or a variable that has not been declared.
What is the purpose of the 'this' keyword in JavaScript?
The 'this' keyword in JavaScript refers to the current execution context of a function. It can be used to access the properties and methods of an object, or to refer to the global object in a non-strict mode.
What is a closure in JavaScript?
A closure in JavaScript is a function that has access to its own scope and the scope of its outer functions, even when the outer functions have returned. This allows the inner function to use variables from the outer functions, even after the outer functions have finished executing.
What is the difference between a for loop and a while loop in JavaScript?
A for loop in JavaScript 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 'let' and 'const' keywords in JavaScript?
The 'let' and 'const' keywords in JavaScript are used to declare variables. 'Let' is used to declare a variable that can be reassigned, while 'const' is used to declare a constant that cannot be reassigned.
What is the difference between an array and an object in JavaScript?
An array in JavaScript is a collection of values of any type, while an object is a collection of key-value pairs. Arrays are used to store a list of values, while objects are used to store a collection of properties and methods.
What is the purpose of the 'prototype' property in JavaScript?
The 'prototype' property in JavaScript is used to create a new object that inherits the properties and methods of an existing object. This allows for the creation of a hierarchy of objects, where each object inherits the properties and methods of its parent object.
What is the difference between a function expression and a function declaration in JavaScript?
A function expression in JavaScript is a function that is defined as an expression, while a function declaration is a function that is defined using the 'function' keyword. Function expressions are used to create functions that can be assigned to variables or passed as arguments to other functions, while function declarations are used to create functions that can be called by their name.
What is the purpose of the 'bind' method in JavaScript?
The 'bind' method in JavaScript is used to create a new function that has the same behavior as an existing function, but with a different 'this' context. This allows for the creation of a function that can be called with a specific 'this' context, without having to use the 'apply' or 'call' methods.
What is the difference between a synchronous and an asynchronous function in JavaScript?
A synchronous function in JavaScript is a function that executes immediately and returns a value, while an asynchronous function is a function that executes at a later time and returns a value through a callback or a promise.
What is the purpose of the 'Promise' object in JavaScript?
The 'Promise' object in JavaScript is used to represent a value that may not be available yet, but will be available at some point in the future. Promises are used to handle asynchronous operations, such as network requests or database queries, and provide a way to handle the result of the operation when it becomes available.
What is the difference between a 'for...of' loop and a 'for...in' loop in JavaScript?
A 'for...of' loop in JavaScript is used to iterate over the values of an iterable, such as an array or a string, while a 'for...in' loop is used to iterate over the properties of an object.
What is the purpose of the 'Map' object in JavaScript?
The 'Map' object in JavaScript is used to store a collection of key-value pairs, where each key is unique and maps to a specific value. Maps are used to store data that needs to be looked up by a key, such as a cache or a dictionary.
What is the difference between a 'Set' and a 'Map' in JavaScript?
A 'Set' in JavaScript is a collection of unique values, while a 'Map' is a collection of key-value pairs. Sets are used to store a collection of values without duplicates, while maps are used to store a collection of key-value pairs.
What is the purpose of the 'WeakMap' object in JavaScript?
The 'WeakMap' object in JavaScript is used to store a collection of key-value pairs, where each key is a weak reference to an object. WeakMaps are used to store data that needs to be looked up by a key, but does not need to be retained in memory if the key is no longer referenced.
What is the difference between a 'WeakSet' and a 'Set' in JavaScript?
A 'WeakSet' in JavaScript is a collection of weak references to objects, while a 'Set' is a collection of unique values. WeakSets are used to store a collection of objects that do not need to be retained in memory if they are no longer referenced, while sets are used to store a collection of unique values.
What is the purpose of the 'Proxy' object in JavaScript?
The 'Proxy' object in JavaScript is used to create a proxy for an object, which allows for the interception and modification of the object's behavior. Proxies are used to implement features such as logging, caching, and access control.
What is the difference between a 'Proxy' and a 'Decorator' in JavaScript?
A 'Proxy' in JavaScript is an object that intercepts and modifies the behavior of another object, while a 'Decorator' is a function that wraps another function and modifies its behavior. Proxies are used to implement features such as logging and caching, while decorators are used to implement features such as authentication and authorization.
What is the purpose of the 'Reflect' object in JavaScript?
The 'Reflect' object in JavaScript is used to provide a way to inspect and modify the behavior of objects, such as getting and setting properties, and invoking methods. Reflect is used to implement features such as logging and caching.
What is the difference between a 'Reflect' and a 'Proxy' in JavaScript?
A 'Reflect' in JavaScript is an object that provides a way to inspect and modify the behavior of objects, while a 'Proxy' is an object that intercepts and modifies the behavior of another object. Reflect is used to implement features such as logging and caching, while proxies are used to implement features such as access control and authentication.
What is the purpose of the 'async/await' syntax in JavaScript?
The 'async/await' syntax in JavaScript is used to write asynchronous code that is easier to read and maintain. Async/await allows for the creation of asynchronous functions that can be written using a synchronous syntax, making it easier to handle asynchronous operations such as network requests and database queries.
What is the difference between 'async/await' and 'Promise' in JavaScript?
Async/await in JavaScript is a syntax for writing asynchronous code, while Promise is an object that represents a value that may not be available yet. Async/await is used to write asynchronous code that is easier to read and maintain, while Promise is used to handle asynchronous operations and provide a way to handle the result of the operation when it becomes available.
Write a JavaScript function that takes a string as input and returns the string with all vowels removed.
Write a JavaScript function that takes an array of objects as input and returns a new array with all objects that have a property 'id' with a value of 1 removed.
Write a JavaScript function that takes an object as input and returns a new object with all properties that have a value of type 'string' converted to uppercase.