DEV Community

Cover image for Top 100 JavaScript Interview Questions and Answers - Part 1
Ankit Kumar for Tech Talks

Posted on • Updated on

Top 100 JavaScript Interview Questions and Answers - Part 1

JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB, and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, single-threaded, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles.

We are going to learn JavaScript, by answering the most frequently asked javascript interview questions.


JavaScript Interview Questions and Answers Series


1
Top 100 JavaScript Interview Questions and Answers - Part 1


2
Top 100 JavaScript Interview Questions and Answers - Part 2


Welcome to the Tech Talks tutorial.

If you guys want to practice for JavaScript Interview on mock video interview, please drop me an email at admin@ankitkumar.dev

Questions

Question 1. What is JavaScript?
Question 2. What are the primitive types in JavaScript?
or
Explain the various JavaScript data types?

Question 3. What's the difference between undefined and null in JavaScript?
Question 4. What are the escape characters in JavaScript?
Question 5. What does the Logical AND (&&) operator do?
Question 6. What does the Logical OR (||) operator do?
Question 7. What is the fastest way to convert a string to a number?
Question 8. What are the different types of Error Name values in JavaScript?
Question 9. Please explain Self Invoking Function
Question 10. Explain difference between function declaration and function expression.
Question 11. What is the DOM?
Question 12. Please explain difference between attributes and property?
Question 13. What are cookies? How will you create, read, and delete a cookie using JavaScript?
Question 14. What is Event Propagation?
Question 15. What is Event Bubbling?
Question 16. What is Event Capturing?
Question 17. Explain difference between event.preventDefault() and event.stopPropagation() methods?
Question 18. How to know if the event.preventDefault() method was used in an element?
Question 19. What is Closure?
Question 20. How many ways can you create an array in JavaScript?
Question 21. How will you empty an array in JavaScript?


If you feel lazy to read more text, you can watch a video covering all questions here

YouTube:


1. What is JavaScript?

** High-level definition of JavaScript is:**

  • JavaScript is a scripting language that enables you to create dynamically updating content, control multimedia, animate images, and pretty much everything else.
  • JavaScript is the most popular web scripting language, used for both client-side and server-side development.
  • Supporting object-oriented programming abilities.
  • JavaScript code can be inserted into HTML pages that can be understood and executed by web browsers.

Top ↑

2. What are the primitive types in JavaScript?

The data types supported by JavaScript are:

  • String
  • Number
  • Boolean
  • Symbol
  • BigInt
  • Null
  • Undefined

Top ↑

3. What's the difference between undefined and null in JavaScript?

undefined is the default value of

  • a variable that has not been assigned a specific value.
  • a function that has no explicit return value. for example
console.log(12);
Enter fullscreen mode Exit fullscreen mode
  • a property that does not exist in an object. The JavaScript engine does this for us the assigning undefined values.
  let _undefinedVar;
  const doNothing = () => {};
  const someObj = {
    ab : “Tech Talks”,
    bc : “With AK”,
    cd : “Subscribe, Link in Bio”,
  };
  console.log(_undefinedVar); // undefined
  console.log(doNothing()); // undefined
  console.log(someObj[“d”]); // undefined

Enter fullscreen mode Exit fullscreen mode

null is

  • a value that represents no value.
  • value that has been explicitly defined to a variable.
  • Example we get a value of null when the fs.readFile method does not throw an error.
fs.readFile('path/to/file', (err,data) => {
     console.log(e); //prints null when no error occurred
     if(e){
       console.log(e);
     }
     console.log(data);
   }
);
Enter fullscreen mode Exit fullscreen mode

comparing null and undefined

  • When comparing null and undefined we get true when using == and false when using ===.
console.log(null == undefined); // logs true
console.log(null === undefined); // logs false
Enter fullscreen mode Exit fullscreen mode

Top ↑

4. What are the Escape Characters in JavaScript?

  • We use escape characters backslash (\) while working with special characters, such as ampersands (&), apostrophes (‘), double quotes (“ ”), and single quotes (‘ ’).
  • Whatever enclosed within the escape characters gets displayed by the JavaScript.
  • Six additional escape characters are also available in JavaScript:
    • \b – Backspace
    • \f – Form feed
    • \n – Newline
    • \r – Carriage return
    • \t – Horizontal tabulator
    • \v – Vertical tabulator
  • These aren’t in anyway executed in the HTML or JS code.
  • These were originally designed for controlling fax machines, teletypes, and typewriters.

Top ↑

5. What does the Logical AND operator do?

  • The && or Logical AND operator finds the first false expression in its operands and returns it.
  • If it does not find any false expression it returns the last expression.
  • It employs short-circuiting to prevent unnecessary work.
   console.log(false && 10 && []); // false
   console.log(" " && true && 10); // 10
Enter fullscreen mode Exit fullscreen mode

Top ↑

6. What does the Logical OR operator do?

  • The || or Logical OR operator finds the first truthy expression in its operands and returns it.
  • This too employs short-circuiting to prevent unnecessary work.
console.log(null || 10 || undefined); //prints 10

function printChannelName(name) {
  var n = name || "Tech Talks With AK";
  console.log(n);
}

printChannelName(); //prints "Tech Talks With AK"
Enter fullscreen mode Exit fullscreen mode

Top ↑

7. What is the fastest way to convert a string to a number?

According to MDN Documentation the Unary Plus (+) is the fastest way of converting a string to a number because it does not perform any operations on the value if it is already a number.

Top ↑

8. What are the different types of Error Name values in JavaScript?

There are 6 Error Name values in JavaScript.

  • Eval Error – Thrown when coming across an error in eval() (Newer JS releases don’t have it)
  • Range Error – Generated when a number outside the specified range is used
  • Reference Error – It comes into play when an undeclared variable is used.
  • Syntax Error – When the incorrect syntax is used, we get this error
  • Type Error – This error is thrown when a value outside the range of data types is tried to be used.
  • URI Error – Generated due to the use of illegal characters

Top ↑

9. Please explain Self Invoking Function.

  • Functions that are automatically invoked are termed as Self Invoking Functions.
  • These are also known as Immediately Invoked Function Expressions and Self Executing Anonymous Functions.
  • The general syntax of a Self Invoking Function is:
// A function is defined and then invoked
(function_name () {
    return ()
}) ();
Enter fullscreen mode Exit fullscreen mode
  • However, if there is a need to automatically execute a function at the place where it is given and not be called again, then anonymous functions can be used. Such functions have no name. So the name.

Top ↑

10. Explain difference between function declaration and function expression.

function declaration and function expression can be differentiated on the basis of

  • Definition
  • Strict Mode
  • Time of Use
  • When to Use

Definition

  • A function declared as a separate statement in the main code flow is termed the function declaration.
  • When a function is created inside an expression or another syntax construct, it is called a function expression.

Strict Mode

  • When a function declaration is within a code block in the Strict mode, it is visible everywhere inside that block but not outside of it.
  • This isn’t the case for a function expression.

Time of Use

  • A function expression is created when the execution reaches it. The function expression is usable from that moment onwards.
  • A function declaration, on the other hand, can be called before the same is defined.

When to Use

  • Function declaration offers better readability and offers more freedom in organizing the code.
  • Function expressions are typically restricted to be used when there is a need for a conditional declaration.

Top ↑

11. What is the DOM?

  • DOM stands for Document Object Model is an interface (API) for HTML and XML documents.
  • When the browser first reads (parses) HTML document it creates a big object, a really big object based on the HTML document this is the DOM.
  • It is a tree-like structure that is modeled from the HTML document.
  • The DOM is used for interacting and modifying the DOM structure or specific Elements or Nodes.
<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <meta http-equiv="X-UA-Compatible" content="ie=edge">
   <title>Document Object Model</title>
</head>
<body>
   <div>
    <p>
        <span></span>
    </p>
    <label></label>
    <input>   // other elements
   </div>
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

The graphical representation of the DOM of the code above looks like

Alt text

The document object in JavaScript represents the DOM.

It provides us many methods that we can use to selecting elements to update element contents and many more.

  • JavaScript can change all the HTML elements in the page
  • JavaScript can change all the HTML attributes in the page
  • JavaScript can change all the CSS styles in the page
  • JavaScript can remove existing HTML elements and attributes
  • JavaScript can add new HTML elements and attributes
  • JavaScript can react to all existing HTML events in the page
  • JavaScript can create new HTML events in the page

Top ↑

12. Please explain difference between attributes and property?

  • JS DOM objects have properties that are like instance variables for particular elements.
  • A property can be of various data types.
  • Properties are accessible by interacting with the object in Vanilla JS or using jQuery’s prop() method.

  • Rather than in the DOM, attributes are in the HTML.

  • They are similar to properties but not as capable.

  • It’s recommended to work with properties rather than attributes if the former is available. Unlike a property, an attribute is of the string data type

Top ↑

13. What are cookies? How will you create, read, and delete a cookie using JavaScript?

  • A cookie is simply data, usually small, sent from a website and stored on the user’s computer by the web browser used to access the website.
  • It is a reliable way for websites to remember stateful information and record the user's browsing activity.

Creating a Cookie:

The most basic way of creating a cookie using JS is to assign a string value to the document.

document.cookie = “key1 = value1; key2 = value2; … ; keyN= valueN; expires = date”;

Enter fullscreen mode Exit fullscreen mode

Reading a Cookie:

  • Reading a cookie using JS is as simple as creating.
  • Cookie object is the cookie, use this string whenever you wish to access the cookie.
  • The document.cookie string keeps a list of name = value pairs, where a semicolon separates each pair.
  • The name represents a cookie's name, and the value represents the respective cookie’s string value.
  • For breaking the string into key and value, you can use the split() method.

Deleting a Cookie:

  • Simply setting the expiration date (expires) to a time that’s already passed.
  • Some web browsers don’t let you delete a cookie unless you don’t specify the cookie's path.
  • Hence, defining the cookie path is important to ensure that the right cookie is deleted.assign a string value to the document.

Top ↑

14. What is Event Propagation?

  • When an event occurs on a DOM element, that event does not entirely occur on that just one element.
  • In the Bubbling Phase, the event bubbles up or it goes to its parent, to its grandparents, to its grandparent's parent until it reaches all the way to the window while in the Capturing Phase the event starts from the window down to the element that triggered the event or the event.target.
  • This process is called Event Propagation.
  • It has 3 phases.
    • Capturing Phase – The event starts from the window then goes down to every element until it reaches the target element.
    • Target Phase – The event has reached the target element.
    • Bubbling Phase – The event bubbles up from the target element then goes up every element until it reaches the window.

Top ↑

15. What is Event Bubbling?

When an event occurs on a DOM element, that event does not entirely occur on that just one element.

In the Bubbling Phase, the event bubbles up or it goes to its parent, to its grandparents, to its grandparent's parent until it reaches all the way to the window.

If we have an example markup like this

<div class="grandparent">
    <div class="parent">
          <div class="child">1</div>
    </div>
</div>

Enter fullscreen mode Exit fullscreen mode

And javascript code.

function addEvent(el, event, callback, isCapture = false) {
       if (!el || !event || !callback || typeof callback !== 'function') return;
       if (typeof el === 'string') {
        el = document.querySelector(el);
       }; 
       el.addEventListener(event, callback, isCapture);
}
addEvent(document, 'DOMContentLoaded', () => {

       const child = document.querySelector('.child');
       const parent = document.querySelector('.parent');
       const grandparent = document.querySelector('.grandparent');

     addEvent(child, 'click', function (e) {
    console.log('child');
       });
      addEvent(parent, 'click', function (e) {
    console.log('parent');
      });
     addEvent(grandparent, 'click', function (e) {
    console.log('grandparent');
     });
     addEvent(document, 'click', function (e) {
    console.log('document');
     });
     addEvent('html', 'click', function (e) {
    console.log('html');
     });
     addEvent(window, 'click', function (e) {
    console.log('window');
     });
});
Enter fullscreen mode Exit fullscreen mode
  • The addEventListener() method has a third optional parameter useCapture with a default value of false the event will occur in the Bubbling phase.
  • If useCapture is true, the event will occur in the Capturing Phase.
  • If we click on the child element it logs child, parent, grandparent, html, document and window respectively on the console.
  • This whole event is Event Bubbling.

Top ↑

16. What is Event Capturing?

When an event occurs on a DOM element, that event does not entirely occur on that just one element.
In Capturing Phase, the event starts from the window all the way down to the element that triggered the event.

If we have an example markup like this

<div class="grandparent">
    <div class="parent">
          <div class="child">1</div>
    </div>
</div>
Enter fullscreen mode Exit fullscreen mode

And javascript code is

function addEvent(el, event, callback, isCapture = false) {
     if (!el || !event || !callback || typeof callback !== 'function') return;
     if (typeof el === 'string') {
    el = document.querySelector(el);
     };
     el.addEventListener(event, callback, isCapture);
}
addEvent(document, 'DOMContentLoaded', () => {
     const child = document.querySelector('.child');
     const parent = document.querySelector('.parent');
     const grandparent = document.querySelector('.grandparent');

     addEvent(child, 'click', function (e) {
    console.log('child');
     }, true);
     addEvent(parent, 'click', function (e) {
    console.log('parent');
     }, true);
  addEvent(grandparent, 'click', function (e) {
    console.log('grandparent');
  }, true);

  addEvent(document, 'click', function (e) {
    console.log('document');
  }, true);

  addEvent('html', 'click', function (e) {
    console.log('html');
  }, true)

  addEvent(window, 'click', function (e) {
    console.log('window');
  }, true)

});
Enter fullscreen mode Exit fullscreen mode
  • The addEventListener() method has a third optional parameter useCapture with a default value of false the event will occur in the Bubbling phase.
  • If useCapture is true, the event will occur in the Capturing Phase.
  • If we click on the child element it logs window, document, html, grandparent, parent and child respectively on the console.
  • This is Event Capturing

Top ↑

17. Explain difference between event.preventDefault() and event.stopPropagation() methods?

  • The event.preventDefault() method prevents the default behavior of an element.
  • If used in a form element it prevents it from submitting.
  • If used in an anchor element it prevents it from navigating.
  • If used in a context menu it prevents it from showing or displaying.

  • While the event.stopPropagation() method stops the propagation of an event.

  • It stops the event from occurring in the bubbling or capturing phase.

Top ↑

18. How to know if the event.preventDefault() method was used in an element?

  • We can use the event.defaultPrevented property in the event object.
  • It returns a boolean indicating if the event.preventDefault() was called in a particular element.

Top ↑

19. What is Closure?

  • Closures are created whenever a variable, defined outside the current scope, is accessed from within some inner scope.
  • It gives us access to an outer function’s scope from an inner function.
  • In other words, a closure is a locally declared variable that is related to a function and stays in the memory when the related function has returned.
  • The closure contains all local variables that were in-scope at the time of the closure creation.

  • In JavaScript, closures are created every time a function is created.
    To use a closure, simply define a function inside another function and expose it.

Let's look at an example

  • Without Closure
function greet(message) {
  console.log(message);
}
function greeter(name, number) {
  return name + " says Hey!! He has " + age + " subscribers";
}
var message = greeter("Tech Talks", 1026);
greet(message);
Enter fullscreen mode Exit fullscreen mode
  • With Closure
function greeter(name, age) {
  var message = name + " says Hey!! He has " + age + " subscribers";
  return function greet() {
    console.log(message);
  };
}
// Generate the closure
var TechTalksGreeter = greeter("Tech Talks", 1026);
// Use the closure
TechTalksGreeter();
Enter fullscreen mode Exit fullscreen mode

Top ↑

20. How many ways can you create an array in JavaScript?

There are three different ways of creating an array in JavaScript, namely:

  • By creating an instance of an array:
var someArray = new Array();
Enter fullscreen mode Exit fullscreen mode
  • By array constructor:
var someArray = new Array(‘value1’, ‘value2’,…, ‘valueN’)
Enter fullscreen mode Exit fullscreen mode
  • By using an array literal:
var someArray = [value1, value2,…., valueN];
Enter fullscreen mode Exit fullscreen mode

Top ↑

21. How will you empty an array in JavaScript?

There are four ways to empty an array in JavaScript

  • By assigning an empty array:
var array1 = [1, 22, 24, 46];
array1 = [ ];
Enter fullscreen mode Exit fullscreen mode
  • By assigning array length to 0:
var array1 = [1, 22, 24, 46];
array1.length=0;
Enter fullscreen mode Exit fullscreen mode
  • By popping the elements of the array:
var array1 = [1, 22, 24, 46];
while(array1.length > 0) {
array1.pop();
}
Enter fullscreen mode Exit fullscreen mode
  • By using the splice array function:
var array1 = [1, 22, 24, 46];
array1.splice(0, array1.length)
Enter fullscreen mode Exit fullscreen mode

Top ↑


Originally posted on AnkitKumar.Dev

If you guys want to practice for JavaScript Interview on mock video interview, please drop me an email at admin@ankitkumar.dev


Further Reading


Also, to be notified about my new articles and stories:

Subscribe to my YouTube Channel

Follow me on Medium, Github, and Twitter.

You can find me on LinkedIn as well.

I am quite active on Dev Community as well and write small topics over there.

Cheers!!! Happy coding!!

Top comments (6)

Collapse
 
alimammiya profile image
Alimam Miya

Waiting for the Part2

Collapse
 
architectak profile image
Ankit Kumar

It will be up soon buddy 💕

Collapse
 
architectak profile image
Ankit Kumar

Part 2 is up now ❤️❤️

Collapse
 
gbegerow profile image
Georg Begerow

There is at least one more method to create an array in modern JS, using Array.from with an array like object:

Array.from( {'0':'a', '1':'b', '2':'c', 'length':3 } )

Collapse
 
architectak profile image
Ankit Kumar

Thanks Georg !! I was not aware of it until now. Thanks for sharing this ❤️❤️

Collapse
 
alimammiya profile image
Alimam Miya

We have similar content I think to like your visitors.
Kindly visit this - JavaScript Interview Questions and Answers