Over the years, JavaScript has become one of the most influential programming languages in the software industry. Due to this, there are a number of job applications and applicants in this industry. Due to this, we decided to come up with the actual Advanced JavaScript Interview Questions, questions that actually matter while you create codes for your company. Have a read on these questions to cement your knowledge in JavaScript and get that dream job. But, over time, we have found out that many developers lack a basic understanding of JavaScript such as working on objects and working on obsolete patterns like deeply layered inheritance hierarchies.
We have created this section for your convenience from where you can navigate to all the sections of the article. All you need to just click or tap on the desired topic or the section, and it will land you there.
Here in this article, we will be listing frequently asked Advanced JavaScript Interview Questions and Answers with the belief that they will be helpful for you to gain higher marks. Also, to let you know that this article has been written under the guidance of industry professionals and covered all the current competencies.
The "use strict" is not a statement, rather a literal expression that is vital to your code as it presents a way for voluntarily enforcing a stricter parsing and error handling process on your JavaScript code files or functions during runtime. Most importantly, it just makes your code very easy to manage.
Asynchronous programming means that the program engine runs in an event loop. Only when blocking operation is required, a request is started, and the code runs without blocking the result.
This is vital in JavaScript because it is a very natural fit for the user interface code and very efficient performance-wise on the server end.
The WeakMap object is basically a collection of key or value pairs where the keys are weakly referenced. It provides a way for extending objects from the outside without meddling into the garbage collection.
The main difference between these two is when you are using inheritance. It is much more complicated using inheritance in ES5, while the ES6 version is simple and easy to remember.
class Person {
constructor(name) {
this.name = name;
}
}
function Person(name) {
this.name = name;
}
In JavaScript, generators are those functions which can be exited and re-entered later on. Their variable bindings shall be saved across the re-entrances. They are written using the function* syntax.
JavaScript is a high-level, multi-paradigm programming language which conforms to the ECMAScript specification. Read our list of advanced javascript interview questions to get a deep understanding of this language.
One of the drawbacks of creating a true private method in JavaScript is that they are highly memory consuming. A new copy for each method is created for every instance.
var Employee = function (name, company, salary) {
this.name = name || "";
this.company = company || "";
this.salary = salary || 5000;
var increaseSlary = function () {
this.salary = this.salary + 1000;
};
this.dispalyIncreasedSalary = function() {
increaseSalary();
console.log(this.salary);
};
};
var emp1 = new Employee("Amar","Mars",3000);
Here, while creating each variable, each instance makes a new copy of emp1, emp2, and emp3 in IncreaseSalary. Thus, making it inefficient for your server end.
In ES6, Temporal Dead Zone is a behavior occurring in JavaScript while declaring a variable with the let and const keywords. The period between entering the scope and being declared is the one when these keywords cannot be accessed and enter the Temporal Dead Zone.
console.log(foo); // undefined
var foo = 123;
console.log(foo); // Error
let foo = 123;
If you consider that the const and let are also in place, why can't they be accessible before they are declared? The answer is within the idea of the Temporal Dead Zone.
Variables declared with let and const are stored and placed in the Temporal Dead Zone. Therefore, they cannot be accessible before the declaration is executed during the step-by-step process of scripting.
Temporal Dead Zone is the duration that let and const declarations are not accessible. Declarations of the let as well as const declarations are not accessible.
Temporal Dead Zone is activated when code execution is entered into the block that includes let or const declarations. It continues until the lets or const declaration. It continues until the declaration is executed.
Interestingly enough, it is both. Primitive types like number, string, etc. are passed by value, but objects can be passed-by-value (when we consider a variable holding an object is a reference to the object) and also as a pass-by-reference (when we consider variable to the object is holding the object itself).
To ensure that an object is deep-frozen, you will have to create a recursive function for freezing each property of type object: Without deep freeze.
let person = {
name: "Ankit",
profession: {
name: "content writer"
}
};
Object.freeze(person);
person.profession.name = "content writer";
console.log(person);Output { name: 'Ankit', profession: { name: 'content writer' } }
Now, using Deep Freeze for the object,
function deepFreeze(object) {
let propNames = Object.getOwnPropertyNames(object);
for (let name of propNames) {
let value = object[name];
object[name] = value && typeof value === "object" ?
deepFreeze(value) : value;
}
return Object.freeze(object);
}
let person = {
name: "Ankit",
profession: {
name: "content writer"
}
};
deepFreeze(person);
person.profession.name = "content writer";
In JavaScript, this operator always refers to the object, which is invoking the function being executed. So, if the function is currently being used as an event handler, this operator will refer to the node which fired the event.
Here's the code to calculate the Fibonacci series in JS code:
var the_fibonacci_series = function (n)
{
if (n===1)
{
return [0, 1];
}
else
{
var a = the_fibonacci_series(n - 1);
a.push(a[a.length - 1] + a[a.length - 2]);
return a;
}
};console.log(the_fibonacci_series(9));
JavaScript is a dynamic language and at any time we can add new properties to an object and can be shared among all the instances. Hence to add new properties and implement inheritance prototypes are used.
function Candidate() {
this.name = 'Arun';
this.role = 'QA';
}
var candidateObj1 = new Candidate();
candidateObj1.salary = 10000;
console.log(candidateObj1.salary); // 10000
var candidateObj2 = new Candidate();
console.log(candidateObj2.salary); // undefined
When a JavaScript developer tries to execute multiple asynchronous operations then sometimes issues arise and it is termed callback hell.
Note: If you are a frontend developer with React.JS then these Top 20 React Questions will help you to crack your interviews easily.
JavaScript gives an easy way of avoiding callback hell. This is performed by event queue and promises.
getDataFromFunction1(function(x){
getDataFromFunction2(x, function(y){
getDataFromFunction3(y, function(z){
...
});
});
});
A JavaScript default behavior that moves the declaration of variables and functions at the top of the current scope is called JavaScript hosting. You can use hosting for declaration, not for initialization.
OR
Hoisting in JavaScript is a method where a function or variable may be utilized prior to declaration.
console.log(x); // undefined
var x = 1;
let x = 20, y = 10;
let result = add(x,y);
console.log(result);
function add(a, b) {
return a + b;
}
With JavaScript users can declare variables using three keywords: let, var as well as const. The words var let and const can be a bit confusing. We will go over all three variables using examples. The difference between the variables var, let as well as const is described below in different ways.
NOTE: If you would like to learn more about the differences between Let, Var, and Const, you should visit this site.
An object that shows the eventual completion or failure of asynchronous options along with its resultant value is called a promise in JavaScript. The possible three states of a promise are pending, fulfilled, or rejected. It allows handling multiple asynchronous operations in JavaScript.
We have a list of JavaScript Multiple Choice Questions. It's really helpful to crack your interviews easily.
A Promise has 3 states:
let getDataFromAPI = function(params) {
return new Promise((resolve, reject) => {
const data = {
name: "Umesh",
phone: "9971083635"
}
if(data) {
resolve(data); // get data from API
} else {
reject('get error from API Call');
}
});
}
getDataFromAPI().then( async function (result) {
console.log(result);
}).catch(err => {
console.log(err);
});
callApi().then(function(result) {
return callApi2() ;
}).then(function(result2) {
return callApi3();
}).then(function(result3) {
// do work
}).catch(function(error) {
//handle any error that may occur before this point
});
Promise.all([callApi, callApi2, callApi3]).then((values) => {
console.log(values);
});
Promise.allSettled([callApi, callApi2, callApi3]).then((values) => {
console.log(values);
});
A function passed as an argument to another function is called a callback function and this technique allows a function to call another function. A callback function gets executed after the execution of another function gets finished.
function isOdd(number) {
return number % 2 != 0;
}
function filter(numbers, fn) {
let results = [];
for (const number of numbers) {
if (fn(number)) {
results.push(number);
}
}
return results;
}
let numbers = [1, 2, 4, 7, 3, 5, 6];
console.log(filter(numbers, isOdd));
Answer // [ 1, 7, 3, 5 ]
The benefit of using this feature is that you can wait for the result of a previous method call and then execute another method call.
1) Using the arrow function, you can get the same results as normal functions by writing a few lines of code as shown in the example below.
//Example of Regular function:
var add = function(c, d) { return c + d;};
// Example of Arrow function
let add = (c, d) => { return c + d}; //or
let add = (c, d) => c + d;
2) In normal functions, argument binding is possible and other hand arrow functions have no argument binding.
3) Regular functions are construable but arrow functions are not constructible.
There are two methods to remove duplicate content from an array such as using a temporary array and a separate index.
const getUnique = (arr) => {
let uniqueArr = [];
for(let i of arr) {
if(uniqueArr.indexOf(i) === -1) {
uniqueArr.push(i);
}
}
console.log(uniqueArr);
}
const array = [1, 2, 3, 2, 3,4,5];
getUnique(array);
[ 1, 2, 3, 4, 5 ]
let chars = ['A', 'B', 'A', 'C', 'B'];
let uniqueChars = [...new Set(chars)];
console.log(uniqueChars);
[ 'A', 'B', 'C' ]
A function that can access its parent scope, even after the parent function has closed is called JavaScript closure.
const parentMethod = () => {
const title = 'Advanced JavaScript Questions';
const innerMethod = () => {
console.log(title);
}
innerMethod();
}
parentMethod();
In other words, a closure gives you access to an outer function's scope from an inner function.
Note: We have a list of all interview questions related to ES6. These are really helpful in cracking your interviews.
Using the rest operator we can call a function using any number of arguments and can be accessed as an array. It allows the destruction of an array of objects.
Example of Rest operator in JavaScript
function sum(...theArgs) {
return theArgs.reduce((last, now) => {
return last + now;
});
}
console.log(sum(1, 2, 3, 4,5)); // expected output 15
Speare operator is just the reverse of rest operators and allows to expand an iterable such as an array expression can be expanded using by dividing the array into individual elements.
For example
let array 1 = [3,4];
let array 2 = [5,6,7];
array= [...array 1,...array 2];
console.log(array); // [ 3, 4, 5,6,7 ]
They both return a new array.
The map function returns the same number of elements as present in the original array but the value of elements will be transformed in some way.
const items = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const result = items.map((item) => {
return item*item;
})
console.log(result);
// [ 1, 4, 9, 16, 25, 36, 49, 64, 81, 100 ]
On the other hand, the filter function can return fewer or more elements than the original array but the value of the original elements will not change.
const items = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const result = items.filter((item) => {
return item > 5;
})
console.log(result);
// [ 6, 7, 8, 9, 10 ]
let x = 10;
var x = 20;
console.log(x);
It gives an syntax error like SyntaxError: Identifier 'x' has already been declared.
const res = {};
res.x = 5;
console.log(res);
{ x: 5 }
const string = "JavaScript Interview Questions";
const substring = "Questions";
console.log(string.includes(substring)); Answer // true
const string = "JavaScript Interview Questions";
const substring = "questions";
console.log(string.includes(substring)); Answer // false
It is an advanced technique of working with functions that can accept multiple arguments. It will transform this function into a series of functions, where every function will accept one argument:
Non-curried version //
const sum = (a, b, c)=>{
return a+ b + c
}
console.log(sum(2, 3, 5)) // 10
Curried version //
const sumCurry =(a) => {
return (b)=>{
return (c)=>{
return a+b+c
}
}
}
console.log(sumCurry(2)(3)(5)) // 10
const items = [40, 10, 11, 15, 25, 21, 5];
console.log(Math.max(...items)); // 40
console.log(Math.min(...items)); // 5
let x = null;
console.log(Math.round(x));
0
const displayTable = (number) => {
const numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const countingArray = numbers.map((item) => {
console.log(item*number);
});
}
displayTable(2);
const displayText = () => {
console.log("A");
setTimeout(() => {
console.log("B");
}, 0)
console.log("C");
}
displayText();
A
C
B
const res = [];
res.x = 5;
res.x = 10;
console.log(res);
[ x: 10 ]
const list = [1, 2, 3, 4, 5, 6];
const list2 = [5, 6, 7, 8, 9, 10];
console.log([...list, ...list2]);
[ 1, 2, 3, 4, 5, 6, 5, 6, 7, 8, 9, 10 ]
const list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const result = list.find((item) => {
return item > 3;
})
console.log(result);
4
The primary difference between the == or === operators in JavaScript is that the == operator converts the operands before comparing, while the === operator compares both the data types and the values.
When we want to compare two values, one string, and another number, it will convert the string to the number type, then compare the results.
let a = 10;
let b = '10';
console.log(a == b); // true
let a = 10;
let b = '10';
console.log(a === b); // false
These methods are not part of JavaScript specification. These methods are provided by most environments that have an internal scheduler.
setTimeout(() => alert("JavaScript Interview Questions"), 3000); // setTimeout
setInterval(() => alert("JavaScript Interview Questions"), 3000); // setInterval
for(var x = 1; x <= 5; x++) {
setTimeout(() => console.log(x), 0);
}
6
6
6
6
6
The rest operator lets us call any function with any number of arguments and then access the excess arguments as an array. You can also use the rest operator to destroy objects or arrays.
Spread operator (...) lets you expand an iterable-like array into its individual elements.
1. The following example shows two arrays that are separated by the spread operator (...). They're combined into one using this method. The elements of the merged array are in the same order as they were merged.
var array1 = [10, 20, 30, 40, 50];
var array2 = [60, 70, 80, 90, 100];
var array3 = [...array1, ...array2];
console.log(array3);
[ 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 ]
2. This example shows how to add an element to an iterable. A given array must be defined. We use the spread operator, which spreads all the values of iterables and adds the elements to the array in the order we choose.
const array1 = [10, 20, 30, 40, 50, 60];
const array2 = [...array1, 5, 55];
console.log(array2);
[ 10, 20, 30, 40, 50, 60, 5, 55 ]
3. This example will show how to copy objects with the spread operator. Spread operator (...). gives obj2 all the properties of the original obj1. Curly brackets are required to indicate that an object is being copied, or else an error will be raised.
const array1 = [10, 20, 30, 40, 50, 60];
const array2 = [ ...array1 ];
console.log(array2);
[ 10, 20, 30, 40, 50, 60 ]
The main differences between arrow function and normal function are based on some parameters like.
// Function declaration
function printHello(name) {
return `Hey ${name}`;
}
NOTE: If you want to read more about Regular vs Arrow functions then you can visit here.
// Function expression
const printHello = function(name) {
return `Hey ${name}`;
}
const printHello = (name) => `Hey ${name}`;