Intervue featured on Shark TankIntervue featured on Shark Tank - mobile banner

Top javascript interview questions

Real interview questions from top companies for Javascript. Includes theoretical concepts and coding problems.

What is the difference between null and undefined in JavaScript?

What is the purpose of the 'this' keyword in JavaScript?

What is a closure in JavaScript?

What is the difference between a for loop and a while loop in JavaScript?

What is the purpose of the 'let' and 'const' keywords in JavaScript?

What is the difference between an array and an object in JavaScript?

What is the purpose of the 'prototype' property in JavaScript?

What is the difference between a function expression and a function declaration in JavaScript?

What is the purpose of the 'bind' method in JavaScript?

What is the difference between a synchronous and an asynchronous function in JavaScript?

What is the purpose of the 'Promise' object in JavaScript?

What is the difference between a 'for...of' loop and a 'for...in' loop in JavaScript?

What is the purpose of the 'Map' object in JavaScript?

What is the difference between a 'Set' and a 'Map' in JavaScript?

What is the purpose of the 'WeakMap' object in JavaScript?

What is the difference between a 'WeakSet' and a 'Set' in JavaScript?

What is the purpose of the 'Proxy' object in JavaScript?

What is the difference between a 'Proxy' and a 'Decorator' in JavaScript?

What is the purpose of the 'Reflect' object in JavaScript?

What is the difference between a 'Reflect' and a 'Proxy' in JavaScript?

What is the purpose of the 'async/await' syntax in JavaScript?

What is the difference between 'async/await' and 'Promise' in JavaScript?

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 numbers as input and returns the sum of all the numbers in the array.

Write a JavaScript function that takes a string as input and returns the string with all characters reversed.

Write a JavaScript function that takes an object as input and returns a new object with all properties that have a value of null or undefined removed.

Write a JavaScript function that takes a string as input and returns the string with all characters converted to uppercase.

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 a string as input and returns the string with all characters converted to lowercase.

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.

Write a JavaScript function that takes an array of numbers as input and returns the average of all the numbers in the array.