Cara menggunakan javascript technical interview questions

Click⭐if you like the project and follow @SudheerJonna for more updates. Coding questions available . PDF and Epub versions available at actions tab.

Show

Explore the best free resource to learn JavaScript. Build your own projects & earn a free certification in just 25 days.


  1. Take this JavaScript Projects course to go from a JS beginner to confidently building your own projects
  2. Take this coding interview bootcamp if you’re serious about getting hired and don’t have a CS degree
  3. Take this Advanced JavaScript Course to learn advanced JS concepts and become a top JS developer

JavaScript Interview Questions | Top JavaScript Interview Questions and Answers.


Table of Contents

No.Questions123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. What are the possible ways to create objects in JavaScript

    There are many ways to create objects in javascript as below

    1. Object constructor:

      The simplest way to create an empty object is using the Object constructor. Currently this approach is not recommended.

      var object = new Object();

    2. Object's create method:

      The create method of Object creates a new object by passing the prototype object as a parameter

      var object = Object.create(null);

    3. Object literal syntax:

      The object literal syntax (or object initializer), is a comma-separated set of name-value pairs wrapped in curly braces.

      var object = {
           name: "Sudheer",
           age: 34
      };
      
      Object literal property values can be of any data type, including array, function, and nested object.

      Note: This is an easiest way to create an object

    4. Function constructor:

      Create any function and apply the new operator to create object instances,

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");

    5. Function constructor with prototype:

      This is similar to function constructor but it uses prototype for their properties and methods,

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();

      This is equivalent to an instance created with an object create method with a function prototype and then call that function with an instance and parameters as arguments.

      function func() {};
      
      new func(x, y, z);

      (OR)

      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);

    6. ES6 Class syntax:

      ES6 introduces class feature to create the objects

      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");

    7. Singleton pattern:

      A Singleton is an object which can only be instantiated one time. Repeated calls to its constructor return the same instance and this way one can ensure that they don't accidentally create multiple instances.

      var object = new (function () {
        this.name = "Sudheer";
      })();

  2. What is a prototype chain

    Prototype chaining is used to build new types of objects based on existing ones. It is similar to inheritance in a class based language.

    The prototype on object instance is available through Object.getPrototypeOf(object) or __proto__ property whereas prototype on constructors function is available through Object.prototype.

    Cara menggunakan javascript technical interview questions

  3. What is the difference between Call, Apply and Bind

    The difference between Call, Apply and Bind can be explained with below examples,

    Call: The call() method invokes a function with a given

    function func() {};
    
    new func(x, y, z);
    35 value and arguments provided one by one

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?

    Apply: Invokes the function with a given

    function func() {};
    
    new func(x, y, z);
    35 value and allows you to pass in arguments as an array

    var object = Object.create(null);
    0

    bind: returns a new function, allowing you to pass any number of arguments

    var object = Object.create(null);
    1

    Call and apply are pretty interchangeable. Both execute the current function immediately. You need to decide whether it’s easier to send in an array or a comma separated list of arguments. You can remember by treating Call is for comma (separated list) and Apply is for Array.

    Whereas Bind creates a new function that will have

    function func() {};
    
    new func(x, y, z);
    35 set to the first parameter passed to bind().

  4. What is JSON and its common operations

    JSON is a text-based data format following JavaScript object syntax, which was popularized by

    function func() {};
    
    new func(x, y, z);
    38. It is useful when you want to transmit data across a network and it is basically just a text file with an extension of .json, and a MIME type of application/json

    Parsing: Converting a string to a native object

    var object = Object.create(null);
    2

    Stringification: converting a native object to a string so it can be transmitted across the network

    var object = Object.create(null);
    3

  5. What is the purpose of the array slice method

    The slice() method returns the selected elements in an array as a new array object. It selects the elements starting at the given start argument, and ends at the given optional end argument without including the last element. If you omit the second argument then it selects till the end.

    Some of the examples of this method are,

    var object = Object.create(null);
    4

    Note: Slice method won't mutate the original array but it returns the subset as a new array.

  6. What is the purpose of the array splice method

    The splice() method is used either adds/removes items to/from an array, and then returns the removed item. The first argument specifies the array position for insertion or deletion whereas the optional second argument indicates the number of elements to be deleted. Each additional argument is added to the array.

    Some of the examples of this method are,

    var object = Object.create(null);
    5

    Note: Splice method modifies the original array and returns the deleted array.

  7. What is the difference between slice and splice

    Some of the major difference in a tabular form

    SliceSpliceDoesn't modify the original array(immutable)Modifies the original array(mutable)Returns the subset of original arrayReturns the deleted elements as arrayUsed to pick the elements from arrayUsed to insert or delete elements to/from array

  8. How do you compare Object and Map

    Objects are similar to Maps in that both let you set keys to values, retrieve those values, delete keys, and detect whether something is stored at a key. Due to this reason, Objects have been used as Maps historically. But there are important differences that make using a Map preferable in certain cases.

    1. The keys of an Object are Strings and Symbols, whereas they can be any value for a Map, including functions, objects, and any primitive.
    2. The keys in Map are ordered while keys added to Object are not. Thus, when iterating over it, a Map object returns keys in order of insertion.
    3. You can get the size of a Map easily with the size property, while the number of properties in an Object must be determined manually.
    4. A Map is an iterable and can thus be directly iterated, whereas iterating over an Object requires obtaining its keys in some fashion and iterating over them.
    5. An Object has a prototype, so there are default keys in the map that could collide with your keys if you're not careful. As of ES5 this can be bypassed by using map = Object.create(null), but this is seldom done.
    6. A Map may perform better in scenarios involving frequent addition and removal of key pairs.

  9. What is the difference between == and === operators

    JavaScript provides both strict(===, !==) and type-converting(==, !=) equality comparison. The strict operators take type of variable in consideration, while non-strict operators make type correction/conversion based upon values of variables. The strict operators follow the below conditions for different types,

    1. Two strings are strictly equal when they have the same sequence of characters, same length, and same characters in corresponding positions.
    2. Two numbers are strictly equal when they are numerically equal. i.e, Having the same number value. There are two special cases in this,
      1. NaN is not equal to anything, including NaN.
      2. Positive and negative zeros are equal to one another.
    3. Two Boolean operands are strictly equal if both are true or both are false.
    4. Two objects are strictly equal if they refer to the same Object.
    5. Null and Undefined types are not equal with ===, but equal with ==. i.e, null===undefined --> false but null==undefined --> true

    Some of the example which covers the above cases,

    var object = Object.create(null);
    6

  10. What are lambda or arrow functions

    An arrow function is a shorter syntax for a function expression and does not have its own this, arguments, super, or new.target. These functions are best suited for non-method functions, and they cannot be used as constructors.

  11. What is a first class function

    In Javascript, functions are first class objects. First-class functions means when functions in that language are treated like any other variable.

    For example, in such a language, a function can be passed as an argument to other functions, can be returned by another function and can be assigned as a value to a variable. For example, in the below example, handler functions assigned to a listener

    var object = Object.create(null);
    7

  12. What is a first order function

    First-order function is a function that doesn’t accept another function as an argument and doesn’t return a function as its return value.

    var object = Object.create(null);
    8

  13. What is a higher order function

    Higher-order function is a function that accepts another function as an argument or returns a function as a return value or both.

    var object = Object.create(null);
    9

  14. What is a unary function

    Unary function (i.e. monadic) is a function that accepts exactly one argument. It stands for a single argument accepted by a function.

    Let us take an example of unary function,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    0

  15. What is the currying function

    Currying is the process of taking a function with multiple arguments and turning it into a sequence of functions each with only a single argument. Currying is named after a mathematician Haskell Curry. By applying currying, a n-ary function turns it into a unary function.

    Let's take an example of n-ary function and how it turns into a currying function,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    1

    Curried functions are great to improve code reusability and functional composition.

  16. What is a pure function

    A Pure function is a function where the return value is only determined by its arguments without any side effects. i.e, If you call a function with the same arguments 'n' number of times and 'n' number of places in the application then it will always return the same value.

    Let's take an example to see the difference between pure and impure functions,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    2

    As per the above code snippets, the Push function is impure itself by altering the array and returning a push number index independent of the parameter value. . Whereas Concat on the other hand takes the array and concatenates it with the other array producing a whole new array without side effects. Also, the return value is a concatenation of the previous array.

    Remember that Pure functions are important as they simplify unit testing without any side effects and no need for dependency injection. They also avoid tight coupling and make it harder to break your application by not having any side effects. These principles are coming together with Immutability concept of ES6 by giving preference to const over let usage.

  17. What is the purpose of the let keyword

    The

    function func() {};
    
    new func(x, y, z);
    39 statement declares a block scope local variable. Hence the variables defined with let keyword are limited in scope to the block, statement, or expression on which it is used. Whereas variables declared with the
    function func() {};
    
    new func(x, y, z);
    40 keyword used to define a variable globally, or locally to an entire function regardless of block scope.

    Let's take an example to demonstrate the usage,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    3

  18. What is the difference between let and var

    You can list out the differences in a tabular format

    varletIt is been available from the beginning of JavaScriptIntroduced as part of ES6It has function scopeIt has block scopeVariables will be hoistedHoisted but not initialized

    Let's take an example to see the difference,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    4

  19. What is the reason to choose the name let as a keyword

    function func() {};
    
    new func(x, y, z);
    39 is a mathematical statement that was adopted by early programming languages like Scheme and Basic. It has been borrowed from dozens of other languages that use
    function func() {};
    
    new func(x, y, z);
    39 already as a traditional keyword as close to
    function func() {};
    
    new func(x, y, z);
    40 as possible.

  20. How do you redeclare variables in switch block without an error

    If you try to redeclare variables in a

    function func() {};
    
    new func(x, y, z);
    44 then it will cause errors because there is only one block. For example, the below code block throws a syntax error as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    5

    To avoid this error, you can create a nested block inside a case clause and create a new block scoped lexical environment.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    6

  21. What is the Temporal Dead Zone

    The Temporal Dead Zone is a behavior in JavaScript that occurs when declaring a variable with the let and const keywords, but not with var. In ECMAScript 6, accessing a

    function func() {};
    
    new func(x, y, z);
    39 or
    function func() {};
    
    new func(x, y, z);
    46 variable before its declaration (within its scope) causes a ReferenceError. The time span when that happens, between the creation of a variable’s binding and its declaration, is called the temporal dead zone.

    Let's see this behavior with an example,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    7

  22. What is IIFE(Immediately Invoked Function Expression)

    IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined. The signature of it would be as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    8

    The primary reason to use an IIFE is to obtain data privacy because any variables declared within the IIFE cannot be accessed by the outside world. i.e, If you try to access variables with IIFE then it throws an error as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    9

  23. How do you decode or encode a URL in JavaScript?

    function func() {};
    
    new func(x, y, z);
    47 function is used to encode an URL. This function requires a URL string as a parameter and return that encoded string.
    function func() {};
    
    new func(x, y, z);
    48 function is used to decode an URL. This function requires an encoded URL string as parameter and return that decoded string.

    Note: If you want to encode characters such as

    function func() {};
    
    new func(x, y, z);
    49 then you need to use
    function func() {};
    
    new func(x, y, z);
    50.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    0

  24. What is memoization

    Memoization is a programming technique which attempts to increase a function’s performance by caching its previously computed results. Each time a memoized function is called, its parameters are used to index the cache. If the data is present, then it can be returned, without executing the entire function. Otherwise the function is executed and then the result is added to the cache. Let's take an example of adding function with memoization,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    1

  25. What is Hoisting

    Hoisting is a JavaScript mechanism where variables, function declarations and classes are moved to the top of their scope before code execution. Remember that JavaScript only hoists declarations, not initialisation. Let's take a simple example of variable hoisting,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    2

    The above code looks like as below to the interpreter,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    3

    In the same fashion, function declarations are hoisted too

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    4

    This hoisting makes functions to be safely used in code before they are declared.

  26. What are classes in ES6

    In ES6, Javascript classes are primarily syntactic sugar over JavaScript’s existing prototype-based inheritance. For example, the prototype based inheritance written in function expression as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    5

    Whereas ES6 classes can be defined as an alternative

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    6

  27. What are closures

    A closure is the combination of a function and the lexical environment within which that function was declared. i.e, It is an inner function that has access to the outer or enclosing function’s variables. The closure has three scope chains

    1. Own scope where variables defined between its curly brackets
    2. Outer function’s variables
    3. Global variables

    Let's take an example of closure concept,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    7

    As per the above code, the inner function(i.e, greetingInfo) has access to the variables in the outer function scope(i.e, Welcome) even after the outer function has returned.

  28. What are modules

    Modules refer to small units of independent, reusable code and also act as the foundation of many JavaScript design patterns. Most of the JavaScript modules export an object literal, a function, or a constructor

  29. Why do you need modules

    Below are the list of benefits using modules in javascript ecosystem

    1. Maintainability
    2. Reusability
    3. Namespacing

  30. What is scope in javascript

    Scope is the accessibility of variables, functions, and objects in some particular part of your code during runtime. In other words, scope determines the visibility of variables and other resources in areas of your code.

  31. What is a service worker

    A Service worker is basically a script (JavaScript file) that runs in the background, separate from a web page and provides features that don't need a web page or user interaction. Some of the major features of service workers are Rich offline experiences(offline first web application development), periodic background syncs, push notifications, intercept and handle network requests and programmatically managing a cache of responses.

  32. How do you manipulate DOM using a service worker

    Service worker can't access the DOM directly. But it can communicate with the pages it controls by responding to messages sent via the

    function func() {};
    
    new func(x, y, z);
    51 interface, and those pages can manipulate the DOM.

  33. How do you reuse information across service worker restarts

    The problem with service worker is that it gets terminated when not in use, and restarted when it's next needed, so you cannot rely on global state within a service worker's

    function func() {};
    
    new func(x, y, z);
    52 and
    function func() {};
    
    new func(x, y, z);
    53 handlers. In this case, service workers will have access to IndexedDB API in order to persist and reuse across restarts.

  34. What is IndexedDB

    IndexedDB is a low-level API for client-side storage of larger amounts of structured data, including files/blobs. This API uses indexes to enable high-performance searches of this data.

  35. What is web storage

    Web storage is an API that provides a mechanism by which browsers can store key/value pairs locally within the user's browser, in a much more intuitive fashion than using cookies. The web storage provides two mechanisms for storing data on the client.

    1. Local storage: It stores data for current origin with no expiration date.
    2. Session storage: It stores data for one session and the data is lost when the browser tab is closed.

  36. What is a post message

    Post message is a method that enables cross-origin communication between Window objects.(i.e, between a page and a pop-up that it spawned, or between a page and an iframe embedded within it). Generally, scripts on different pages are allowed to access each other if and only if the pages follow same-origin policy(i.e, pages share the same protocol, port number, and host).

  37. A cookie is a piece of data that is stored on your computer to be accessed by your browser. Cookies are saved as key/value pairs. For example, you can create a cookie named username as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    8

    Cara menggunakan javascript technical interview questions

  38. Cookies are used to remember information about the user profile(such as username). It basically involves two steps,

    1. When a user visits a web page, the user profile can be stored in a cookie.
    2. Next time the user visits the page, the cookie remembers the user profile.

  39. There are few below options available for a cookie,

    1. By default, the cookie is deleted when the browser is closed but you can change this behavior by setting expiry date (in UTC time).

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    9

    1. By default, the cookie belongs to a current page. But you can tell the browser what path the cookie belongs to using a path parameter.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    0

  40. You can delete a cookie by setting the expiry date as a passed date. You don't need to specify a cookie value in this case. For example, you can delete a username cookie in the current page as below.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    1

    Note: You should define the cookie path option to ensure that you delete the right cookie. Some browsers doesn't allow to delete a cookie unless you specify a path parameter.

  41. Below are some of the differences between cookie, local storage and session storage,

    FeatureCookieLocal storageSession storageAccessed on client or server sideBoth server-side & client-sideclient-side onlyclient-side onlyLifetimeAs configured using Expires optionuntil deleteduntil tab is closedSSL supportSupportedNot supportedNot supportedMaximum data size4KB5 MB5MB

  42. What is the main difference between localStorage and sessionStorage

    LocalStorage is the same as SessionStorage but it persists the data even when the browser is closed and reopened(i.e it has no expiration time) whereas in sessionStorage data gets cleared when the page session ends.

  43. How do you access web storage

    The Window object implements the

    function func() {};
    
    new func(x, y, z);
    54 and
    function func() {};
    
    new func(x, y, z);
    55 objects which has
    function func() {};
    
    new func(x, y, z);
    56(window.localStorage) and
    function func() {};
    
    new func(x, y, z);
    57(window.sessionStorage) properties respectively. These properties create an instance of the Storage object, through which data items can be set, retrieved and removed for a specific domain and storage type (session or local). For example, you can read and write on local storage objects as below

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    2

  44. What are the methods available on session storage

    The session storage provided methods for reading, writing and clearing the session data

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    3

  45. What is a storage event and its event handler

    The StorageEvent is an event that fires when a storage area has been changed in the context of another document. Whereas onstorage property is an EventHandler for processing storage events. The syntax would be as below

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    4

    Let's take the example usage of onstorage event handler which logs the storage key and it's values

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    5

  46. Why do you need web storage

    Web storage is more secure, and large amounts of data can be stored locally, without affecting website performance. Also, the information is never transferred to the server. Hence this is a more recommended approach than Cookies.

  47. How do you check web storage browser support

    You need to check browser support for localStorage and sessionStorage before using web storage,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    6

  48. How do you check web workers browser support

    You need to check browser support for web workers before using it

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    7

  49. Give an example of a web worker

    You need to follow below steps to start using web workers for counting example

    1. Create a Web Worker File: You need to write a script to increment the count value. Let's name it as counter.js

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    8

    Here postMessage() method is used to post a message back to the HTML page

    1. Create a Web Worker Object: You can create a web worker object by checking for browser support. Let's name this file as web_worker_example.js

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    9

    and we can receive messages from web worker

    function func() {};
    
    new func(x, y, z);
    0

    1. Terminate a Web Worker: Web workers will continue to listen for messages (even after the external script is finished) until it is terminated. You can use the terminate() method to terminate listening to the messages.

    function func() {};
    
    new func(x, y, z);
    1

    1. Reuse the Web Worker: If you set the worker variable to undefined you can reuse the code

    function func() {};
    
    new func(x, y, z);
    2

  50. What are the restrictions of web workers on DOM

    WebWorkers don't have access to below javascript objects since they are defined in an external files

    1. Window object
    2. Document object
    3. Parent object

  51. What is a promise

    A promise is an object that may produce a single value some time in the future with either a resolved value or a reason that it’s not resolved(for example, network error). It will be in one of the 3 possible states: fulfilled, rejected, or pending.

    The syntax of Promise creation looks like below,

    function func() {};
    
    new func(x, y, z);
    3

    The usage of a promise would be as below,

    function func() {};
    
    new func(x, y, z);
    4

    The action flow of a promise will be as below,

    Cara menggunakan javascript technical interview questions

  52. Why do you need a promise

    Promises are used to handle asynchronous operations. They provide an alternative approach for callbacks by reducing the callback hell and writing the cleaner code.

  53. What are the three states of promise

    Promises have three states:

    1. Pending: This is an initial state of the Promise before an operation begins
    2. Fulfilled: This state indicates that the specified operation was completed.
    3. Rejected: This state indicates that the operation did not complete. In this case an error value will be thrown.

  54. What is a callback function

    A callback function is a function passed into another function as an argument. This function is invoked inside the outer function to complete an action. Let's take a simple example of how to use callback function

    function func() {};
    
    new func(x, y, z);
    5

  55. Why do we need callbacks

    The callbacks are needed because javascript is an event driven language. That means instead of waiting for a response javascript will keep executing while listening for other events. Let's take an example with the first function invoking an API call(simulated by setTimeout) and the next function which logs the message.

    function func() {};
    
    new func(x, y, z);
    6

    As observed from the output, javascript didn't wait for the response of the first function and the remaining code block got executed. So callbacks are used in a way to make sure that certain code doesn’t execute until the other code finishes execution.

  56. What is a callback hell

    Callback Hell is an anti-pattern with multiple nested callbacks which makes code hard to read and debug when dealing with asynchronous logic. The callback hell looks like below,

    function func() {};
    
    new func(x, y, z);
    7

  57. What are server-sent events

    Server-sent events (SSE) is a server push technology enabling a browser to receive automatic updates from a server via HTTP connection without resorting to polling. These are a one way communications channel - events flow from server to client only. This has been used in Facebook/Twitter updates, stock price updates, news feeds etc.

  58. How do you receive server-sent event notifications

    The EventSource object is used to receive server-sent event notifications. For example, you can receive messages from server as below,

    function func() {};
    
    new func(x, y, z);
    8

  59. How do you check browser support for server-sent events

    You can perform browser support for server-sent events before using it as below,

    function func() {};
    
    new func(x, y, z);
    9

  60. What are the events available for server sent events

    Below are the list of events available for server sent events

    EventDescriptiononopenIt is used when a connection to the server is openedonmessageThis event is used when a message is receivedonerrorIt happens when an error occurs

  61. What are the main rules of promise

    A promise must follow a specific set of rules,

    1. A promise is an object that supplies a standard-compliant
      function func() {};
      
      new func(x, y, z);
      58 method
    2. A pending promise may transition into either fulfilled or rejected state
    3. A fulfilled or rejected promise is settled and it must not transition into any other state.
    4. Once a promise is settled, the value must not change.

  62. What is callback in callback

    You can nest one callback inside in another callback to execute the actions sequentially one by one. This is known as callbacks in callbacks.

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    0

  63. What is promise chaining

    The process of executing a sequence of asynchronous tasks one after another using promises is known as Promise chaining. Let's take an example of promise chaining for calculating the final result,

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    1

    In the above handlers, the result is passed to the chain of .then() handlers with the below work flow,

    1. The initial promise resolves in 1 second,
    2. After that
      function func() {};
      
      new func(x, y, z);
      59 handler is called by logging the result(1) and then return a promise with the value of result * 2.
    3. After that the value passed to the next
      function func() {};
      
      new func(x, y, z);
      59 handler by logging the result(2) and return a promise with result * 3.
    4. Finally the value passed to the last
      function func() {};
      
      new func(x, y, z);
      59 handler by logging the result(6) and return a promise with result * 4.

  64. What is promise.all

    Promise.all is a promise that takes an array of promises as an input (an iterable), and it gets resolved when all the promises get resolved or any one of them gets rejected. For example, the syntax of promise.all method is below,

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    2

    Note: Remember that the order of the promises(output the result) is maintained as per input order.

  65. What is the purpose of the race method in promise

    Promise.race() method will return the promise instance which is firstly resolved or rejected. Let's take an example of race() method where promise2 is resolved first

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    3

  66. What is a strict mode in javascript

    Strict Mode is a new feature in ECMAScript 5 that allows you to place a program, or a function, in a “strict” operating context. This way it prevents certain actions from being taken and throws more exceptions. The literal expression

    function func() {};
    
    new func(x, y, z);
    62 instructs the browser to use the javascript code in the Strict mode.

  67. Why do you need strict mode

    Strict mode is useful to write "secure" JavaScript by notifying "bad syntax" into real errors. For example, it eliminates accidentally creating a global variable by throwing an error and also throws an error for assignment to a non-writable property, a getter-only property, a non-existing property, a non-existing variable, or a non-existing object.

  68. How do you declare strict mode

    The strict mode is declared by adding "use strict"; to the beginning of a script or a function. If declared at the beginning of a script, it has global scope.

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    4

    and if you declare inside a function, it has local scope

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    5

  69. What is the purpose of double exclamation

    The double exclamation or negation(!!) ensures the resulting type is a boolean. If it was falsey (e.g. 0, null, undefined, etc.), it will be false, otherwise, true. For example, you can test IE version using this expression as below,

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    6

    If you don't use this expression then it returns the original value.

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    7

    Note: The expression !! is not an operator, but it is just twice of ! operator.

  70. What is the purpose of the delete operator

    The delete keyword is used to delete the property as well as its value.

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    8

  71. What is typeof operator

    You can use the JavaScript typeof operator to find the type of a JavaScript variable. It returns the type of a variable or an expression.

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    9

  72. What is undefined property

    The undefined property indicates that a variable has not been assigned a value, or declared but not initialized at all. The type of undefined value is undefined too.

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    0

    Any variable can be emptied by setting the value to undefined.

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    1

  73. What is null value

    The value null represents the intentional absence of any object value. It is one of JavaScript's primitive values. The type of null value is object. You can empty the variable by setting the value to null.

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    2

  74. What is the difference between null and undefined

    Below are the main differences between null and undefined,

    NullUndefinedIt is an assignment value which indicates that variable points to no object.It is not an assignment value where a variable has been declared but has not yet been assigned a value.Type of null is objectType of undefined is undefinedThe null value is a primitive value that represents the null, empty, or non-existent reference.The undefined value is a primitive value used when a variable has not been assigned a value.Indicates the absence of a value for a variableIndicates absence of variable itselfConverted to zero (0) while performing primitive operationsConverted to NaN while performing primitive operations

  75. What is eval

    The eval() function evaluates JavaScript code represented as a string. The string can be a JavaScript expression, variable, statement, or sequence of statements.

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    3

  76. What is the difference between window and document

    Below are the main differences between window and document,

    WindowDocumentIt is the root level element in any web pageIt is the direct child of the window object. This is also known as Document Object Model(DOM)By default window object is available implicitly in the pageYou can access it via window.document or document.It has methods like alert(), confirm() and properties like document, locationIt provides methods like getElementById, getElementsByTagName, createElement etc

  77. How do you access history in javascript

    The window.history object contains the browser's history. You can load previous and next URLs in the history using back() and next() methods.

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    4

    Note: You can also access history without window prefix.

  78. How do you detect caps lock key turned on or not

    The

    function func() {};
    
    new func(x, y, z);
    63 is used to return a boolean value that indicates whether the specified modifier key is activated or not. The modifiers such as CapsLock, ScrollLock and NumLock are activated when they are clicked, and deactivated when they are clicked again.

    Let's take an input element to detect the CapsLock on/off behavior with an example,

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    5

  79. What is isNaN

    The isNaN() function is used to determine whether a value is an illegal number (Not-a-Number) or not. i.e, This function returns true if the value equates to NaN. Otherwise it returns false.

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    6

  80. What are the differences between undeclared and undefined variables

    Below are the major differences between undeclared(not defined) and undefined variables,

    undeclaredundefinedThese variables do not exist in a program and are not declaredThese variables declared in the program but have not assigned any valueIf you try to read the value of an undeclared variable, then a runtime error is encounteredIf you try to read the value of an undefined variable, an undefined value is returned.

  81. What are global variables

    Global variables are those that are available throughout the length of the code without any scope. The var keyword is used to declare a local variable but if you omit it then it will become global variable

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    7

  82. What are the problems with global variables

    The problem with global variables is the conflict of variable names of local and global scope. It is also difficult to debug and test the code that relies on global variables.

  83. What is NaN property

    The NaN property is a global property that represents "Not-a-Number" value. i.e, It indicates that a value is not a legal number. It is very rare to use NaN in a program but it can be used as return value for few cases

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    8

  84. What is the purpose of isFinite function

    The isFinite() function is used to determine whether a number is a finite, legal number. It returns false if the value is +infinity, -infinity, or NaN (Not-a-Number), otherwise it returns true.

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    9

  85. What is an event flow

    Event flow is the order in which event is received on the web page. When you click an element that is nested in various other elements, before your click actually reaches its destination, or target element, it must trigger the click event for each of its parent elements first, starting at the top with the global window object. There are two ways of event flow

    1. Top to Bottom(Event Capturing)
    2. Bottom to Top (Event Bubbling)

  86. What is event bubbling

    Event bubbling is a type of event propagation where the event first triggers on the innermost target element, and then successively triggers on the ancestors (parents) of the target element in the same nesting hierarchy till it reaches the outermost DOM element.

  87. What is event capturing

    Event capturing is a type of event propagation where the event is first captured by the outermost element, and then successively triggers on the descendants (children) of the target element in the same nesting hierarchy till it reaches the innermost DOM element.

  88. How do you submit a form using JavaScript

    You can submit a form using

    function func() {};
    
    new func(x, y, z);
    64. All the form input's information is submitted using onsubmit event handler

    var object = new (function () {
      this.name = "Sudheer";
    })();
    0

  89. How do you find operating system details

    The window.navigator object contains information about the visitor's browser OS details. Some of the OS properties are available under platform property,

    var object = new (function () {
      this.name = "Sudheer";
    })();
    1

  90. What is the difference between document load and DOMContentLoaded events

    The

    function func() {};
    
    new func(x, y, z);
    65 event is fired when the initial HTML document has been completely loaded and parsed, without waiting for assets(stylesheets, images, and subframes) to finish loading. Whereas The load event is fired when the whole page has loaded, including all dependent resources(stylesheets, images).

  91. What is the difference between native, host and user objects

    function func() {};
    
    new func(x, y, z);
    66 are objects that are part of the JavaScript language defined by the ECMAScript specification. For example, String, Math, RegExp, Object, Function etc core objects defined in the ECMAScript spec.
    function func() {};
    
    new func(x, y, z);
    67 are objects provided by the browser or runtime environment (Node). For example, window, XmlHttpRequest, DOM nodes etc are considered as host objects.
    function func() {};
    
    new func(x, y, z);
    68 are objects defined in the javascript code. For example, User objects created for profile information.

  92. What are the tools or techniques used for debugging JavaScript code

    You can use below tools or techniques for debugging javascript

    1. Chrome Devtools
    2. debugger statement
    3. Good old console.log statement

  93. What are the pros and cons of promises over callbacks

    Below are the list of pros and cons of promises over callbacks,

    Pros:

    1. It avoids callback hell which is unreadable
    2. Easy to write sequential asynchronous code with .then()
    3. Easy to write parallel asynchronous code with Promise.all()
    4. Solves some of the common problems of callbacks(call the callback too late, too early, many times and swallow errors/exceptions)

    Cons:

    1. It makes little complex code
    2. You need to load a polyfill if ES6 is not supported

  94. What is the difference between an attribute and a property

    Attributes are defined on the HTML markup whereas properties are defined on the DOM. For example, the below HTML element has 2 attributes type and value,

    var object = new (function () {
      this.name = "Sudheer";
    })();
    2

    You can retrieve the attribute value as below,

    var object = new (function () {
      this.name = "Sudheer";
    })();
    3

    And after you change the value of the text field to "Good evening", it becomes like

    var object = new (function () {
      this.name = "Sudheer";
    })();
    4

  95. What is same-origin policy

    The same-origin policy is a policy that prevents JavaScript from making requests across domain boundaries. An origin is defined as a combination of URI scheme, hostname, and port number. If you enable this policy then it prevents a malicious script on one page from obtaining access to sensitive data on another web page using Document Object Model(DOM).

  96. What is the purpose of void 0

    Void(0) is used to prevent the page from refreshing. This will be helpful to eliminate the unwanted side-effect, because it will return the undefined primitive value. It is commonly used for HTML documents that use href="JavaScript:Void(0);" within an

    function func() {};
    
    new func(x, y, z);
    69 element. i.e, when you click a link, the browser loads a new page or refreshes the same page. But this behavior will be prevented using this expression. For example, the below link notify the message without reloading the page

    var object = new (function () {
      this.name = "Sudheer";
    })();
    5

  97. Is JavaScript a compiled or interpreted language

    JavaScript is an interpreted language, not a compiled language. An interpreter in the browser reads over the JavaScript code, interprets each line, and runs it. Nowadays modern browsers use a technology known as Just-In-Time (JIT) compilation, which compiles JavaScript to executable bytecode just as it is about to run.

  98. Is JavaScript a case-sensitive language

    Yes, JavaScript is a case sensitive language. The language keywords, variables, function & object names, and any other identifiers must always be typed with a consistent capitalization of letters.

  99. Is there any relation between Java and JavaScript

    No, they are entirely two different programming languages and have nothing to do with each other. But both of them are Object Oriented Programming languages and like many other languages, they follow similar syntax for basic features(if, else, for, switch, break, continue etc).

  100. What are events

    Events are "things" that happen to HTML elements. When JavaScript is used in HTML pages, JavaScript can

    function func() {};
    
    new func(x, y, z);
    70 on these events. Some of the examples of HTML events are,

    1. Web page has finished loading
    2. Input field was changed
    3. Button was clicked

    Let's describe the behavior of click event for button element,

    var object = new (function () {
      this.name = "Sudheer";
    })();
    6

  101. Who created javascript

    JavaScript was created by Brendan Eich in 1995 during his time at Netscape Communications. Initially it was developed under the name

    function func() {};
    
    new func(x, y, z);
    71, but later the language was officially called
    function func() {};
    
    new func(x, y, z);
    72 when it first shipped in beta releases of Netscape.

  102. What is the use of preventDefault method

    The preventDefault() method cancels the event if it is cancelable, meaning that the default action or behaviour that belongs to the event will not occur. For example, prevent form submission when clicking on submit button and prevent opening the page URL when clicking on hyperlink are some common use cases.

    var object = new (function () {
      this.name = "Sudheer";
    })();
    7

    Note: Remember that not all events are cancelable.

  103. What is the use of stopPropagation method

    The stopPropagation method is used to stop the event from bubbling up the event chain. For example, the below nested divs with stopPropagation method prevents default event propagation when clicking on nested div(Div1)

    var object = new (function () {
      this.name = "Sudheer";
    })();
    8

  104. What are the steps involved in return false usage

    The return false statement in event handlers performs the below steps,

    1. First it stops the browser's default action or behaviour.
    2. It prevents the event from propagating the DOM
    3. Stops callback execution and returns immediately when called.

  105. What is BOM

    The Browser Object Model (BOM) allows JavaScript to "talk to" the browser. It consists of the objects navigator, history, screen, location and document which are children of the window. The Browser Object Model is not standardized and can change based on different browsers.

    Cara menggunakan javascript technical interview questions

  106. What is the use of setTimeout

    The setTimeout() method is used to call a function or evaluate an expression after a specified number of milliseconds. For example, let's log a message after 2 seconds using setTimeout method,

    var object = new (function () {
      this.name = "Sudheer";
    })();
    9

  107. What is the use of setInterval

    The setInterval() method is used to call a function or evaluate an expression at specified intervals (in milliseconds). For example, let's log a message after 2 seconds using setInterval method,

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    0

  108. Why is JavaScript treated as Single threaded

    JavaScript is a single-threaded language. Because the language specification does not allow the programmer to write code so that the interpreter can run parts of it in parallel in multiple threads or processes. Whereas languages like java, go, C++ can make multi-threaded and multi-process programs.

  109. What is an event delegation

    Event delegation is a technique for listening to events where you delegate a parent element as the listener for all of the events that happen inside it.

    For example, if you wanted to detect field changes in inside a specific form, you can use event delegation technique,

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    1

  110. What is ECMAScript

    ECMAScript is the scripting language that forms the basis of JavaScript. ECMAScript standardized by the ECMA International standards organization in the ECMA-262 and ECMA-402 specifications. The first edition of ECMAScript was released in 1997.

  111. What is JSON

    JSON (JavaScript Object Notation) is a lightweight format that is used for data interchanging. It is based on a subset of JavaScript language in the way objects are built in JavaScript.

  112. What are the syntax rules of JSON

    Below are the list of syntax rules of JSON

    1. The data is in name/value pairs
    2. The data is separated by commas
    3. Curly braces hold objects
    4. Square brackets hold arrays

  113. What is the purpose JSON stringify

    When sending data to a web server, the data has to be in a string format. You can achieve this by converting JSON object into a string using stringify() method.

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    2

  114. How do you parse JSON string

    When receiving the data from a web server, the data is always in a string format. But you can convert this string value to a javascript object using parse() method.

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    3

  115. Why do you need JSON

    When exchanging data between a browser and a server, the data can only be text. Since JSON is text only, it can easily be sent to and from a server, and used as a data format by any programming language.

  116. What are PWAs

    Progressive web applications (PWAs) are a type of mobile app delivered through the web, built using common web technologies including HTML, CSS and JavaScript. These PWAs are deployed to servers, accessible through URLs, and indexed by search engines.

  117. What is the purpose of clearTimeout method

    The clearTimeout() function is used in javascript to clear the timeout which has been set by setTimeout()function before that. i.e, The return value of setTimeout() function is stored in a variable and it’s passed into the clearTimeout() function to clear the timer.

    For example, the below setTimeout method is used to display the message after 3 seconds. This timeout can be cleared by the clearTimeout() method.

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    4

  118. What is the purpose of clearInterval method

    The clearInterval() function is used in javascript to clear the interval which has been set by setInterval() function. i.e, The return value returned by setInterval() function is stored in a variable and it’s passed into the clearInterval() function to clear the interval.

    For example, the below setInterval method is used to display the message for every 3 seconds. This interval can be cleared by the clearInterval() method.

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    5

  119. How do you redirect new page in javascript

    In vanilla javascript, you can redirect to a new page using the

    function func() {};
    
    new func(x, y, z);
    73 property of window object. The syntax would be as follows,

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    6

  120. How do you check whether a string contains a substring

    There are 3 possible ways to check whether a string contains a substring or not,

    1. Using includes: ES6 provided
      function func() {};
      
      new func(x, y, z);
      74 method to test a string contains a substring

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    7

    1. Using indexOf: In an ES5 or older environment, you can use
      function func() {};
      
      new func(x, y, z);
      75 which returns the index of a substring. If the index value is not equal to -1 then it means the substring exists in the main string.

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    8

    1. Using RegEx: The advanced solution is using Regular expression's test method(
      function func() {};
      
      new func(x, y, z);
      76), which allows for testing for against regular expressions

    var employee1 = { firstName: "John", lastName: "Rodson" };
    var employee2 = { firstName: "Jimmy", lastName: "Baily" };
    
    function invite(greeting1, greeting2) {
      console.log(
        greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
      );
    }
    
    invite.call(employee1, "Hello", "How are you?"); // Hello John Rodson, How are you?
    invite.call(employee2, "Hello", "How are you?"); // Hello Jimmy Baily, How are you?
    9

  121. How do you validate an email in javascript

    You can validate an email in javascript using regular expressions. It is recommended to do validations on the server side instead of the client side. Because the javascript can be disabled on the client side.

    var object = Object.create(null);
    00

    The above regular expression accepts unicode characters.

  122. How do you get the current url with javascript

    You can use

    function func() {};
    
    new func(x, y, z);
    77 expression to get the current url path and you can use the same expression for updating the URL too. You can also use
    function func() {};
    
    new func(x, y, z);
    78 for read-only purposes but this solution has issues in FF.

    var object = Object.create(null);
    01

  123. What are the various url properties of location object

    The below

    function func() {};
    
    new func(x, y, z);
    79 object properties can be used to access URL components of the page,

    1. href - The entire URL
    2. protocol - The protocol of the URL
    3. host - The hostname and port of the URL
    4. hostname - The hostname of the URL
    5. port - The port number in the URL
    6. pathname - The path name of the URL
    7. search - The query portion of the URL
    8. hash - The anchor portion of the URL

  124. How do get query string values in javascript

    You can use URLSearchParams to get query string values in javascript. Let's see an example to get the client code value from URL query string,

    var object = Object.create(null);
    02

  125. How do you check if a key exists in an object

    You can check whether a key exists in an object or not using three approaches,

    1. Using in operator: You can use the in operator whether a key exists in an object or not

    var object = Object.create(null);
    03

    and If you want to check if a key doesn't exist, remember to use parenthesis,

    var object = Object.create(null);
    04

    1. Using hasOwnProperty method: You can use
      function func() {};
      
      new func(x, y, z);
      80 to particularly test for properties of the object instance (and not inherited properties)

    var object = Object.create(null);
    05

    1. Using undefined comparison: If you access a non-existing property from an object, the result is undefined. Let’s compare the properties against undefined to determine the existence of the property.

    var object = Object.create(null);
    06

  126. How do you loop through or enumerate javascript object

    You can use the

    function func() {};
    
    new func(x, y, z);
    81 loop to loop through javascript object. You can also make sure that the key you get is an actual property of an object, and doesn't come from the prototype using
    function func() {};
    
    new func(x, y, z);
    80 method.

    var object = Object.create(null);
    07

  127. How do you test for an empty object

    There are different solutions based on ECMAScript versions

    1. Using Object entries(ECMA 7+): You can use object entries length along with constructor type.

    var object = Object.create(null);
    08

    1. Using Object keys(ECMA 5+): You can use object keys length along with constructor type.

    var object = Object.create(null);
    09

    1. Using for-in with hasOwnProperty(Pre-ECMA 5): You can use a for-in loop along with hasOwnProperty.

    var object = Object.create(null);
    10

  128. What is an arguments object

    The arguments object is an Array-like object accessible inside functions that contains the values of the arguments passed to that function. For example, let's see how to use arguments object inside sum function,

    var object = Object.create(null);
    11

    Note: You can't apply array methods on arguments object. But you can convert into a regular array as below.

    var object = Object.create(null);
    12

  129. How do you make first letter of the string in an uppercase

    You can create a function which uses a chain of string methods such as charAt, toUpperCase and slice methods to generate a string with the first letter in uppercase.

    var object = Object.create(null);
    13

  130. What are the pros and cons of for loop

    The for-loop is a commonly used iteration syntax in javascript. It has both pros and cons

    Pros

    1. Works on every environment
    2. You can use break and continue flow control statements

    Cons

    1. Too verbose
    2. Imperative
    3. You might face one-by-off errors

  131. How do you display the current date in javascript

    You can use

    function func() {};
    
    new func(x, y, z);
    83 to generate a new Date object containing the current date and time. For example, let's display the current date in mm/dd/yyyy

    var object = Object.create(null);
    14

  132. How do you compare two date objects

    You need to use date.getTime() method to compare date values instead of comparison operators (==, !=, ===, and !== operators)

    var object = Object.create(null);
    15

  133. How do you check if a string starts with another string

    You can use ECMAScript 6's

    function func() {};
    
    new func(x, y, z);
    84 method to check if a string starts with another string or not. But it is not yet supported in all browsers. Let's see an example to see this usage,

    var object = Object.create(null);
    16

  134. How do you trim a string in javascript

    JavaScript provided a trim method on string types to trim any whitespaces present at the beginning or ending of the string.

    var object = Object.create(null);
    17

    If your browser(<IE9) doesn't support this method then you can use below polyfill.

    var object = Object.create(null);
    18

  135. How do you add a key value pair in javascript

    There are two possible solutions to add new properties to an object. Let's take a simple object to explain these solutions.

    var object = Object.create(null);
    19

    1. Using dot notation: This solution is useful when you know the name of the property

    var object = Object.create(null);
    20

    1. Using square bracket notation: This solution is useful when the name of the property is dynamically determined.

    var object = Object.create(null);
    21

  136. Is the !-- notation represents a special operator

    No,that's not a special operator. But it is a combination of 2 standard operators one after the other,

    1. A logical not (!)
    2. A prefix decrement (--)

    At first, the value decremented by one and then tested to see if it is equal to zero or not for determining the truthy/falsy value.

  137. How do you assign default values to variables

    You can use the logical or operator

    function func() {};
    
    new func(x, y, z);
    85 in an assignment expression to provide a default value. The syntax looks like as below,

    var object = Object.create(null);
    22

    As per the above expression, variable 'a 'will get the value of 'c' only if 'b' is falsy (if is null, false, undefined, 0, empty string, or NaN), otherwise 'a' will get the value of 'b'.

  138. How do you define multiline strings

    You can define multiline string literals using the '\' character followed by line terminator.

    var object = Object.create(null);
    23

    But if you have a space after the '\' character, the code will look exactly the same, but it will raise a SyntaxError.

  139. What is an app shell model

    An application shell (or app shell) architecture is one way to build a Progressive Web App that reliably and instantly loads on your users' screens, similar to what you see in native applications. It is useful for getting some initial HTML to the screen fast without a network.

  140. Can we define properties for functions

    Yes, We can define properties for functions because functions are also objects.

    var object = Object.create(null);
    24

  141. What is the way to find the number of parameters expected by a function

    You can use

    function func() {};
    
    new func(x, y, z);
    86 syntax to find the number of parameters expected by a function. Let's take an example of
    function func() {};
    
    new func(x, y, z);
    87 function to calculate the sum of numbers,

    var object = Object.create(null);
    25

  142. What is a polyfill

    A polyfill is a piece of JS code used to provide modern functionality on older browsers that do not natively support it. For example, Silverlight plugin polyfill can be used to mimic the functionality of an HTML Canvas element on Microsoft Internet Explorer 7.

  143. What are break and continue statements

    The break statement is used to "jump out" of a loop. i.e, It breaks the loop and continues executing the code after the loop.

    var object = Object.create(null);
    26

    The continue statement is used to "jump over" one iteration in the loop. i.e, It breaks one iteration (in the loop), if a specified condition occurs, and continues with the next iteration in the loop.

    var object = Object.create(null);
    27

  144. What are js labels

    The label statement allows us to name loops and blocks in JavaScript. We can then use these labels to refer back to the code later. For example, the below code with labels avoids printing the numbers when they are same,

    var object = Object.create(null);
    28

  145. What are the benefits of keeping declarations at the top

    It is recommended to keep all declarations at the top of each script or function. The benefits of doing this are,

    1. Gives cleaner code
    2. It provides a single place to look for local variables
    3. Easy to avoid unwanted global variables
    4. It reduces the possibility of unwanted re-declarations

  146. What are the benefits of initializing variables

    It is recommended to initialize variables because of the below benefits,

    1. It gives cleaner code
    2. It provides a single place to initialize variables
    3. Avoid undefined values in the code

  147. What are the recommendations to create new object

    It is recommended to avoid creating new objects using

    function func() {};
    
    new func(x, y, z);
    88. Instead you can initialize values based on it's type to create the objects.

    1. Assign {} instead of new Object()
    2. Assign "" instead of new String()
    3. Assign 0 instead of new Number()
    4. Assign false instead of new Boolean()
    5. Assign [] instead of new Array()
    6. Assign /()/ instead of new RegExp()
    7. Assign function (){} instead of new Function()

    You can define them as an example,

    var object = Object.create(null);
    29

  148. How do you define JSON arrays

    JSON arrays are written inside square brackets and arrays contain javascript objects. For example, the JSON array of users would be as below,

    var object = Object.create(null);
    30

  149. How do you generate random integers

    You can use Math.random() with Math.floor() to return random integers. For example, if you want generate random integers between 1 to 10, the multiplication factor should be 10,

    var object = Object.create(null);
    31

    Note: Math.random() returns a random number between 0 (inclusive), and 1 (exclusive)

  150. Can you write a random integers function to print integers with in a range

    Yes, you can create a proper random function to return a random number between min and max (both included)

    var object = Object.create(null);
    32

  151. What is tree shaking

    Tree shaking is a form of dead code elimination. It means that unused modules will not be included in the bundle during the build process and for that it relies on the static structure of ES2015 module syntax,( i.e. import and export). Initially this has been popularized by the ES2015 module bundler

    function func() {};
    
    new func(x, y, z);
    89.

  152. What is the need of tree shaking

    Tree Shaking can significantly reduce the code size in any application. i.e, The less code we send over the wire the more performant the application will be. For example, if we just want to create a “Hello World” Application using SPA frameworks then it will take around a few MBs, but by tree shaking it can bring down the size to just a few hundred KBs. Tree shaking is implemented in Rollup and Webpack bundlers.

  153. No, it allows arbitrary code to be run which causes a security problem. As we know that the eval() function is used to run text as code. In most of the cases, it should not be necessary to use it.

  154. What is a Regular Expression

    A regular expression is a sequence of characters that forms a search pattern. You can use this search pattern for searching data in a text. These can be used to perform all types of text search and text replace operations. Let's see the syntax format now,

    var object = Object.create(null);
    33

    For example, the regular expression or search pattern with case-insensitive username would be,

    var object = Object.create(null);
    34

  155. What are the string methods available in Regular expression

    Regular Expressions has two string methods: search() and replace(). The search() method uses an expression to search for a match, and returns the position of the match.

    var object = Object.create(null);
    35

    The replace() method is used to return a modified string where the pattern is replaced.

    var object = Object.create(null);
    36

  156. What are modifiers in regular expression

    Modifiers can be used to perform case-insensitive and global searches. Let's list down some of the modifiers,

    ModifierDescriptioniPerform case-insensitive matchinggPerform a global match rather than stops at first matchmPerform multiline matching

    Let's take an example of global modifier,

    var object = Object.create(null);
    37

  157. What are regular expression patterns

    Regular Expressions provide a group of patterns in order to match characters. Basically they are categorized into 3 types,

    1. Brackets: These are used to find a range of characters. For example, below are some use cases,
      1. [abc]: Used to find any of the characters between the brackets(a,b,c)
      2. [0-9]: Used to find any of the digits between the brackets
      3. (a|b): Used to find any of the alternatives separated with |
    2. Metacharacters: These are characters with a special meaning For example, below are some use cases,
      1. \d: Used to find a digit
      2. \s: Used to find a whitespace character
      3. \b: Used to find a match at the beginning or ending of a word
    3. Quantifiers: These are useful to define quantities For example, below are some use cases,
      1. n+: Used to find matches for any string that contains at least one n
      2. n*: Used to find matches for any string that contains zero or more occurrences of n
      3. n?: Used to find matches for any string that contains zero or one occurrences of n

  158. What is a RegExp object

    RegExp object is a regular expression object with predefined properties and methods. Let's see the simple usage of RegExp object,

    var object = Object.create(null);
    38

  159. How do you search a string for a pattern

    You can use the test() method of regular expression in order to search a string for a pattern, and return true or false depending on the result.

    var object = Object.create(null);
    39

  160. What is the purpose of exec method

    The purpose of exec method is similar to test method but it executes a search for a match in a specified string and returns a result array, or null instead of returning true/false.

    var object = Object.create(null);
    40

  161. How do you change the style of a HTML element

    You can change inline style or classname of a HTML element using javascript

    1. Using style property: You can modify inline style using style property

    var object = Object.create(null);
    41

    1. Using ClassName property: It is easy to modify element class using className property

    var object = Object.create(null);
    42

  162. What would be the result of 1+2+'3'

    The output is going to be

    function func() {};
    
    new func(x, y, z);
    90. Since
    function func() {};
    
    new func(x, y, z);
    91 and
    function func() {};
    
    new func(x, y, z);
    92 are numeric values, the result of the first two digits is going to be a numeric value
    function func() {};
    
    new func(x, y, z);
    93. The next digit is a string type value because of that the addition of numeric value
    function func() {};
    
    new func(x, y, z);
    93 and string type value
    function func() {};
    
    new func(x, y, z);
    93 is just going to be a concatenation value
    function func() {};
    
    new func(x, y, z);
    90.

  163. What is a debugger statement

    The debugger statement invokes any available debugging functionality, such as setting a breakpoint. If no debugging functionality is available, this statement has no effect. For example, in the below function a debugger statement has been inserted. So execution is paused at the debugger statement just like a breakpoint in the script source.

    var object = Object.create(null);
    43

  164. What is the purpose of breakpoints in debugging

    You can set breakpoints in the javascript code once the debugger statement is executed and the debugger window pops up. At each breakpoint, javascript will stop executing, and let you examine the JavaScript values. After examining values, you can resume the execution of code using the play button.

  165. Can I use reserved words as identifiers

    No, you cannot use the reserved words as variables, labels, object or function names. Let's see one simple example,

    var object = Object.create(null);
    44

  166. How do you detect a mobile browser

    You can use regex which returns a true or false value depending on whether or not the user is browsing with a mobile.

    var object = Object.create(null);
    45

  167. How do you detect a mobile browser without regexp

    You can detect mobile browsers by simply running through a list of devices and checking if the useragent matches anything. This is an alternative solution for RegExp usage,

    var object = Object.create(null);
    46

  168. How do you get the image width and height using JS

    You can programmatically get the image and check the dimensions(width and height) using Javascript.

    var object = Object.create(null);
    47

  169. How do you make synchronous HTTP request

    Browsers provide an XMLHttpRequest object which can be used to make synchronous HTTP requests from JavaScript

    var object = Object.create(null);
    48

  170. How do you make asynchronous HTTP request

    Browsers provide an XMLHttpRequest object which can be used to make asynchronous HTTP requests from JavaScript by passing the 3rd parameter as true.

    var object = Object.create(null);
    49

  171. How do you convert date to another timezone in javascript

    You can use the toLocaleString() method to convert dates in one timezone to another. For example, let's convert current date to British English timezone as below,

    var object = Object.create(null);
    50

  172. What are the properties used to get size of window

    You can use innerWidth, innerHeight, clientWidth, clientHeight properties of windows, document element and document body objects to find the size of a window. Let's use them combination of these properties to calculate the size of a window or document,

    var object = Object.create(null);
    51

  173. What is a conditional operator in javascript

    The conditional (ternary) operator is the only JavaScript operator that takes three operands which acts as a shortcut for if statements.

    var object = Object.create(null);
    52

  174. Can you apply chaining on conditional operator

    Yes, you can apply chaining on conditional operators similar to if … else if … else if … else chain. The syntax is going to be as below,

    var object = Object.create(null);
    53

  175. What are the ways to execute javascript after page load

    You can execute javascript after page load in many different ways,

    1. window.onload:

    var object = Object.create(null);
    54

    1. document.onload:

    var object = Object.create(null);
    55

    1. body onload:

    var object = Object.create(null);
    56

  176. What is the difference between proto and prototype

    The

    function func() {};
    
    new func(x, y, z);
    97 object is the actual object that is used in the lookup chain to resolve methods, etc. Whereas
    function func() {};
    
    new func(x, y, z);
    98 is the object that is used to build
    function func() {};
    
    new func(x, y, z);
    97 when you create an object with new.

    var object = Object.create(null);
    57

    There are few more differences,

    featurePrototypeprotoAccessAll the function constructors have prototype properties.All the objects have __proto__ propertyPurposeUsed to reduce memory wastage with a single copy of functionUsed in lookup chain to resolve methods, constructors etc.ECMAScriptIntroduced in ES6Introduced in ES5UsageFrequently usedRarely used

  177. Give an example where do you really need semicolon

    It is recommended to use semicolons after every statement in JavaScript. For example, in the below case it throws an error ".. is not a function" at runtime due to missing semicolon.

    var object = Object.create(null);
    58

    and it will be interpreted as

    var object = Object.create(null);
    59

    In this case, we are passing the second function as an argument to the first function and then trying to call the result of the first function call as a function. Hence, the second function will fail with a "... is not a function" error at runtime.

  178. What is a freeze method

    The freeze() method is used to freeze an object. Freezing an object does not allow adding new properties to an object,prevents from removing and prevents changing the enumerability, configurability, or writability of existing properties. i.e, It returns the passed object and does not create a frozen copy.

    var object = Object.create(null);
    60

    Remember freezing is only applied to the top-level properties in objects but not for nested objects. For example, let's try to freeze user object which has employment details as nested object and observe that details have been changed.

    var object = Object.create(null);
    61

    Note: It causes a TypeError if the argument passed is not an object.

  179. What is the purpose of freeze method

    Below are the main benefits of using freeze method,

    1. It is used for freezing objects and arrays.
    2. It is used to make an object immutable.

  180. Why do I need to use freeze method

    In the Object-oriented paradigm, an existing API contains certain elements that are not intended to be extended, modified, or re-used outside of their current context. Hence it works as the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    00 keyword which is used in various languages.

  181. How do you detect a browser language preference

    You can use navigator object to detect a browser language preference as below,

    var object = Object.create(null);
    62

  182. How to convert string to title case with javascript

    Title case means that the first letter of each word is capitalized. You can convert a string to title case using the below function,

    var object = Object.create(null);
    63

  183. How do you detect javascript disabled in the page

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    01 tag to detect javascript disabled or not. The code block inside
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    01 gets executed when JavaScript is disabled, and is typically used to display alternative content when the page generated in JavaScript.

    var object = Object.create(null);
    64

  184. What are various operators supported by javascript

    An operator is capable of manipulating(mathematical and logical computations) a certain value or operand. There are various operators supported by JavaScript as below,

    1. Arithmetic Operators: Includes + (Addition),– (Subtraction), * (Multiplication), / (Division), % (Modulus), + + (Increment) and – – (Decrement)
    2. Comparison Operators: Includes = =(Equal),!= (Not Equal), ===(Equal with type), > (Greater than),> = (Greater than or Equal to),< (Less than),<= (Less than or Equal to)
    3. Logical Operators: Includes &&(Logical AND),||(Logical OR),!(Logical NOT)
    4. Assignment Operators: Includes = (Assignment Operator), += (Add and Assignment Operator), – = (Subtract and Assignment Operator), *= (Multiply and Assignment), /= (Divide and Assignment), %= (Modules and Assignment)
    5. Ternary Operators: It includes conditional(: ?) Operator
    6. typeof Operator: It uses to find type of variable. The syntax looks like
      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);
      03

  185. What is a rest parameter

    Rest parameter is an improved way to handle function parameters which allows us to represent an indefinite number of arguments as an array. The syntax would be as below,

    var object = Object.create(null);
    65

    For example, let's take a sum example to calculate on dynamic number of parameters,

    var object = Object.create(null);
    66

    Note: Rest parameter is added in ES2015 or ES6

  186. What happens if you do not use rest parameter as a last argument

    The rest parameter should be the last argument, as its job is to collect all the remaining arguments into an array. For example, if you define a function like below it doesn’t make any sense and will throw an error.

    var object = Object.create(null);
    67

  187. What are the bitwise operators available in javascript

    Below are the list of bitwise logical operators used in JavaScript

    1. Bitwise AND ( & )
    2. Bitwise OR ( | )
    3. Bitwise XOR ( ^ )
    4. Bitwise NOT ( ~ )
    5. Left Shift ( << )
    6. Sign Propagating Right Shift ( >> )
    7. Zero fill Right Shift ( >>> )

  188. What is a spread operator

    Spread operator allows iterables( arrays / objects / strings ) to be expanded into single arguments/elements. Let's take an example to see this behavior,

    var object = Object.create(null);
    68

  189. How do you determine whether object is frozen or not

    Object.isFrozen() method is used to determine if an object is frozen or not.An object is frozen if all of the below conditions hold true,

    1. If it is not extensible.
    2. If all of its properties are non-configurable.
    3. If all its data properties are non-writable. The usage is going to be as follows,

    var object = Object.create(null);
    69

  190. How do you determine two values same or not using object

    The Object.is() method determines whether two values are the same value. For example, the usage with different types of values would be,

    var object = Object.create(null);
    70

    Two values are the same if one of the following holds:

    1. both undefined
    2. both null
    3. both true or both false
    4. both strings of the same length with the same characters in the same order
    5. both the same object (means both object have same reference)
    6. both numbers and both +0 both -0 both NaN both non-zero and both not NaN and both have the same value.

  191. What is the purpose of using object is method

    Some of the applications of Object's

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    04 method are follows,

    1. It is used for comparison of two strings.
    2. It is used for comparison of two numbers.
    3. It is used for comparing the polarity of two numbers.
    4. It is used for comparison of two objects.

  192. How do you copy properties from one object to other

    You can use the Object.assign() method which is used to copy the values and properties from one or more source objects to a target object. It returns the target object which has properties and values copied from the source objects. The syntax would be as below,

    var object = Object.create(null);
    71

    Let's take example with one source and one target object,

    var object = Object.create(null);
    72

    As observed in the above code, there is a common property(

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    05) from source to target so it's value has been overwritten.

  193. What are the applications of assign method

    Below are the some of main applications of Object.assign() method,

    1. It is used for cloning an object.
    2. It is used to merge objects with the same properties.

  194. What is a proxy object

    The Proxy object is used to define custom behavior for fundamental operations such as property lookup, assignment, enumeration, function invocation, etc. The syntax would be as follows,

    var object = Object.create(null);
    73

    Let's take an example of proxy object,

    var object = Object.create(null);
    74

    In the above code, it uses

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    06 handler which define the behavior of the proxy when an operation is performed on it

  195. What is the purpose of seal method

    The Object.seal() method is used to seal an object, by preventing new properties from being added to it and marking all existing properties as non-configurable. But values of present properties can still be changed as long as they are writable. Let's see the below example to understand more about seal() method

    var object = Object.create(null);
    75

  196. What are the applications of seal method

    Below are the main applications of Object.seal() method,

    1. It is used for sealing objects and arrays.
    2. It is used to make an object immutable.

  197. What are the differences between freeze and seal methods

    If an object is frozen using the Object.freeze() method then its properties become immutable and no changes can be made in them whereas if an object is sealed using the Object.seal() method then the changes can be made in the existing properties of the object.

  198. How do you determine if an object is sealed or not

    The Object.isSealed() method is used to determine if an object is sealed or not. An object is sealed if all of the below conditions hold true

    1. If it is not extensible.
    2. If all of its properties are non-configurable.
    3. If it is not removable (but not necessarily non-writable). Let's see it in the action

    var object = Object.create(null);
    76

  199. How do you get enumerable key and value pairs

    The Object.entries() method is used to return an array of a given object's own enumerable string-keyed property [key, value] pairs, in the same order as that provided by a for...in loop. Let's see the functionality of object.entries() method in an example,

    var object = Object.create(null);
    77

    Note: The order is not guaranteed as object defined.

  200. What is the main difference between Object.values and Object.entries method

    The Object.values() method's behavior is similar to Object.entries() method but it returns an array of values instead [key,value] pairs.

    var object = Object.create(null);
    78

  201. How can you get the list of keys of any object

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    07 method which is used to return an array of a given object's own property names, in the same order as we get with a normal loop. For example, you can get the keys of a user object,

    var object = Object.create(null);
    79

  202. How do you create an object with prototype

    The Object.create() method is used to create a new object with the specified prototype object and properties. i.e, It uses an existing object as the prototype of the newly created object. It returns a new object with the specified prototype object and properties.

    var object = Object.create(null);
    80

  203. What is a WeakSet

    WeakSet is used to store a collection of weakly(weak references) held objects. The syntax would be as follows,

    var object = Object.create(null);
    81

    Let's see the below example to explain it's behavior,

    var object = Object.create(null);
    82

  204. What are the differences between WeakSet and Set

    The main difference is that references to objects in Set are strong while references to objects in WeakSet are weak. i.e, An object in WeakSet can be garbage collected if there is no other reference to it. Other differences are,

    1. Sets can store any value Whereas WeakSets can store only collections of objects
    2. WeakSet does not have size property unlike Set
    3. WeakSet does not have methods such as clear, keys, values, entries, forEach.
    4. WeakSet is not iterable.

  205. List down the collection of methods available on WeakSet

    Below are the list of methods available on WeakSet,

    1. add(value): A new object is appended with the given value to the weakset
    2. delete(value): Deletes the value from the WeakSet collection.
    3. has(value): It returns true if the value is present in the WeakSet Collection, otherwise it returns false.

    Let's see the functionality of all the above methods in an example,

    var object = Object.create(null);
    83

  206. What is a WeakMap

    The WeakMap object is a collection of key/value pairs in which the keys are weakly referenced. In this case, keys must be objects and the values can be arbitrary values. The syntax is looking like as below,

    var object = Object.create(null);
    84

    Let's see the below example to explain it's behavior,

    var object = Object.create(null);
    85

  207. What are the differences between WeakMap and Map

    The main difference is that references to key objects in Map are strong while references to key objects in WeakMap are weak. i.e, A key object in WeakMap can be garbage collected if there is no other reference to it. Other differences are,

    1. Maps can store any key type Whereas WeakMaps can store only collections of key objects
    2. WeakMap does not have size property unlike Map
    3. WeakMap does not have methods such as clear, keys, values, entries, forEach.
    4. WeakMap is not iterable.

  208. List down the collection of methods available on WeakMap

    Below are the list of methods available on WeakMap,

    1. set(key, value): Sets the value for the key in the WeakMap object. Returns the WeakMap object.
    2. delete(key): Removes any value associated to the key.
    3. has(key): Returns a Boolean asserting whether a value has been associated to the key in the WeakMap object or not.
    4. get(key): Returns the value associated to the key, or undefined if there is none. Let's see the functionality of all the above methods in an example,

    var object = Object.create(null);
    86

  209. What is the purpose of uneval

    The uneval() is an inbuilt function which is used to create a string representation of the source code of an Object. It is a top-level function and is not associated with any object. Let's see the below example to know more about it's functionality,

    var object = Object.create(null);
    87

  210. How do you encode an URL

    The encodeURI() function is used to encode complete URI which has special characters except (, / ? : @ & = + $ #) characters.

    var object = Object.create(null);
    88

  211. How do you decode an URL

    The decodeURI() function is used to decode a Uniform Resource Identifier (URI) previously created by encodeURI().

    var object = Object.create(null);
    89

  212. How do you print the contents of web page

    The window object provided a print() method which is used to print the contents of the current window. It opens a Print dialog box which lets you choose between various printing options. Let's see the usage of print method in an example,

    var object = Object.create(null);
    90

    Note: In most browsers, it will block while the print dialog is open.

  213. What is the difference between uneval and eval

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    08 function returns the source of a given object; whereas the
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    09 function does the opposite, by evaluating that source code in a different memory area. Let's see an example to clarify the difference,

    var object = Object.create(null);
    91

  214. What is an anonymous function

    An anonymous function is a function without a name! Anonymous functions are commonly assigned to a variable name or used as a callback function. The syntax would be as below,

    var object = Object.create(null);
    92

    Let's see the above anonymous function in an example,

    var object = Object.create(null);
    93

  215. What is the precedence order between local and global variables

    A local variable takes precedence over a global variable with the same name. Let's see this behavior in an example.

    var object = Object.create(null);
    94

  216. What are javascript accessors

    ECMAScript 5 introduced javascript object accessors or computed properties through getters and setters. Getters uses the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    06 keyword whereas Setters uses the
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    11 keyword.

    var object = Object.create(null);
    95

  217. How do you define property on Object constructor

    The Object.defineProperty() static method is used to define a new property directly on an object, or modify an existing property on an object, and returns the object. Let's see an example to know how to define property,

    var object = Object.create(null);
    96

  218. What is the difference between get and defineProperty

    Both have similar results until unless you use classes. If you use

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    06 the property will be defined on the prototype of the object whereas using
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    13 the property will be defined on the instance it is applied to.

  219. What are the advantages of Getters and Setters

    Below are the list of benefits of Getters and Setters,

    1. They provide simpler syntax
    2. They are used for defining computed properties, or accessors in JS.
    3. Useful to provide equivalence relation between properties and methods
    4. They can provide better data quality
    5. Useful for doing things behind the scenes with the encapsulated logic.

  220. Can I add getters and setters using defineProperty method

    Yes, You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    13 method to add Getters and Setters. For example, the below counter object uses increment, decrement, add and subtract properties,

    var object = Object.create(null);
    97

  221. What is the purpose of switch-case

    The switch case statement in JavaScript is used for decision making purposes. In a few cases, using the switch case statement is going to be more convenient than if-else statements. The syntax would be as below,

    var object = Object.create(null);
    98

    The above multi-way branch statement provides an easy way to dispatch execution to different parts of code based on the value of the expression.

  222. What are the conventions to be followed for the usage of switch case

    Below are the list of conventions should be taken care,

    1. The expression can be of type either number or string.
    2. Duplicate values are not allowed for the expression.
    3. The default statement is optional. If the expression passed to switch does not match with any case value then the statement within default case will be executed.
    4. The break statement is used inside the switch to terminate a statement sequence.
    5. The break statement is optional. But if it is omitted, the execution will continue on into the next case.

  223. What are primitive data types

    A primitive data type is data that has a primitive value (which has no properties or methods). There are 7 types of primitive data types.

    1. string
    2. number
    3. boolean
    4. null
    5. undefined
    6. bigint
    7. symbol

  224. What are the different ways to access object properties

    There are 3 possible ways for accessing the property of an object.

    1. Dot notation: It uses dot for accessing the properties

    var object = Object.create(null);
    99

    1. Square brackets notation: It uses square brackets for property access

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    00

    1. Expression notation: It uses expression in the square brackets

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    01

  225. What are the function parameter rules

    JavaScript functions follow below rules for parameters,

    1. The function definitions do not specify data types for parameters.
    2. Do not perform type checking on the passed arguments.
    3. Do not check the number of arguments received. i.e, The below function follows the above rules,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    02

  226. What is an error object

    An error object is a built in error object that provides error information when an error occurs. It has two properties: name and message. For example, the below function logs error details,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    03

  227. When you get a syntax error

    A SyntaxError is thrown if you try to evaluate code with a syntax error. For example, the below missing quote for the function parameter throws a syntax error

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    04

  228. What are the different error names from error object

    There are 6 different types of error names returned from error object,

    Error NameDescriptionEvalErrorAn error has occurred in the eval() functionRangeErrorAn error has occurred with a number "out of range"ReferenceErrorAn error due to an illegal referenceSyntaxErrorAn error due to a syntax errorTypeErrorAn error due to a type errorURIErrorAn error due to encodeURI()

  229. What are the various statements in error handling

    Below are the list of statements used in an error handling,

    1. try: This statement is used to test a block of code for errors
    2. catch: This statement is used to handle the error
    3. throw: This statement is used to create custom errors.
    4. finally: This statement is used to execute code after try and catch regardless of the result.

  230. What are the two types of loops in javascript

    1. Entry Controlled loops: In this kind of loop type, the test condition is tested before entering the loop body. For example, For Loop and While Loop comes under this category.
    2. Exit Controlled Loops: In this kind of loop type, the test condition is tested or evaluated at the end of the loop body. i.e, the loop body will execute at least once irrespective of test condition true or false. For example, do-while loop comes under this category.

  231. What is nodejs

    Node.js is a server-side platform built on Chrome's JavaScript runtime for easily building fast and scalable network applications. It is an event-based, non-blocking, asynchronous I/O runtime that uses Google's V8 JavaScript engine and libuv library.

  232. What is an Intl object

    The Intl object is the namespace for the ECMAScript Internationalization API, which provides language sensitive string comparison, number formatting, and date and time formatting. It provides access to several constructors and language sensitive functions.

  233. How do you perform language specific date and time formatting

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    15 object which is a constructor for objects that enable language-sensitive date and time formatting. Let's see this behavior with an example,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    05

  234. What is an Iterator

    An iterator is an object which defines a sequence and a return value upon its termination. It implements the Iterator protocol with a

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    16 method which returns an object with two properties:
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    17 (the next value in the sequence) and
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    18 (which is true if the last value in the sequence has been consumed).

  235. How does synchronous iteration works

    Synchronous iteration was introduced in ES6 and it works with below set of components,

    Iterable: It is an object which can be iterated over via a method whose key is Symbol.iterator. Iterator: It is an object returned by invoking

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    19 on an iterable. This iterator object wraps each iterated element in an object and returns it via
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    16 method one by one. IteratorResult: It is an object returned by
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    16 method. The object contains two properties; the
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    17 property contains an iterated element and the
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    18 property determines whether the element is the last element or not.

    Let's demonstrate synchronous iteration with an array as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    06

  236. What is an event loop

    The Event Loop is a queue of callback functions. When an async function executes, the callback function is pushed into the queue. The JavaScript engine doesn't start processing the event loop until the async function has finished executing the code. Note: It allows Node.js to perform non-blocking I/O operations even though JavaScript is single-threaded.

  237. What is call stack

    Call Stack is a data structure for javascript interpreters to keep track of function calls(creates execution context) in the program. It has two major actions,

    1. Whenever you call a function for its execution, you are pushing it to the stack.
    2. Whenever the execution is completed, the function is popped out of the stack.

    Let's take an example and it's state representation in a diagram format

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    07

    The above code processed in a call stack as below,

    1. Add the
      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);
      24 function to the call stack list and execute the code.
    2. Add the
      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);
      25 function to the call stack list and execute the code.
    3. Delete the
      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);
      25 function from our call stack list.
    4. Delete the
      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);
      24 function from the call stack list since there are no items anymore.

    Cara menggunakan javascript technical interview questions

  238. What is an event queue

    The event queue follows the queue data structure. It stores async callbacks to be added to the call stack. It is also known as the Callback Queue or Macrotask Queue.

    Whenever the call stack receives an async function, it is moved into the Web API. Based on the function, Web API executes it and awaits the result. Once it is finished, it moves the callback into the event queue (the callback of the promise is moved into the microtask queue).

    The event queue constantly checks whether or not the call stack is empty. Once the call stack is empty and there is a callback in the event queue, the event queue moves the callback into the call stack. If there is a callback in the microtask queue as well, it is moved first. The microtask queue has a higher priority than the event queue.

  239. What is a decorator

    A decorator is an expression that evaluates to a function and that takes the target, name, and decorator descriptor as arguments. Also, it optionally returns a decorator descriptor to install on the target object. Let's define admin decorator for user class at design time,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    08

  240. What are the properties of Intl object

    Below are the list of properties available on Intl object,

    1. Collator: These are the objects that enable language-sensitive string comparison.
    2. DateTimeFormat: These are the objects that enable language-sensitive date and time formatting.
    3. ListFormat: These are the objects that enable language-sensitive list formatting.
    4. NumberFormat: Objects that enable language-sensitive number formatting.
    5. PluralRules: Objects that enable plural-sensitive formatting and language-specific rules for plurals.
    6. RelativeTimeFormat: Objects that enable language-sensitive relative time formatting.

  241. What is an Unary operator

    The unary(+) operator is used to convert a variable to a number.If the variable cannot be converted, it will still become a number but with the value NaN. Let's see this behavior in an action.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    09

  242. How do you sort elements in an array

    The sort() method is used to sort the elements of an array in place and returns the sorted array. The example usage would be as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    10

  243. What is the purpose of compareFunction while sorting arrays

    The compareFunction is used to define the sort order. If omitted, the array elements are converted to strings, then sorted according to each character's Unicode code point value. Let's take an example to see the usage of compareFunction,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    11

  244. How do you reversing an array

    You can use the reverse() method to reverse the elements in an array. This method is useful to sort an array in descending order. Let's see the usage of reverse() method in an example,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    12

  245. How do you find min and max value in an array

    You can use

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    28 and
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    29 methods on array variables to find the minimum and maximum elements within an array. Let's create two functions to find the min and max value with in an array,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    13

  246. How do you find min and max values without Math functions

    You can write functions which loop through an array comparing each value with the lowest value or highest value to find the min and max values. Let's create those functions to find min and max values,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    14

  247. What is an empty statement and purpose of it

    The empty statement is a semicolon (;) indicating that no statement will be executed, even if JavaScript syntax requires one. Since there is no action with an empty statement you might think that it's usage is quite less, but the empty statement is occasionally useful when you want to create a loop that has an empty body. For example, you can initialize an array with zero values as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    15

  248. How do you get metadata of a module

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    30 object which is a meta-property exposing context-specific meta data to a JavaScript module. It contains information about the current module, such as the module's URL. In browsers, you might get different meta data than NodeJS.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    16

  249. What is a comma operator

    The comma operator is used to evaluate each of its operands from left to right and returns the value of the last operand. This is totally different from comma usage within arrays, objects, and function arguments and parameters. For example, the usage for numeric expressions would be as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    17

  250. What is the advantage of a comma operator

    It is normally used to include multiple expressions in a location that requires a single expression. One of the common usages of this comma operator is to supply multiple parameters in a

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    31 loop. For example, the below for loop uses multiple expressions in a single location using comma operator,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    18

    You can also use the comma operator in a return statement where it processes before returning.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    19

  251. What is typescript

    TypeScript is a typed superset of JavaScript created by Microsoft that adds optional types, classes, async/await, and many other features, and compiles to plain JavaScript. Angular built entirely in TypeScript and used as a primary language. You can install it globally as

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    20

    Let's see a simple example of TypeScript usage,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    21

    The greeting method allows only string type as argument.

  252. What are the differences between javascript and typescript

    Below are the list of differences between javascript and typescript,

    featuretypescriptjavascriptLanguage paradigmObject oriented programming languageScripting languageTyping supportSupports static typingIt has dynamic typingModulesSupportedNot supportedInterfaceIt has interfaces conceptDoesn't support interfacesOptional parametersFunctions support optional parametersNo support of optional parameters for functions

  253. What are the advantages of typescript over javascript

    Below are some of the advantages of typescript over javascript,

    1. TypeScript is able to find compile time errors at the development time only and it makes sures less runtime errors. Whereas javascript is an interpreted language.
    2. TypeScript is strongly-typed or supports static typing which allows for checking type correctness at compile time. This is not available in javascript.
    3. TypeScript compiler can compile the .ts files into ES3,ES4 and ES5 unlike ES6 features of javascript which may not be supported in some browsers.

  254. What is an object initializer

    An object initializer is an expression that describes the initialization of an Object. The syntax for this expression is represented as a comma-delimited list of zero or more pairs of property names and associated values of an object, enclosed in curly braces ({}). This is also known as literal notation. It is one of the ways to create an object.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    22

  255. What is a constructor method

    The constructor method is a special method for creating and initializing an object created within a class. If you do not specify a constructor method, a default constructor is used. The example usage of constructor would be as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    23

  256. What happens if you write constructor more than once in a class

    The "constructor" in a class is a special method and it should be defined only once in a class. i.e, If you write a constructor method more than once in a class it will throw a

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    32 error.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    24

  257. How do you call the constructor of a parent class

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    33 keyword to call the constructor of a parent class. Remember that
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    34 must be called before using 'this' reference. Otherwise it will cause a reference error. Let's the usage of it,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    25

  258. How do you get the prototype of an object

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    35 method to return the prototype of the specified object. i.e. The value of the internal
    function func() {};
    
    new func(x, y, z);
    98 property. If there are no inherited properties then
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    37 value is returned.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    26

  259. What happens If I pass string type for getPrototype method

    In ES5, it will throw a TypeError exception if the obj parameter isn't an object. Whereas in ES2015, the parameter will be coerced to an

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    38.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    27

  260. How do you set prototype of one object to another

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    39 method that sets the prototype (i.e., the internal
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    40 property) of a specified object to another object or null. For example, if you want to set prototype of a square object to rectangle object would be as follows,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    28

  261. How do you check whether an object can be extendable or not

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    41 method is used to determine if an object is extendable or not. i.e, Whether it can have new properties added to it or not.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    29

    Note: By default, all the objects are extendable. i.e, The new properties can be added or modified.

  262. How do you prevent an object to extend

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    42 method is used to prevent new properties from ever being added to an object. In other words, it prevents future extensions to the object. Let's see the usage of this property,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    30

  263. What are the different ways to make an object non-extensible

    You can mark an object non-extensible in 3 ways,

    1. Object.preventExtensions
    2. Object.seal
    3. Object.freeze

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    31

  264. How do you define multiple properties on an object

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    43 method is used to define new or modify existing properties directly on an object and returning the object. Let's define multiple properties on an empty object,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    32

  265. What is MEAN in javascript

    The MEAN (MongoDB, Express, AngularJS, and Node.js) stack is the most popular open-source JavaScript software tech stack available for building dynamic web apps where you can write both the server-side and client-side halves of the web project entirely in JavaScript.

  266. What Is Obfuscation in javascript

    Obfuscation is the deliberate act of creating obfuscated javascript code(i.e, source or machine code) that is difficult for humans to understand. It is something similar to encryption, but a machine can understand the code and execute it. Let's see the below function before Obfuscation,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    33

    And after the code Obfuscation, it would be appeared as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    34

  267. Why do you need Obfuscation

    Below are the few reasons for Obfuscation,

    1. The Code size will be reduced. So data transfers between server and client will be fast.
    2. It hides the business logic from outside world and protects the code from others
    3. Reverse engineering is highly difficult
    4. The download time will be reduced

  268. What is Minification

    Minification is the process of removing all unnecessary characters(empty spaces are removed) and variables will be renamed without changing it's functionality. It is also a type of obfuscation .

  269. What are the advantages of minification

    Normally it is recommended to use minification for heavy traffic and intensive requirements of resources. It reduces file sizes with below benefits,

    1. Decreases loading times of a web page
    2. Saves bandwidth usages

  270. What are the differences between Obfuscation and Encryption

    Below are the main differences between Obfuscation and Encryption,

    FeatureObfuscationEncryptionDefinitionChanging the form of any data in any other formChanging the form of information to an unreadable format by using a keyA key to decodeIt can be decoded without any keyIt is requiredTarget data formatIt will be converted to a complex formConverted into an unreadable format

  271. What are the common tools used for minification

    There are many online/offline tools to minify the javascript files,

    1. Google's Closure Compiler
    2. UglifyJS2
    3. jsmin
    4. javascript-minifier.com/
    5. prettydiff.com

  272. How do you perform form validation using javascript

    JavaScript can be used to perform HTML form validation. For example, if the form field is empty, the function needs to notify, and return false, to prevent the form being submitted. Lets' perform user login in an html form,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    35

    And the validation on user login is below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    36

  273. How do you perform form validation without javascript

    You can perform HTML form validation automatically without using javascript. The validation enabled by applying the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    44 attribute to prevent form submission when the input is empty.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    37

    Note: Automatic form validation does not work in Internet Explorer 9 or earlier.

  274. What are the DOM methods available for constraint validation

    The below DOM methods are available for constraint validation on an invalid input,

    1. checkValidity(): It returns true if an input element contains valid data.
    2. setCustomValidity(): It is used to set the validationMessage property of an input element. Let's take an user login form with DOM validations

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    38

  275. What are the available constraint validation DOM properties

    Below are the list of some of the constraint validation DOM properties available,

    1. validity: It provides a list of boolean properties related to the validity of an input element.
    2. validationMessage: It displays the message when the validity is false.
    3. willValidate: It indicates if an input element will be validated or not.

  276. What are the list of validity properties

    The validity property of an input element provides a set of properties related to the validity of data.

    1. customError: It returns true, if a custom validity message is set.
    2. patternMismatch: It returns true, if an element's value does not match its pattern attribute.
    3. rangeOverflow: It returns true, if an element's value is greater than its max attribute.
    4. rangeUnderflow: It returns true, if an element's value is less than its min attribute.
    5. stepMismatch: It returns true, if an element's value is invalid according to step attribute.
    6. tooLong: It returns true, if an element's value exceeds its maxLength attribute.
    7. typeMismatch: It returns true, if an element's value is invalid according to type attribute.
    8. valueMissing: It returns true, if an element with a required attribute has no value.
    9. valid: It returns true, if an element's value is valid.

  277. Give an example usage of rangeOverflow property

    If an element's value is greater than its max attribute then rangeOverflow property returns true. For example, the below form submission throws an error if the value is more than 100,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    39

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    40

  278. Is enums feature available in javascript

    No, javascript does not natively support enums. But there are different kinds of solutions to simulate them even though they may not provide exact equivalents. For example, you can use freeze or seal on object,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    41

  279. What is an enum

    An enum is a type restricting variables to one value from a predefined set of constants. JavaScript has no enums but typescript provides built-in enum support.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    42

  280. How do you list all properties of an object

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    45 method which returns an array of all properties found directly in a given object. Let's the usage of it in an example,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    43

  281. How do you get property descriptors of an object

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    46 method which returns all own property descriptors of a given object. The example usage of this method is below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    44

  282. What are the attributes provided by a property descriptor

    A property descriptor is a record which has the following attributes

    1. value: The value associated with the property
    2. writable: Determines whether the value associated with the property can be changed or not
    3. configurable: Returns true if the type of this property descriptor can be changed and if the property can be deleted from the corresponding object.
    4. enumerable: Determines whether the property appears during enumeration of the properties on the corresponding object or not.
    5. set: A function which serves as a setter for the property
    6. get: A function which serves as a getter for the property

  283. How do you extend classes

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    47 keyword is used in class declarations/expressions to create a class which is a child of another class. It can be used to subclass custom classes as well as built-in objects. The syntax would be as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    45

    Let's take an example of Square subclass from Polygon parent class,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    25

  284. How do I modify the url without reloading the page

    The

    function func() {};
    
    new func(x, y, z);
    77 property will be helpful to modify the url but it reloads the page. HTML5 introduced the
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    49 and
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    50 methods, which allow you to add and modify history entries, respectively. For example, you can use pushState as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    47

  285. How do you check whether an array includes a particular value or not

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    51 method is used to determine whether an array includes a particular value among its entries by returning either true or false. Let's see an example to find an element(numeric and string) within an array.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    48

  286. How do you compare scalar arrays

    You can use length and every method of arrays to compare two scalar(compared directly using ===) arrays. The combination of these expressions can give the expected result,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    49

    If you would like to compare arrays irrespective of order then you should sort them before,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    50

  287. How to get the value from get parameters

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    52 object accepts the url string and
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    53 property of this object can be used to access the get parameters. Remember that you may need to use polyfill or
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    54 to access the URL in older browsers(including IE).

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    51

  288. How do you print numbers with commas as thousand separators

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    55 method which returns a string with a language-sensitive representation such as thousand separator,currency etc of this number.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    52

  289. What is the difference between java and javascript

    Both are totally unrelated programming languages and no relation between them. Java is statically typed, compiled, runs on its own VM. Whereas Javascript is dynamically typed, interpreted, and runs in a browser and nodejs environments. Let's see the major differences in a tabular format,

    FeatureJavaJavaScriptTypedIt's a strongly typed languageIt's a dynamic typed languageParadigmObject oriented programmingPrototype based programmingScopingBlock scopedFunction-scopedConcurrencyThread basedevent basedMemoryUses more memoryUses less memory. Hence it will be used for web pages

  290. Does JavaScript supports namespace

    JavaScript doesn’t support namespace by default. So if you create any element(function, method, object, variable) then it becomes global and pollutes the global namespace. Let's take an example of defining two functions without any namespace,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    53

    It always calls the second function definition. In this case, namespace will solve the name collision problem.

  291. How do you declare namespace

    Even though JavaScript lacks namespaces, we can use Objects , IIFE to create namespaces.

    1. Using Object Literal Notation: Let's wrap variables and functions inside an Object literal which acts as a namespace. After that you can access them using object notation

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    54

    1. Using IIFE (Immediately invoked function expression): The outer pair of parentheses of IIFE creates a local scope for all the code inside of it and makes the anonymous function a function expression. Due to that, you can create the same function in two different function expressions to act as a namespace.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    55

    1. Using a block and a let/const declaration: In ECMAScript 6, you can simply use a block and a let declaration to restrict the scope of a variable to a block.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    56

  292. How do you invoke javascript code in an iframe from parent page

    Initially iFrame needs to be accessed using either

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    56 or
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    57. After that
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    58 property of iFrame gives the access for targetFunction

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    57

  293. How do get the timezone offset from date

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    59 method of the date object. This method returns the time zone difference, in minutes, from current locale (host system settings) to UTC

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    58

  294. How do you load CSS and JS files dynamically

    You can create both link and script elements in the DOM and append them as child to head tag. Let's create a function to add script and style resources as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    59

  295. What are the different methods to find HTML elements in DOM

    If you want to access any element in an HTML page, you need to start with accessing the document object. Later you can use any of the below methods to find the HTML element,

    1. document.getElementById(id): It finds an element by Id
    2. document.getElementsByTagName(name): It finds an element by tag name
    3. document.getElementsByClassName(name): It finds an element by class name

  296. What is jQuery

    jQuery is a popular cross-browser JavaScript library that provides Document Object Model (DOM) traversal, event handling, animations and AJAX interactions by minimizing the discrepancies across browsers. It is widely famous with its philosophy of “Write less, do more”. For example, you can display welcome message on the page load using jQuery as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    60

    Note: You can download it from jquery's official site or install it from CDNs, like google.

  297. What is V8 JavaScript engine

    V8 is an open source high-performance JavaScript engine used by the Google Chrome browser, written in C++. It is also being used in the node.js project. It implements ECMAScript and WebAssembly, and runs on Windows 7 or later, macOS 10.12+, and Linux systems that use x64, IA-32, ARM, or MIPS processors. Note: It can run standalone, or can be embedded into any C++ application.

  298. Why do we call javascript as dynamic language

    JavaScript is a loosely typed or a dynamic language because variables in JavaScript are not directly associated with any particular value type, and any variable can be assigned/reassigned with values of all types.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    61

  299. What is a void operator

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    60 operator evaluates the given expression and then returns undefined(i.e, without returning value). The syntax would be as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    62

    Let's display a message without any redirection or reload

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    63

    Note: This operator is often used to obtain the undefined primitive value, using "void(0)".

  300. How to set the cursor to wait

    The cursor can be set to wait in JavaScript by using the property "cursor". Let's perform this behavior on page load using the below function.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    64

    and this function invoked on page load

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    65

  301. How do you create an infinite loop

    You can create infinite loops using for and while loops without using any expressions. The for loop construct or syntax is better approach in terms of ESLint and code optimizer tools,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    66

  302. Why do you need to avoid with statement

    JavaScript's with statement was intended to provide a shorthand for writing recurring accesses to objects. So it can help reduce file size by reducing the need to repeat a lengthy object reference without performance penalty. Let's take an example where it is used to avoid redundancy when accessing an object several times.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    67

    Using

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    61 it turns this into:

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    68

    But this

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    61 statement creates performance problems since one cannot predict whether an argument will refer to a real variable or to a property inside the with argument.

  303. What is the output of below for loops

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    69

    The output of the above for loops is 4 4 4 4 and 0 1 2 3

    Explanation: Due to the event queue/loop of javascript, the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    63 callback function is called after the loop has been executed. Since the variable i is declared with the
    function func() {};
    
    new func(x, y, z);
    40 keyword it became a global variable and the value was equal to 4 using iteration when the time
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    63 function is invoked. Hence, the output of the first loop is
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    66.

    Whereas in the second loop, the variable i is declared as the

    function func() {};
    
    new func(x, y, z);
    39 keyword it becomes a block scoped variable and it holds a new value(0, 1 ,2 3) for each iteration. Hence, the output of the first loop is
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    68.

  304. List down some of the features of ES6

    Below are the list of some new features of ES6,

    1. Support for constants or immutable variables
    2. Block-scope support for variables, constants and functions
    3. Arrow functions
    4. Default parameters
    5. Rest and Spread Parameters
    6. Template Literals
    7. Multi-line Strings
    8. Destructuring Assignment
    9. Enhanced Object Literals
    10. Promises
    11. Classes
    12. Modules

  305. What is ES6

    ES6 is the sixth edition of the javascript language and it was released in June 2015. It was initially known as ECMAScript 6 (ES6) and later renamed to ECMAScript 2015. Almost all the modern browsers support ES6 but for the old browsers there are many transpilers, like Babel.js etc.

  306. Can I redeclare let and const variables

    No, you cannot redeclare let and const variables. If you do, it throws below error

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    70

    Explanation: The variable declaration with

    function func() {};
    
    new func(x, y, z);
    40 keyword refers to a function scope and the variable is treated as if it were declared at the top of the enclosing scope due to hoisting feature. So all the multiple declarations contributing to the same hoisted variable without any error. Let's take an example of re-declaring variables in the same scope for both var and let/const variables.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    71

    The block-scoped multi-declaration throws syntax error,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    72

  307. Is const variable makes the value immutable

    No, the const variable doesn't make the value immutable. But it disallows subsequent assignments(i.e, You can declare with assignment but can't assign another value later)

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    73

  308. What are default parameters

    In E5, we need to depend on logical OR operators to handle default values of function parameters. Whereas in ES6, Default function parameters feature allows parameters to be initialized with default values if no value or undefined is passed. Let's compare the behavior with an examples,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    74

    The default parameters makes the initialization more simpler,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    75

  309. What are template literals

    Template literals or template strings are string literals allowing embedded expressions. These are enclosed by the back-tick (`) character instead of double or single quotes. In E6, this feature enables using dynamic expressions as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    76

    In ES5, you need break string like below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    77

    Note: You can use multi-line strings and string interpolation features with template literals.

  310. How do you write multi-line strings in template literals

    In ES5, you would have to use newline escape characters('\n') and concatenation symbols(+) in order to get multi-line strings.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    78

    Whereas in ES6, You don't need to mention any newline sequence character,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    79

  311. What are nesting templates

    The nesting template is a feature supported within template literals syntax to allow inner backticks inside a placeholder ${ } within the template. For example, the below nesting template is used to display the icons based on user permissions whereas outer template checks for platform type,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    80

    You can write the above use case without nesting template features as well. However, the nesting template feature is more compact and readable.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    81

  312. What are tagged templates

    Tagged templates are the advanced form of templates in which tags allow you to parse template literals with a function. The tag function accepts the first parameter as an array of strings and remaining parameters as expressions. This function can also return manipulated strings based on parameters. Let's see the usage of this tagged template behavior of an IT professional skill set in an organization,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    82

  313. What are raw strings

    ES6 provides a raw strings feature using the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    70 method which is used to get the raw string form of template strings. This feature allows you to access the raw strings as they were entered, without processing escape sequences. For example, the usage would be as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    83

    If you don't use raw strings, the newline character sequence will be processed by displaying the output in multiple lines

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    84

    Also, the raw property is available on the first argument to the tag function

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    85

  314. What is destructuring assignment

    The destructuring assignment is a JavaScript expression that makes it possible to unpack values from arrays or properties from objects into distinct variables. Let's get the month values from an array using destructuring assignment

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    86

    and you can get user properties of an object using destructuring assignment,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    87

  315. What are default values in destructuring assignment

    A variable can be assigned a default value when the value unpacked from the array or object is undefined during destructuring assignment. It helps to avoid setting default values separately for each assignment. Let's take an example for both arrays and object use cases,

    Arrays destructuring:

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    88

    Objects destructuring:

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    89

  316. How do you swap variables in destructuring assignment

    If you don't use destructuring assignment, swapping two values requires a temporary variable. Whereas using a destructuring feature, two variable values can be swapped in one destructuring expression. Let's swap two number variables in array destructuring assignment,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    90

  317. What are enhanced object literals

    Object literals make it easy to quickly create objects with properties inside the curly braces. For example, it provides shorter syntax for common object property definition as below.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    91

  318. What are dynamic imports

    The dynamic imports using

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    71 function syntax allows us to load modules on demand by using promises or the async/await syntax. Currently this feature is in stage4 proposal. The main advantage of dynamic imports is reduction of our bundle's sizes, the size/payload response of our requests and overall improvements in the user experience. The syntax of dynamic imports would be as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    92

  319. What are the use cases for dynamic imports

    Below are some of the use cases of using dynamic imports over static imports,

    1. Import a module on-demand or conditionally. For example, if you want to load a polyfill on legacy browser

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    93

    1. Compute the module specifier at runtime. For example, you can use it for internationalization.

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    94

    1. Import a module from within a regular script instead a module.

  320. What are typed arrays

    Typed arrays are array-like objects from ECMAScript 6 API for handling binary data. JavaScript provides 8 Typed array types,

    1. Int8Array: An array of 8-bit signed integers
    2. Int16Array: An array of 16-bit signed integers
    3. Int32Array: An array of 32-bit signed integers
    4. Uint8Array: An array of 8-bit unsigned integers
    5. Uint16Array: An array of 16-bit unsigned integers
    6. Uint32Array: An array of 32-bit unsigned integers
    7. Float32Array: An array of 32-bit floating point numbers
    8. Float64Array: An array of 64-bit floating point numbers

    For example, you can create an array of 8-bit signed integers as below

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    95

  321. What are the advantages of module loaders

    The module loaders provides the below features,

    1. Dynamic loading
    2. State isolation
    3. Global namespace isolation
    4. Compilation hooks
    5. Nested virtualization

  322. What is collation

    Collation is used for sorting a set of strings and searching within a set of strings. It is parameterized by locale and aware of Unicode. Let's take comparison and sorting features,

    1. Comparison:

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    96

    1. Sorting:

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    97

  323. What is for...of statement

    The for...of statement creates a loop iterating over iterable objects or elements such as built-in String, Array, Array-like objects (like arguments or NodeList), TypedArray, Map, Set, and user-defined iterables. The basic usage of for...of statement on arrays would be as below,

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    98

  324. What is the output of below spread operator array

    var object = {
         name: "Sudheer",
         age: 34
    };
    
    Object literal property values can be of any data type, including array, function, and nested object.
    99

    The output of the array is ['J', 'o', 'h', 'n', '', 'R', 'e', 's', 'i', 'g'] Explanation: The string is an iterable type and the spread operator within an array maps every character of an iterable to one element. Hence, each character of a string becomes an element within an Array.

  325. Is PostMessage secure

    Yes, postMessages can be considered very secure as long as the programmer/developer is careful about checking the origin and source of an arriving message. But if you try to send/receive a message without verifying its source will create cross-site scripting attacks.

  326. What are the problems with postmessage target origin as wildcard

    The second argument of postMessage method specifies which origin is allowed to receive the message. If you use the wildcard “*” as an argument then any origin is allowed to receive the message. In this case, there is no way for the sender window to know if the target window is at the target origin when sending the message. If the target window has been navigated to another origin, the other origin would receive the data. Hence, this may lead to XSS vulnerabilities.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    00

  327. How do you avoid receiving postMessages from attackers

    Since the listener listens for any message, an attacker can trick the application by sending a message from the attacker’s origin, which gives an impression that the receiver received the message from the actual sender’s window. You can avoid this issue by validating the origin of the message on the receiver's end using the “message.origin” attribute. For examples, let's check the sender's origin http://www.some-sender.com on receiver side www.some-receiver.com,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    01

  328. Can I avoid using postMessages completely

    You cannot avoid using postMessages completely(or 100%). Even though your application doesn’t use postMessage considering the risks, a lot of third party scripts use postMessage to communicate with the third party service. So your application might be using postMessage without your knowledge.

  329. Is postMessages synchronous

    The postMessages are synchronous in IE8 browser but they are asynchronous in IE9 and all other modern browsers (i.e, IE9+, Firefox, Chrome, Safari).Due to this asynchronous behaviour, we use a callback mechanism when the postMessage is returned.

  330. What paradigm is Javascript

    JavaScript is a multi-paradigm language, supporting imperative/procedural programming, Object-Oriented Programming and functional programming. JavaScript supports Object-Oriented Programming with prototypical inheritance.

  331. What is the difference between internal and external javascript

    Internal JavaScript: It is the source code within the script tag. External JavaScript: The source code is stored in an external file(stored with .js extension) and referred with in the tag.

  332. Is JavaScript faster than server side script

    Yes, JavaScript is faster than server side script. Because JavaScript is a client-side script it does not require any web server’s help for its computation or calculation. So JavaScript is always faster than any server-side script like ASP, PHP, etc.

  333. How do you get the status of a checkbox

    You can apply the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    72 property on the selected checkbox in the DOM. If the value is
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    73 means the checkbox is checked otherwise it is unchecked. For example, the below HTML checkbox element can be access using javascript as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    02

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    03

  334. What is the purpose of double tilde operator

    The double tilde operator(~~) is known as double NOT bitwise operator. This operator is going to be a quicker substitute for Math.floor().

  335. How do you convert character to ASCII code

    You can use the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    74 method to convert string characters to ASCII numbers. For example, let's find ASCII code for the first letter of 'ABC' string,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    04

    Whereas

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    75 method converts numbers to equal ASCII characters.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    05

  336. What is ArrayBuffer

    An ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer. You can create it as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    06

    To manipulate an ArrayBuffer, we need to use a “view” object.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    07

  337. What is the output of below string expression

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    08

    The output of the above expression is "W". Explanation: The bracket notation with specific index on a string returns the character at a specific location. Hence, it returns the character "W" of the string. Since this is not supported in IE7 and below versions, you may need to use the .charAt() method to get the desired result.

  338. What is the purpose of Error object

    The Error constructor creates an error object and the instances of error objects are thrown when runtime errors occur. The Error object can also be used as a base object for user-defined exceptions. The syntax of error object would be as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    09

    You can throw user defined exceptions or errors using Error object in try...catch block as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    10

  339. What is the purpose of EvalError object

    The EvalError object indicates an error regarding the global

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    76 function. Even though this exception is not thrown by JavaScript anymore, the EvalError object remains for compatibility. The syntax of this expression would be as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    11

    You can throw EvalError with in try...catch block as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    12

  340. What are the list of cases error thrown from non-strict mode to strict mode

    When you apply 'use strict'; syntax, some of the below cases will throw a SyntaxError before executing the script

    1. When you use Octal syntax

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    13

    1. Using
      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);
      61 statement
    2. When you use delete operator on a variable name
    3. Using eval or arguments as variable or function argument name
    4. When you use newly reserved keywords
    5. When you declare a function in a block

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    14

    Hence, the errors from above cases are helpful to avoid errors in development/production environments.

  341. Do all objects have prototypes

    No. All objects have prototypes except for the base object which is created by the user, or an object that is created using the new keyword.

  342. What is the difference between a parameter and an argument

    Parameter is the variable name of a function definition whereas an argument represents the value given to a function when it is invoked. Let's explain this with a simple function

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    15

  343. What is the purpose of some method in arrays

    The some() method is used to test whether at least one element in the array passes the test implemented by the provided function. The method returns a boolean value. Let's take an example to test for any odd elements,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    16

  344. How do you combine two or more arrays

    The concat() method is used to join two or more arrays by returning a new array containing all the elements. The syntax would be as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    17

    Let's take an example of array's concatenation with veggies and fruits arrays,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    18

  345. What is the difference between Shallow and Deep copy

    There are two ways to copy an object,

    Shallow Copy: Shallow copy is a bitwise copy of an object. A new object is created that has an exact copy of the values in the original object. If any of the fields of the object are references to other objects, just the reference addresses are copied i.e., only the memory address is copied.

    Example

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    19

    to create a duplicate

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    20

    if we change some property value in the duplicate one like this:

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    21

    The above statement will also change the name of

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    78, since we have a shallow copy. That means we're losing the original data as well.

    Deep copy: A deep copy copies all fields, and makes copies of dynamically allocated memory pointed to by the fields. A deep copy occurs when an object is copied along with the objects to which it refers.

    Example

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    19

    Create a deep copy by using the properties from the original object into new variable

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    23

    Now if you change

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    79, it will only affect
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    80 & not
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    78

  346. How do you create specific number of copies of a string

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    82 method is used to construct and return a new string which contains the specified number of copies of the string on which it was called, concatenated together. Remember that this method has been added to the ECMAScript 2015 specification. Let's take an example of Hello string to repeat it 4 times,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    24

  347. How do you return all matching strings against a regular expression

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    83 method can be used to return an iterator of all results matching a string against a regular expression. For example, the below example returns an array of matching string results against a regular expression,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    25

  348. How do you trim a string at the beginning or ending

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    84 method of string prototype is used to trim on both sides of a string. But if you want to trim especially at the beginning or ending of the string then you can use
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    85 and
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    86 methods. Let's see an example of these methods on a greeting message,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    26

  349. What is the output of below console statement with unary operator

    Let's take console statement with unary operator as given below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    27

    The output of the above console log statement returns NaN. Because the element is prefixed by the unary operator and the JavaScript interpreter will try to convert that element into a number type. Since the conversion fails, the value of the statement results in NaN value.

  350. Does javascript uses mixins

    Mixin is a generic object-oriented programming term - is a class containing methods that can be used by other classes without a need to inherit from it. In JavaScript we can only inherit from a single object. ie. There can be only one

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    87 for an object.

    But sometimes we require to extend more than one, to overcome this we can use Mixin which helps to copy methods to the prototype of another class.

    Say for instance, we've two classes

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    88 and
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    89. Suppose we need to add
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    89 functionality to
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    88, so that user can clean the room at demand. Here's where concept called mixins comes into picture.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    28

  351. What is a thunk function

    A thunk is just a function which delays the evaluation of the value. It doesn’t take any arguments but gives the value whenever you invoke the thunk. i.e, It is used not to execute now but it will be sometime in the future. Let's take a synchronous example,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    29

  352. What are asynchronous thunks

    The asynchronous thunks are useful to make network requests. Let's see an example of network requests,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    30

    The

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    92 function won't be called immediately but it will be invoked only when the data is available from API endpoint. The setTimeout function is also used to make our code asynchronous. The best real time example is redux state management library which uses the asynchronous thunks to delay the actions to dispatch.

  353. What is the output of below function calls

    Code snippet:

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    31

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    32

    Output:

    The output is 40 and NaN. Remember that diameter is a regular function, whereas the value of perimeter is an arrow function. The

    function func() {};
    
    new func(x, y, z);
    35 keyword of a regular function(i.e, diameter) refers to the surrounding scope which is a class(i.e, Shape object). Whereas this keyword of perimeter function refers to the surrounding scope which is a window object. Since there is no radius property on window objects it returns an undefined value and the multiple of number value returns NaN value.

  354. How to remove all line breaks from a string

    The easiest approach is using regular expressions to detect and replace newlines in the string. In this case, we use replace function along with string to replace with, which in our case is an empty string.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    33

    In the above expression, g and m are for global and multiline flags.

  355. What is the difference between reflow and repaint

    A repaint occurs when changes are made which affect the visibility of an element, but not its layout. Examples of this include outline, visibility, or background color. A reflow involves changes that affect the layout of a portion of the page (or the whole page). Resizing the browser window, changing the font, content changing (such as user typing text), using JavaScript methods involving computed styles, adding or removing elements from the DOM, and changing an element's classes are a few of the things that can trigger reflow. Reflow of an element causes the subsequent reflow of all child and ancestor elements as well as any elements following it in the DOM.

  356. What happens with negating an array

    Negating an array with

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    94 character will coerce the array into a boolean. Since Arrays are considered to be truthy So negating it will return
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    95.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    34

  357. What happens if we add two arrays

    If you add two arrays together, it will convert them both to strings and concatenate them. For example, the result of adding arrays would be as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    35

  358. What is the output of prepend additive operator on falsy values

    If you prepend the additive(+) operator on falsy values(null, undefined, NaN, false, ""), the falsy value converts to a number value zero. Let's display them on browser console as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    36

  359. How do you create self string using special characters

    The self string can be formed with the combination of

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    96 characters. You need to remember the below conventions to achieve this pattern.

    1. Since Arrays are truthful values, negating the arrays will produce false: ![] === false
    2. As per JavaScript coercion rules, the addition of arrays together will toString them: [] + [] === ""
    3. Prepend an array with + operator will convert an array to false, the negation will make it true and finally converting the result will produce value '1': +(!(+[])) === 1

    By applying the above rules, we can derive below conditions

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    37

    Now the character pattern would be created as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    38

  360. How do you remove falsy values from an array

    You can apply the filter method on the array by passing Boolean as a parameter. This way it removes all falsy values(0, undefined, null, false and "") from the array.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    39

  361. How do you get unique values of an array

    You can get unique values of an array with the combination of

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    97 and rest expression/spread(...) syntax.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    40

  362. What is destructuring aliases

    Sometimes you would like to have a destructured variable with a different name than the property name. In that case, you'll use a

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    98 to specify a name for the variable. This process is called destructuring aliases.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    41

  363. How do you map the array values without using map method

    You can map the array values without using the

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    99 method by just using the
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    00 method of Array. Let's map city names from Countries array,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    42

  364. How do you empty an array

    You can empty an array quickly by setting the array length to zero.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    43

  365. How do you rounding numbers to certain decimals

    You can round numbers to a certain number of decimals using

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    01 method from native javascript.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    44

  366. What is the easiest way to convert an array to an object

    You can convert an array to an object with the same data using spread(...) operator.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    45

  367. How do you create an array with some data

    You can create an array with some data or an array with the same values using

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    02 method.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    46

  368. What are the placeholders from console object

    Below are the list of placeholders available from console object,

    1. %o — It takes an object,
    2. %s — It takes a string,
    3. %d — It is used for a decimal or integer These placeholders can be represented in the console.log as below

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    47

  369. Is it possible to add CSS to console messages

    Yes, you can apply CSS styles to console messages similar to html text on the web page.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    48

    The text will be displayed as below,

    Cara menggunakan javascript technical interview questions

    Note: All CSS styles can be applied to console messages.

  370. What is the purpose of dir method of console object

    The

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    03 is used to display an interactive list of the properties of the specified JavaScript object as JSON.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    49

    The user object displayed in JSON representation

    Cara menggunakan javascript technical interview questions

  371. Is it possible to debug HTML elements in console

    Yes, it is possible to get and debug HTML elements in the console just like inspecting elements.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    50

    It prints the HTML element in the console,

    Cara menggunakan javascript technical interview questions

  372. How do you display data in a tabular format using console object

    The

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    04 is used to display data in the console in a tabular format to visualize complex arrays or objects.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    51

    The data visualized in a table format,

    Cara menggunakan javascript technical interview questions
    Not: Remember that
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    04 is not supported in IE.

  373. How do you verify that an argument is a Number or not

    The combination of IsNaN and isFinite methods are used to confirm whether an argument is a number or not.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    52

  374. How do you create copy to clipboard button

    You need to select the content(using .select() method) of the input element and execute the copy command with execCommand (i.e, execCommand('copy')). You can also execute other system commands like cut and paste.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    53

  375. What is the shortcut to get timestamp

    You can use

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    06 to get the current timestamp. There is an alternative shortcut to get the value.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    54

  376. How do you flattening multi dimensional arrays

    Flattening bi-dimensional arrays is trivial with Spread operator.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    55

    But you can make it work with multi-dimensional arrays by recursive calls,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    56

    Also you can use the

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    07 method of Array.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    57

  377. What is the easiest multi condition checking

    You can use

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    08 to compare input with multiple values instead of checking each value as one condition.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    58

  378. How do you capture browser back button

    The

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    09 method is used to capture browser back button events. This is helpful to warn users about losing the current data.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    59

  379. How do you disable right click in the web page

    The right click on the page can be disabled by returning false from the

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    10 attribute on the body element.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    60

  380. What are wrapper objects

    Primitive Values like string,number and boolean don't have properties and methods but they are temporarily converted or coerced to an object(Wrapper object) when you try to perform actions on them. For example, if you apply toUpperCase() method on a primitive string value, it does not throw an error but returns uppercase of the string.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    61

    i.e, Every primitive except null and undefined have Wrapper Objects and the list of wrapper objects are String,Number,Boolean,Symbol and BigInt.

  381. What is AJAX

    AJAX stands for Asynchronous JavaScript and XML and it is a group of related technologies(HTML, CSS, JavaScript, XMLHttpRequest API etc) used to display data asynchronously. i.e. We can send data to the server and get data from the server without reloading the web page.

  382. What are the different ways to deal with Asynchronous Code

    Below are the list of different ways to deal with Asynchronous code.

    1. Callbacks
    2. Promises
    3. Async/await
    4. Third-party libraries such as async.js,bluebird etc

  383. How to cancel a fetch request

    Until a few days back, One shortcoming of native promises is no direct way to cancel a fetch request. But the new

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    11 from js specification allows you to use a signal to abort one or multiple fetch calls. The basic flow of cancelling a fetch request would be as below,

    1. Create an
      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      11 instance
    2. Get the signal property of an instance and pass the signal as a fetch option for signal
    3. Call the AbortController's abort property to cancel all fetches that use that signal For example, let's pass the same signal to multiple fetch calls will cancel all requests with that signal,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    62

  384. What is web speech API

    Web speech API is used to enable modern browsers recognize and synthesize speech(i.e, voice data into web apps). This API has been introduced by W3C Community in the year 2012. It has two main parts,

    1. SpeechRecognition (Asynchronous Speech Recognition or Speech-to-Text): It provides the ability to recognize voice context from an audio input and respond accordingly. This is accessed by the
      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      13 interface. The below example shows on how to use this API to get text from speech,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    63

    In this API, browser is going to ask you for permission to use your microphone

    1. SpeechSynthesis (Text-to-Speech): It provides the ability to recognize voice context from an audio input and respond. This is accessed by the
      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      14 interface. For example, the below code is used to get voice/speech from text,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    64

    The above examples can be tested on chrome(33+) browser's developer console. Note: This API is still a working draft and only available in Chrome and Firefox browsers(ofcourse Chrome only implemented the specification)

  385. What is minimum timeout throttling

    Both browser and NodeJS javascript environments throttles with a minimum delay that is greater than 0ms. That means even though setting a delay of 0ms will not happen instantaneously. Browsers: They have a minimum delay of 4ms. This throttle occurs when successive calls are triggered due to callback nesting(certain depth) or after a certain number of successive intervals. Note: The older browsers have a minimum delay of 10ms. Nodejs: They have a minimum delay of 1ms. This throttle happens when the delay is larger than 2147483647 or less than 1. The best example to explain this timeout throttling behavior is the order of below code snippet.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    65

    and the output would be in

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    66

    If you don't use

    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    63, the order of logs will be sequential.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    67

    and the output is,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    68

  386. How do you implement zero timeout in modern browsers

    You can't use setTimeout(fn, 0) to execute the code immediately due to minimum delay of greater than 0ms. But you can use window.postMessage() to achieve this behavior.

  387. What are tasks in event loop

    A task is any javascript code/program which is scheduled to be run by the standard mechanisms such as initially starting to run a program, run an event callback, or an interval or timeout being fired. All these tasks are scheduled on a task queue. Below are the list of use cases to add tasks to the task queue,

    1. When a new javascript program is executed directly from console or running by the
      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      16 element, the task will be added to the task queue.
    2. When an event fires, the event callback added to task queue
    3. When a setTimeout or setInterval is reached, the corresponding callback added to task queue

  388. What is microtask

    Microtask is the javascript code which needs to be executed immediately after the currently executing task/microtask is completed. They are kind of blocking in nature. i.e, The main thread will be blocked until the microtask queue is empty. The main sources of microtasks are Promise.resolve, Promise.reject, MutationObservers, IntersectionObservers etc

    Note: All of these microtasks are processed in the same turn of the event loop.

  389. What are different event loops

  390. What is the purpose of queueMicrotask

  391. How do you use javascript libraries in typescript file

    It is known that not all JavaScript libraries or frameworks have TypeScript declaration files. But if you still want to use libraries or frameworks in our TypeScript files without getting compilation errors, the only solution is

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    17 keyword along with a variable declaration. For example, let's imagine you have a library called
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    18 that doesn’t have a TypeScript declaration and have a namespace called
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    18 in the global namespace. You can use this library in typescript code as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    69

    In the runtime, typescript will provide the type to the

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    18 variable as
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    21 type. The another alternative without using declare keyword is below

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    70

  392. What are the differences between promises and observables

    Some of the major difference in a tabular form

    PromisesObservablesEmits only a single value at a timeEmits multiple values over a period of time(stream of values ranging from 0 to multiple)Eager in nature; they are going to be called immediatelyLazy in nature; they require subscription to be invokedPromise is always asynchronous even though it resolved immediatelyObservable can be either synchronous or asynchronousDoesn't provide any operatorsProvides operators such as map, forEach, filter, reduce, retry, and retryWhen etcCannot be canceledCanceled by using unsubscribe() method

  393. What is heap

    Heap(Or memory heap) is the memory location where objects are stored when we define variables. i.e, This is the place where all the memory allocations and de-allocation take place. Both heap and call-stack are two containers of JS runtime. Whenever runtime comes across variables and function declarations in the code it stores them in the Heap.

    Cara menggunakan javascript technical interview questions

  394. What is an event table

    Event Table is a data structure that stores and keeps track of all the events which will be executed asynchronously like after some time interval or after the resolution of some API requests. i.e Whenever you call a setTimeout function or invoke async operation, it is added to the Event Table. It doesn't not execute functions on it’s own. The main purpose of the event table is to keep track of events and send them to the Event Queue as shown in the below diagram.

    Cara menggunakan javascript technical interview questions

  395. What is a microTask queue

    Microtask Queue is the new queue where all the tasks initiated by promise objects get processed before the callback queue. The microtasks queue are processed before the next rendering and painting jobs. But if these microtasks are running for a long time then it leads to visual degradation.

  396. What is the difference between shim and polyfill

    A shim is a library that brings a new API to an older environment, using only the means of that environment. It isn't necessarily restricted to a web application. For example, es5-shim.js is used to emulate ES5 features on older browsers (mainly pre IE9). Whereas polyfill is a piece of code (or plugin) that provides the technology that you, the developer, expect the browser to provide natively. In a simple sentence, A polyfill is a shim for a browser API.

  397. How do you detect primitive or non primitive value type

    In JavaScript, primitive types include boolean, string, number, BigInt, null, Symbol and undefined. Whereas non-primitive types include the Objects. But you can easily identify them with the below function,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    71

    If the value is a primitive data type, the Object constructor creates a new wrapper object for the value. But If the value is a non-primitive data type (an object), the Object constructor will give the same object.

  398. What is babel

    Babel is a JavaScript transpiler to convert ECMAScript 2015+ code into a backwards compatible version of JavaScript in current and older browsers or environments. Some of the main features are listed below,

    1. Transform syntax
    2. Polyfill features that are missing in your target environment (using @babel/polyfill)
    3. Source code transformations (or codemods)

  399. Is Node.js completely single threaded

    Node is a single thread, but some of the functions included in the Node.js standard library(e.g, fs module functions) are not single threaded. i.e, Their logic runs outside of the Node.js single thread to improve the speed and performance of a program.

  400. What are the common use cases of observables

    Some of the most common use cases of observables are web sockets with push notifications, user input changes, repeating intervals, etc

  401. What is RxJS

    RxJS (Reactive Extensions for JavaScript) is a library for implementing reactive programming using observables that makes it easier to compose asynchronous or callback-based code. It also provides utility functions for creating and working with observables.

  402. What is the difference between Function constructor and function declaration

    The functions which are created with

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    22 do not create closures to their creation contexts but they are always created in the global scope. i.e, the function can access its own local variables and global scope variables only. Whereas function declarations can access outer function variables(closures) too.

    Let's see this difference with an example,

    Function Constructor:

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    72

    Function declaration:

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    73

  403. What is a Short circuit condition

    Short circuit conditions are meant for condensed way of writing simple if statements. Let's demonstrate the scenario using an example. If you would like to login to a portal with an authentication condition, the expression would be as below,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    74

    Since the javascript logical operators evaluated from left to right, the above expression can be simplified using && logical operator

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    75

  404. What is the easiest way to resize an array

    The length property of an array is useful to resize or empty an array quickly. Let's apply length property on number array to resize the number of elements from 5 to 2,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    76

    and the array can be emptied too

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    77

  405. What is an observable

    An Observable is basically a function that can return a stream of values either synchronously or asynchronously to an observer over time. The consumer can get the value by calling

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    23 method. Let's look at a simple example of an Observable

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    78

    Cara menggunakan javascript technical interview questions

    Note: Observables are not part of the JavaScript language yet but they are being proposed to be added to the language

  406. What is the difference between function and class declarations

    The main difference between function declarations and class declarations is

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    24. The function declarations are hoisted but not class declarations.

    Classes:

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    79

    Constructor Function:

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    80

  407. What is an async function

    An async function is a function declared with the

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    25 keyword which enables asynchronous, promise-based behavior to be written in a cleaner style by avoiding promise chains. These functions can contain zero or more
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    26 expressions.

    Let's take a below async function example,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    81

    It is basically syntax sugar over ES2015 promises and generators.

  408. How do you prevent promises swallowing errors

    While using asynchronous code, JavaScript’s ES6 promises can make your life a lot easier without having callback pyramids and error handling on every second line. But Promises have some pitfalls and the biggest one is swallowing errors by default.

    Let's say you expect to print an error to the console for all the below cases,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    82

    But there are many modern JavaScript environments that won't print any errors. You can fix this problem in different ways,

    1. Add catch block at the end of each chain: You can add catch block to the end of each of your promise chains

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      83

      But it is quite difficult to type for each promise chain and verbose too.

    2. Add done method: You can replace first solution's then and catch blocks with done method

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      84

      Let's say you want to fetch data using HTTP and later perform processing on the resulting data asynchronously. You can write

      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);
      18 block as below,

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      85

      In future, if the processing library API changed to synchronous then you can remove

      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);
      18 block as below,

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      86

      and then you forgot to add

      // Create a new instance using function prototype.
      var newInstance = Object.create(func.prototype)
      
      // Call the function
      var result = func.call(newInstance, x, y, z),
      
      // If the result is a non-null object then use it otherwise just use the new instance.
      console.log(result && typeof result === 'object' ? result : newInstance);
      18 block to
      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      30 block leads to silent errors.

    3. Extend ES6 Promises by Bluebird: Bluebird extends the ES6 Promises API to avoid the issue in the second solution. This library has a “default” onRejection handler which will print all errors from rejected Promises to stderr. After installation, you can process unhandled rejections

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      87

      and discard a rejection, just handle it with an empty catch

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      88

  409. What is deno

    Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 JavaScript engine and the Rust programming language.

  410. How do you make an object iterable in javascript

    By default, plain objects are not iterable. But you can make the object iterable by defining a

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    31 property on it.

    Let's demonstrate this with an example,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    89

    The above process can be simplified using a generator function,

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    90

  411. What is a Proper Tail Call

    First, we should know about tail call before talking about "Proper Tail Call". A tail call is a subroutine or function call performed as the final action of a calling function. Whereas Proper tail call(PTC) is a technique where the program or code will not create additional stack frames for a recursion when the function call is a tail call.

    For example, the below classic or head recursion of factorial function relies on stack for each step. Each step need to be processed upto

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    32

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    91

    But if you use Tail recursion functions, they keep passing all the necessary data it needs down the recursion without relying on the stack.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    92

    The above pattern returns the same output as the first one. But the accumulator keeps track of total as an argument without using stack memory on recursive calls.

  412. How do you check an object is a promise or not

    If you don't know if a value is a promise or not, wrapping the value as

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    33 which returns a promise

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    93

    Another way is to check for

    function func() {};
    
    new func(x, y, z);
    58 handler type

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    94

  413. How to detect if a function is called as constructor

    You can use

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    35 pseudo-property to detect whether a function was called as a constructor(using the new operator) or as a regular function call.

    1. If a constructor or function invoked using the new operator, new.target returns a reference to the constructor or function.
    2. For function calls, new.target is undefined.

    function Person(name) {
      this.name = name;
      this.age = 21;
    }
    var object = new Person("Sudheer");
    95

  414. What are the differences between arguments object and rest parameter

    There are three main differences between arguments object and rest parameters

    1. The arguments object is an array-like but not an array. Whereas the rest parameters are array instances.
    2. The arguments object does not support methods such as sort, map, forEach, or pop. Whereas these methods can be used in rest parameters.
    3. The rest parameters are only the ones that haven’t been given a separate name, while the arguments object contains all arguments passed to the function

  415. What are the differences between spread operator and rest parameter

    Rest parameter collects all remaining elements into an array. Whereas Spread operator allows iterables( arrays / objects / strings ) to be expanded into single arguments/elements. i.e, Rest parameter is opposite to the spread operator.

  416. What are the different kinds of generators

    There are five kinds of generators,

    1. Generator function declaration:

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      96

    2. Generator function expressions:

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      97

    3. Generator method definitions in object literals:

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      98

    4. Generator method definitions in class:

      function Person(name) {
        this.name = name;
        this.age = 21;
      }
      var object = new Person("Sudheer");
      99

    5. Generator as a computed property:

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      00

  417. What are the built-in iterables

    Below are the list of built-in iterables in javascript,

    1. Arrays and TypedArrays
    2. Strings: Iterate over each character or Unicode code-points
    3. Maps: iterate over its key-value pairs
    4. Sets: iterates over their elements
    5. arguments: An array-like special variable in functions
    6. DOM collection such as NodeList

  418. What are the differences between for...of and for...in statements

    Both for...in and for...of statements iterate over js data structures. The only difference is over what they iterate:

    1. for..in iterates over all enumerable property keys of an object
    2. for..of iterates over the values of an iterable object.

    Let's explain this difference with an example,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    01

    Since for..in loop iterates over the keys of the object, the first loop logs 0, 1, 2 and newProp while iterating over the array object. The for..of loop iterates over the values of a arr data structure and logs a, b, c in the console.

  419. How do you define instance and non-instance properties

    The Instance properties must be defined inside of class methods. For example, name and age properties defined inside constructor as below,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    02

    But Static(class) and prototype data properties must be defined outside of the ClassBody declaration. Let's assign the age value for Person class as below,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    03

  420. What is the difference between isNaN and Number.isNaN?

    1. isNaN: The global function
      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      36 converts the argument to a Number and returns true if the resulting value is NaN.
    2. Number.isNaN: This method does not convert the argument. But it returns true when the type is a Number and value is NaN.

    Let's see the difference with an example,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    04

  421. How to invoke an IIFE without any extra brackets?

    Immediately Invoked Function Expressions(IIFE) requires a pair of parenthesis to wrap the function which contains set of statements.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    05

    Since both IIFE and void operator discard the result of an expression, you can avoid the extra brackets using

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    37 for IIFE as below,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    06

  422. Is that possible to use expressions in switch cases?

    You might have seen expressions used in switch condition but it is also possible to use for switch cases by assigning true value for the switch condition. Let's see the weather condition based on temparature as an example,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    07

  423. What is the easiest way to ignore promise errors?

    The easiest and safest way to ignore promise errors is void that error. This approach is ESLint friendly too.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    08

  424. How do style the console output using CSS?

    You can add CSS styling to the console output using the CSS format content specifier %c. The console string message can be appended after the specifier and CSS style in another argument. Let's print the red the color text using console.log and CSS specifier as below,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    09

    It is also possible to add more styles for the content. For example, the font-size can be modified for the above text

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    10

  425. What is nullish coalescing operator (??)?

    It is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns its left-hand side operand. This can be contrasted with the logical OR (||) operator, which returns the right-hand side operand if the left operand is any falsy value, not only null or undefined.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    11

  426. How do you group and nest console output?

    The

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    38 can be used to group related log messages to be able to easily read the logs and use console.groupEnd()to close the group. Along with this, you can also nest groups which allows to output message in hierarchical manner.

    For example, if you’re logging a user’s details:

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    12

    You can also use

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    39 instead of
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    38 if you want the groups to be collapsed by default.

  427. What is the difference between dense and sparse arrays?

    An array contains items at each index starting from first(0) to last(array.length - 1) is called as Dense array. Whereas if at least one item is missing at any index, the array is called as sparse.

    Let's see the below two kind of arrays,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    13

  428. What are the different ways to create sparse arrays?

    There are 4 different ways to create sparse arrays in JavaScript

    1. Array literal: Omit a value when using the array literal

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      14

    2. Array() constructor: Invoking Array(length) or new Array(length)

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      15

    3. Delete operator: Using delete array[index] operator on the array

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      16

    4. Increase length property: Increasing length property of an array

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      17

  429. What is the difference between setTimeout, setImmediate and process.nextTick?

    1. Set Timeout: setTimeout() is to schedule execution of a one-time callback after delay milliseconds.
    2. Set Immediate: The setImmediate function is used to execute a function right after the current event loop finishes.
    3. Process NextTick: If process.nextTick() is called in a given phase, all the callbacks passed to process.nextTick() will be resolved before the event loop continues. This will block the event loop and create I/O Starvation if process.nextTick() is called recursively.

  430. How do you reverse an array without modifying original array?

    The

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    41 method reverses the order of the elements in an array but it mutates the original array. Let's take a simple example to demonistrate this case,

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    18

    There are few solutions that won't mutate the original array. Let's take a look.

    1. Using slice and reverse methods: In this case, just invoke the

      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      42 method on the array to create a shallow copy followed by
      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      41 method call on the copy.

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      19

    2. Using spread and reverse methods: In this case, let's use the spread syntax (...) to create a copy of the array followed by

      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      41 method call on the copy.

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      20

    3. Using reduce and spread methods: Here execute a reducer function on an array elements and append the accumulated array on right side using spread syntax

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      21

    4. Using reduceRight and spread methods: Here execute a right reducer function(i.e. opposite direction of reduce method) on an array elements and append the accumulated array on left side using spread syntax

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      22

    5. Using reduceRight and push methods: Here execute a right reducer function(i.e. opposite direction of reduce method) on an array elements and push the iterated value to the accumulator

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      23

  431. How do you create custom HTML element?

    The creation of custom HTML elements involves two main steps,

    1. Define your custom HTML element: First you need to define some custom class by extending HTMLElement class. After that define your component properties (styles,text etc) using
      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      45 method. Note: The browser exposes a function called
      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      46 inorder to reuse the element.

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      24

    2. Use custome element just like other HTML element: Declare your custom element as a HTML tag.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    25

  432. What is global execution context?

    The global execution context is the default or first execution context that is created by the JavaScript engine before any code is executed(i.e, when the file first loads in the browser). All the global code that is not inside a function or object will be executed inside this global execution context. Since JS engine is single threaded there will be only one global environment and there will be only one global execution context.

    For example, the below code other than code inside any function or object is executed inside the global execution context.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    26

  433. What is function execution context?

    Whenever a function is invoked, the JavaScript engine creates a different type of Execution Context known as a Function Execution Context (FEC) within the Global Execution Context (GEC) to evaluate and execute the code within that function.

  434. What is debouncing?

    Debouncing is a programming pattern that allows delaying execution of some piece of code until a specified time to avoid unnecessary CPU cycles, API calls and improve performance. The debounce function make sure that your code is only triggered once per user input. The common usecases are Search box suggestions, text-field auto-saves, and eliminating double-button clicks.

    Let's say you want to show suggestions for a search query, but only after a visitor has finished typing it. So here you write a debounce function where the user keeps writing the characters with in 500ms then previous timer cleared out using

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    47 and reschedule API call/DB query for a new time—300 ms in the future.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    27

    The debounce() function can be used on input, button and window events

    Input:

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    28

    Button:

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    29

    Windows event:

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    30

  435. What is throttling?

    Throttling is a technique used to limit the execution of an event handler function, even when this event triggers continuously due to user actions. The common use cases are browser resizing, window scrolling etc.

    The below example creates a throttle function to reduce the number of events for each pixel change and trigger scroll event for each 100ms except for the first event.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    31

  436. What is optional chaining?

    According to MDN official docs, the optional chaining operator (?.) permits reading the value of a property located deep within a chain of connected objects without having to expressly validate that each reference in the chain is valid.

    The ?. operator is like the . chaining operator, except that instead of causing an error if a reference is nullish (null or undefined), the expression short-circuits with a return value of undefined. When used with function calls, it returns undefined if the given function does not exist.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    32

  437. What is an environment record?

    According to ECMAScript specification 262 (9.1):

    is a specification type used to define the association of Identifiers to specific variables and functions, based upon the lexical nesting structure of ECMAScript code.

    Usually an Environment Record is associated with some specific syntactic structure of ECMAScript code such as a FunctionDeclaration, a BlockStatement, or a Catch clause of a TryStatement.

    Each time such code is evaluated, a new Environment Record is created to record the identifier bindings that are created by that code.

  438. How to verify if a variable is an array?

    It is possible to check if a variable is an array instance using 3 different ways,

    1. Array.isArray() method:

      The

      class Person {
        constructor(name) {
          this.name = name;
        }
      }
      
      var object = new Person("Sudheer");
      48 utility function is used to determine whether value is an array or not. This function returns a true boolean value if the variable is an array and a false value if it is not.

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      33

    2. instanceof operator:

      The instanceof operator is used to check the type of an array at run time. It returns true if the type of a variable is an Array other false for other type.

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      34

    3. Checking constructor type:

      The constructor property of the variable is used to determine whether the variable Array type or not.

      function Person() {}
      Person.prototype.name = "Sudheer";
      var object = new Person();
      35

  439. What is pass by value and pass by reference?

    Pass-by-value creates a new space in memory and makes a copy of a value. Primitives such as string, number, boolean etc will actually create a new copy. Hence, updating one value doesn't impact the other value. i.e, The values are independent of each other.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    36

    In the above code snippet, the value of

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    49 is assigned to
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    05 and the variable
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    05 has been incremented. Since there is a new space created for variable
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    05, any update on this variable doesn't impact the variable
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    49.

    Pass by reference doesn't create a new space in memory but the new variable adopts a memory address of an initial variable. Non-primitives such as objects, arrays and functions gets the reference of the initiable variable. i.e, updating one value will impact the other variable.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    37

    In the above code snippet, updating the

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    54 property of one object will impact the other property due to the same reference.

  440. What are the differences between primitives and non-primitives?

    JavaScript language has both primitives and non-primitives but there are few differences between them as below,

    PrimitivesNon-primitivesThese types are predefinedCreated by developerThese are immutableMutableCompare by valueCompare by referenceStored in StackStored in heapContain certain valueCan contain NULL too

  441. How do you create your own bind method using either call or apply method?

    The custom bind function needs to be created on Function prototype inorder to use it as other builtin functions. This custom function should return a function similar to original bind method and the implementation of inner function needs to use apply method call.

    The function which is going to bind using custom

    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    55 method act as the attached function(
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    56) and argument as the object for
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    57 method call.

    function Person() {}
    Person.prototype.name = "Sudheer";
    var object = new Person();
    38

Coding Exercise

1. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
39

  • 1: Undefined
  • 2: ReferenceError
  • 3: null
  • 4: {model: "Honda", color: "white", year: "2010", country: "UK"}
Answer
Answer: 4

The function declarations are hoisted similar to any variables. So the placement for

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
58 function declaration doesn't make any difference.


2. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
40

  • 1: 1, undefined and undefined
  • 2: ReferenceError: X is not defined
  • 3: 1, undefined and number
  • 4: 1, number and number
Answer
Answer: 3

Of course the return value of

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
59 is 1 due to the increment operator. But the statement
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
60 declares a local variable x. Whereas y declared as a global variable accidentally. This statement is equivalent to,

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
41

Since the block scoped variable x is undefined outside of the function, the type will be undefined too. Whereas the global variable

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
61 is available outside the function, the value is 0 and type is number.


3. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
42

  • 1: A, B and C
  • 2: B, A and C
  • 3: A and C
  • 4: A, C and B
Answer
Answer: 4

The statements order is based on the event loop mechanism. The order of statements follows the below order,

  1. At first, the main function is pushed to the stack.
  2. Then the browser pushes the first statement of the main function( i.e, A's console.log) to the stack, executing and popping out immediately.
  3. But
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    63 statement moved to Browser API to apply the delay for callback.
  4. In the meantime, C's console.log added to stack, executed and popped out.
  5. The callback of
    // Create a new instance using function prototype.
    var newInstance = Object.create(func.prototype)
    
    // Call the function
    var result = func.call(newInstance, x, y, z),
    
    // If the result is a non-null object then use it otherwise just use the new instance.
    console.log(result && typeof result === 'object' ? result : newInstance);
    63 moved from Browser API to message queue.
  6. The
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    64 function popped out from stack because there are no statements to execute
  7. The callback moved from message queue to the stack since the stack is empty.
  8. The console.log for B is added to the stack and display on the console.

4. What is the output of below equality check

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
43

  • 1: false
  • 2: true
Answer
Answer: 1

This is due to the float point math problem. Since the floating point numbers are encoded in binary format, the addition operations on them lead to rounding errors. Hence, the comparison of floating points doesn't give expected results. You can find more details about the explanation here 0.30000000000000004.com/


5. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
44

  • 1: 1function
  • 2: 1object
  • 3: ReferenceError
  • 4: 1undefined
Answer
Answer: 4

The main points in the above code snippets are,

  1. You can see function expression instead function declaration inside if statement. So it always returns true.
  2. Since it is not declared(or assigned) anywhere, f is undefined and typeof f is undefined too.

In other words, it is same as

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
45

Note: It returns 1object for MS Edge browser


6. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
46

  • 1: Hello World
  • 2: Object {message: "Hello World"}
  • 3: Undefined
  • 4: SyntaxError
Answer
Answer: 3

This is a semicolon issue. Normally semicolons are optional in JavaScript. So if there are any statements(in this case, return) missing semicolon, it is automatically inserted immediately. Hence, the function returned as undefined.

Whereas if the opening curly brace is along with the return keyword then the function is going to be returned as expected.

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
47


7. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
48

  • 1: [empty, 'b', 'c', 'd'], empty, 3
  • 2: [null, 'b', 'c', 'd'], empty, 3
  • 3: [empty, 'b', 'c', 'd'], undefined, 4
  • 4: [null, 'b', 'c', 'd'], undefined, 4
Answer
Answer: 3

The

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
65 operator will delete the object property but it will not reindex the array or change its length. So the number or elements or length of the array won't be changed. If you try to print myChars then you can observe that it doesn't set an undefined value, rather the property is removed from the array. The newer versions of Chrome use
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
66 instead of
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
67 to make the difference a bit clearer.


8. What is the output of below code in latest Chrome

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
49

  • 1: [undefined × 3], [undefined × 2, 100], [undefined × 3]
  • 2: [empty × 3], [empty × 2, 100], [empty × 3]
  • 3: [null × 3], [null × 2, 100], [null × 3]
  • 4: [], [100], []
Answer
Answer: 2

The latest chrome versions display

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
68(they are filled with holes) using this empty x n notation. Whereas the older versions have undefined x n notation. Note: The latest version of FF displays
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
69 notation.


9. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
50

  • 1: 0, 1, 2
  • 2: 0, { return 1 }, 2
  • 3: 0, { return 1 }, { return 2 }
  • 4: 0, 1, undefined
Answer
Answer: 1

ES6 provides method definitions and property shorthands for objects. So both prop2 and prop3 are treated as regular function values.


10. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
51

  • 1: true, true
  • 2: true, false
  • 3: SyntaxError, SyntaxError,
  • 4: false, false
Answer
Answer: 2

The important point is that if the statement contains the same operators(e.g, < or >) then it can be evaluated from left to right. The first statement follows the below order,

  1. console.log(1 < 2 < 3);
  2. console.log(true < 3);
  3. console.log(1 < 3); // True converted as
    function func() {};
    
    new func(x, y, z);
    91 during comparison
  4. True

Whereas the second statement follows the below order,

  1. console.log(3 > 2 > 1);
  2. console.log(true > 1);
  3. console.log(1 > 1); // False converted as
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    71 during comparison
  4. False

11. What is the output of below code in non-strict mode

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
52

  • 1: 1, 2, 3
  • 2: 3, 2, 3
  • 3: SyntaxError: Duplicate parameter name not allowed in this context
  • 4: 1, 2, 1
Answer
Answer: 2

In non-strict mode, the regular JavaScript functions allow duplicate named parameters. The above code snippet has duplicate parameters on 1st and 3rd parameters. The value of the first parameter is mapped to the third argument which is passed to the function. Hence, the 3rd argument overrides the first parameter.

Note: In strict mode, duplicate parameters will throw a Syntax Error.


12. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
53

  • 1: 1, 2, 3
  • 2: 3, 2, 3
  • 3: SyntaxError: Duplicate parameter name not allowed in this context
  • 4: 1, 2, 1
Answer
Answer: 3

Unlike regular functions, the arrow functions doesn't not allow duplicate parameters in either strict or non-strict mode. So you can see

// Create a new instance using function prototype.
var newInstance = Object.create(func.prototype)

// Call the function
var result = func.call(newInstance, x, y, z),

// If the result is a non-null object then use it otherwise just use the new instance.
console.log(result && typeof result === 'object' ? result : newInstance);
32 in the console.


13. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
54

  • 1: ReferenceError: arguments is not defined
  • 2: 3
  • 3: undefined
  • 4: null
Answer
Answer: 1

Arrow functions do not have an

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
73 bindings. So any reference to
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
74 variable tries to resolve to a binding in a lexically enclosing environment. In this case, the arguments variable is not defined outside of the arrow function. Hence, you will receive a reference error.

Where as the normal function provides the number of arguments passed to the function

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
55

But If you still want to use an arrow function then rest operator on arguments provides the expected arguments

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
56


14. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
57

  • 1: True, False
  • 2: False, True
Answer
Answer: 2

In order to be consistent with functions like

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
75, the standard method name for trimming the whitespaces is considered as
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
76. Due to web web compatibility reasons, the old method name 'trimLeft' still acts as an alias for 'trimStart'. Hence, the prototype for 'trimLeft' is always 'trimStart'


15. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
58

  • 1: undefined
  • 2: Infinity
  • 3: 0
  • 4: -Infinity
Answer
Answer: 4

-Infinity is the initial comparant because almost every other value is bigger. So when no arguments are provided, -Infinity is going to be returned. Note: Zero number of arguments is a valid case.


16. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
59

  • 1: True, True
  • 2: True, False
  • 3: False, False
  • 4: False, True
Answer
Answer: 1

As per the comparison algorithm in the ECMAScript specification(ECMA-262), the above expression converted into JS as below

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
60

So it doesn't matter about number brackets([]) around the number, it is always converted to a number in the expression.


17. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
61

  • 1: 20, 0
  • 2: 1010, 0
  • 3: 1010, 10-10
  • 4: NaN, NaN
Answer
Answer: 2

The concatenation operator(+) is applicable for both number and string types. So if any operand is string type then both operands concatenated as strings. Whereas subtract(-) operator tries to convert the operands as number type.


18. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
62

  • 1: True, I'm True
  • 2: True, I'm False
  • 3: False, I'm True
  • 4: False, I'm False
Answer
Answer: 1

In comparison operators, the expression

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
77 converted to Number([0].valueOf().toString()) which is resolved to false. Whereas
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
77 just becomes a truthy value without any conversion because there is no comparison operator.

19. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
63

  • 1: [1,2,3,4]
  • 2: [1,2][3,4]
  • 3: SyntaxError
  • 4: 1,23,4
Answer
Answer: 4

The + operator is not meant or defined for arrays. So it converts arrays into strings and concatenates them.


20. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
64

  • 1: {1, 2, 3, 4}, {"F", "i", "r", "e", "f", "o", "x"}
  • 2: {1, 2, 3, 4}, {"F", "i", "r", "e", "o", "x"}
  • 3: [1, 2, 3, 4], ["F", "i", "r", "e", "o", "x"]
  • 4: {1, 1, 2, 3, 4}, {"F", "i", "r", "e", "f", "o", "x"}
Answer
Answer: 1

Since

// Create a new instance using function prototype.
var newInstance = Object.create(func.prototype)

// Call the function
var result = func.call(newInstance, x, y, z),

// If the result is a non-null object then use it otherwise just use the new instance.
console.log(result && typeof result === 'object' ? result : newInstance);
97 object is a collection of unique values, it won't allow duplicate values in the collection. At the same time, it is case sensitive data structure.


21. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
65

  • 1: True
  • 2: False
Answer
Answer: 2

JavaScript follows IEEE 754 spec standards. As per this spec, NaNs are never equal for floating-point numbers.


22. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
66

  • 1: 4
  • 2: NaN
  • 3: SyntaxError
  • 4: -1
Answer
Answer: 4

The

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
08 uses strict equality operator(===) internally and
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
81 evaluates to false. Since indexOf won't be able to find NaN inside an array, it returns -1 always. But you can use
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
82 method to find out the index of NaN in an array or You can use
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
83 to check if NaN is present in an array or not.

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
67


23. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
68

  • 1: 1, [2, 3, 4, 5]
  • 2: 1, {2, 3, 4, 5}
  • 3: SyntaxError
  • 4: 1, [2, 3, 4]
Answer
Answer: 3

When using rest parameters, trailing commas are not allowed and will throw a SyntaxError. If you remove the trailing comma then it displays 1st answer

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
69


25. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
70

  • 1: Promise {<fulfilled>: 10}
  • 2: 10
  • 3: SyntaxError
  • 4: Promise {<rejected>: 10}
Answer
Answer: 1

Async functions always return a promise. But even if the return value of an async function is not explicitly a promise, it will be implicitly wrapped in a promise. The above async function is equivalent to below expression,

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
71


26. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
72

  • 1: Promise {<fulfilled>: 10}
  • 2: 10
  • 3: SyntaxError
  • 4: Promise {<resolved>: undefined}
Answer
Answer: 4

The await expression returns value 10 with promise resolution and the code after each await expression can be treated as existing in a

function func() {};

new func(x, y, z);
59 callback. In this case, there is no return expression at the end of the function. Hence, the default return value of
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
67 is returned as the resolution of the promise. The above async function is equivalent to below expression,

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
73


27. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
74

  • 1: SyntaxError
  • 2: 1, 2, 3, 4
  • 3: 4, 4, 4, 4
  • 4: 4, 3, 2, 1
Answer
Answer: 1

Even though “processArray” is an async function, the anonymous function that we use for

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
86 is synchronous. If you use await inside a synchronous function then it throws a syntax error.


28. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
75

  • 1: 1 2 3 5 and Process completed!
  • 2: 5 5 5 5 and Process completed!
  • 3: Process completed! and 5 5 5 5
  • 4: Process completed! and 1 2 3 5
Answer
Answer: 4

The forEach method will not wait until all items are finished but it just runs the tasks and goes next. Hence, the last statement is displayed first followed by a sequence of promise resolutions.

But you control the array sequence using for..of loop,

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
76


29. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
77

  • 1: Set(4) {"+0", "-0", NaN, undefined}
  • 2: Set(3) {"+0", NaN, undefined}
  • 3: Set(5) {"+0", "-0", NaN, undefined, NaN}
  • 4: Set(4) {"+0", NaN, undefined, NaN}
Answer
Answer: 1

Set has few exceptions from equality check,

  1. All NaN values are equal
  2. Both +0 and -0 considered as different values

30. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
78

  • 1: true, true
  • 2: true, false
  • 3: false, true
  • 4: false, false
Answer
Answer: 3

Symbol follows below conventions,

  1. Every symbol value returned from Symbol() is unique irrespective of the optional string.
  2. class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    87 function creates a symbol in a global symbol registry list. But it doesn't necessarily create a new symbol on every call, it checks first if a symbol with the given key is already present in the registry and returns the symbol if it is found. Otherwise a new symbol created in the registry.

Note: The symbol description is just useful for debugging purposes.


31. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
79

  • 1: SyntaxError
  • 2: one
  • 3: Symbol('one')
  • 4: Symbol
Answer
Answer: 1

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
88 is a just a standard function and not an object constructor(unlike other primitives new Boolean, new String and new Number). So if you try to call it with the new operator will result in a TypeError


32. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
80

  • 1: SyntaxError
  • 2: It is not a string!, It is not a number!
  • 3: It is not a string!, It is a number!
  • 4: It is a string!, It is a number!
Answer
Answer: 4

The return value of

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
89 or
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
90 is always a truthy value (either "number" or "string"). The ! operator operates on either
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
89 or
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
90, converting them to boolean values. Since the value of both
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
93 and
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
94 is false, the if condition fails, and control goes to else block.

To make the ! operator operate on the equality expression, one needs to add parentheses:

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
81

Or simply use the inequality operator:

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
82


33. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
83

  • 1: {"myArray":['one', undefined, {}, Symbol]}, {}
  • 2: {"myArray":['one', null,null,null]}, {}
  • 3: {"myArray":['one', null,null,null]}, "{ [Symbol.for('one')]: 'one' }, [Symbol.for('one')]"
  • 4: {"myArray":['one', undefined, function(){}, Symbol('')]}, {}
Answer
Answer: 2

The symbols has below constraints,

  1. The undefined, Functions, and Symbols are not valid JSON values. So those values are either omitted (in an object) or changed to null (in an array). Hence, it returns null values for the value array.
  2. All Symbol-keyed properties will be completely ignored. Hence it returns an empty object({}).

34. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
84

  • 1: A, A
  • 2: A, B
Answer
Answer: 2

Using constructors,

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
35 refers to the constructor (points to the class definition of class which is initialized) that was directly invoked by new. This also applies to the case if the constructor is in a parent class and was delegated from a child constructor.


35. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
85

  • 1: 1, [2, 3], 4
  • 2: 1, [2, 3, 4], undefined
  • 3: 1, [2], 3
  • 4: SyntaxError
Answer
Answer: 4

It throws a syntax error because the rest element should not have a trailing comma. You should always consider using a rest operator as the last element.


36. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
86

  • 1: 30, 20
  • 2: 10, 20
  • 3: 10, undefined
  • 4: 30, undefined
Answer
Answer: 1

The object property follows below rules,

  1. The object properties can be retrieved and assigned to a variable with a different name
  2. The property assigned a default value when the retrieved value is
    class Person {
      constructor(name) {
        this.name = name;
      }
    }
    
    var object = new Person("Sudheer");
    67

37. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
87

  • 1: 200
  • 2: Error
  • 3: undefined
  • 4: 0
Answer
Answer: 2

If you leave out the right-hand side assignment for the destructuring object, the function will look for at least one argument to be supplied when invoked. Otherwise you will receive an error

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
97 as mentioned above.

You can avoid the error with either of the below changes,

  1. Pass at least an empty object:

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
88

  1. Assign default empty object:

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
89


38. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
90

  • 1: Tom
  • 2: Error
  • 3: undefined
  • 4: John
Answer
Answer: 1

It is possible to combine Array and Object destructuring. In this case, the third element in the array props accessed first followed by name property in the object.


39. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
91

  • 1: number, undefined, string, object
  • 2: undefined, undefined, string, object
  • 3: number, number, string, object
  • 4: number, number, number, number
Answer
Answer: 3

If the function argument is set implicitly(not passing argument) or explicitly to undefined, the value of the argument is the default parameter. Whereas for other falsy values('' or null), the value of the argument is passed as a parameter.

Hence, the result of function calls categorized as below,

  1. The first two function calls logs number type since the type of default value is number
  2. The type of '' and null values are string and object type respectively.

40. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
92

  • 1: ['Orange'], ['Orange', 'Apple']
  • 2: ['Orange'], ['Apple']
Answer
Answer: 2

Since the default argument is evaluated at call time, a new object is created each time the function is called. So in this case, the new array is created and an element pushed to the default empty array.


41. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
93

  • 1: SyntaxError
  • 2: ['Hello', 'John', 'Hello John'], ['Hello', 'John', 'Good morning!']
Answer
Answer: 2

Since parameters defined earlier are available to later default parameters, this code snippet doesn't throw any error.


42. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
94

  • 1: ReferenceError
  • 2: Inner
Answer
Answer: 1

The functions and variables declared in the function body cannot be referred from default value parameter initializers. If you still try to access, it throws a run-time ReferenceError(i.e,

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
98 is not defined).


43. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
95

  • 1: [3, 4, 5], undefined
  • 2: SyntaxError
  • 3: [3, 4, 5], []
  • 4: [3, 4, 5], [undefined]
Answer
Answer: 3

The rest parameter is used to hold the remaining parameters of a function and it becomes an empty array if the argument is not provided.


44. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
96

  • 1: ['key', 'value']
  • 2: TypeError
  • 3: []
  • 4: ['key']
Answer
Answer: 2

Spread syntax can be applied only to iterable objects. By default, Objects are not iterable, but they become iterable when used in an Array, or with iterating functions such as

class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
99. If you still try to do it, it still throws
var object = new (function () {
  this.name = "Sudheer";
})();
00.


45. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
97

  • 1: 1
  • 2: undefined
  • 3: SyntaxError
  • 4: TypeError
Answer
Answer: 4

Generators are not constructible type. But if you still proceed to do, there will be an error saying "TypeError: myGenFunc is not a constructor"


46. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
98

  • 1: { value: 1, done: false }, { value: 2, done: true }, { value: undefined, done: true }
  • 2: { value: 1, done: false }, { value: 2, done: false }, { value: undefined, done: true }
  • 3: { value: 1, done: false }, { value: 2, done: true }, { value: 3, done: true }
  • 4: { value: 1, done: false }, { value: 2, done: false }, { value: 3, done: true }
Answer
Answer: 1

A return statement in a generator function will make the generator finish. If a value is returned, it will be set as the value property of the object and done property to true. When a generator is finished, subsequent next() calls return an object of this form:

var object = new (function () {
  this.name = "Sudheer";
})();
01.


47. What is the output of below code

function Person() {}
Person.prototype.name = "Sudheer";
var object = new Person();
99

  • 1: 1,2,3 and 1,2,3
  • 2: 1,2,3 and 4,5,6
  • 3: 1 and 1
  • 4: 1
Answer
Answer: 4

The generator should not be re-used once the iterator is closed. i.e, Upon exiting a loop(on completion or using break & return), the generator is closed and trying to iterate over it again does not yield any more results. Hence, the second loop doesn't print any value.


48. What is the output of below code

function func() {};

new func(x, y, z);
00

  • 1: SyntaxError
  • 2: 38
Answer
Answer: 1

If you use an invalid number(outside of 0-7 range) in the octal literal, JavaScript will throw a SyntaxError. In ES5, it treats the octal literal as a decimal number.


49. What is the output of below code

function func() {};

new func(x, y, z);
01

  • 1: 100
  • 2: ReferenceError
Answer
Answer: 2

Unlike function declarations, class declarations are not hoisted. i.e, First You need to declare your class and then access it, otherwise it will throw a ReferenceError "Uncaught ReferenceError: Square is not defined".

Note: Class expressions also applies to the same hoisting restrictions of class declarations.


50. What is the output of below code

function func() {};

new func(x, y, z);
02

  • 1: undefined, undefined
  • 2: Person, Person
  • 3: SyntaxError
  • 4: Window, Window
Answer
Answer: 4

When a regular or prototype method is called without a value for this, the methods return an initial this value if the value is not undefined. Otherwise global window object will be returned. In our case, the initial

function func() {};

new func(x, y, z);
35 value is undefined so both methods return window objects.


51. What is the output of below code

function func() {};

new func(x, y, z);
03

  • 1: SyntaxError
  • 2: BMW vehicle started, BMW car started
  • 3: BMW car started, BMW vehicle started
  • 4: BMW car started, BMW car started
Answer
Answer: 3

The super keyword is used to call methods of a superclass. Unlike other languages the super invocation doesn't need to be a first statement. i.e, The statements will be executed in the same order of code.


52. What is the output of below code

function func() {};

new func(x, y, z);
04

  • 1: 30
  • 2: 25
  • 3: Uncaught TypeError
  • 4: SyntaxError
Answer
Answer: 2

Even though we used constant variables, the content of it is an object and the object's contents (e.g properties) can be altered. Hence, the change is going to be valid in this case.


53. What is the output of below code

function func() {};

new func(x, y, z);
05

  • 1: false
  • 2: true
Answer
Answer: 2

Emojis are unicodes and the unicode for smile symbol is "U+1F642". The unicode comparision of same emojies is equivalent to string comparison. Hence, the output is always true.


54. What is the output of below code?

function func() {};

new func(x, y, z);
06

  • 1: string
  • 2: boolean
  • 3: NaN
  • 4: number
Answer
Answer: 1

The typeof operator on any primitive returns a string value. So even if you apply the chain of typeof operators on the return value, it is always string.


55. What is the output of below code?

function func() {};

new func(x, y, z);
07

  • 1: If
  • 2: Else
  • 3: NaN
  • 4: SyntaxError
Answer
Answer: 1
  1. The type of operator on new Number always returns object. i.e, typeof new Number(0) --> object.
  2. Objects are always truthy in if block

Hence the above code block always goes to if section.


55. What is the output of below code in non strict mode?

function func() {};

new func(x, y, z);
08

  • 1: ""
  • 2: Error
  • 3: John
  • 4: Undefined
Answer
Answer: 4

It returns undefined for non-strict mode and returns Error for strict mode. In non-strict mode, the wrapper object is going to be created and get the mentioned property. But the object get disappeared after accessing the property in next line.


56. What is the output of below code?

function func() {};

new func(x, y, z);
09

  • 1: 11, 10
  • 2: 11, 11
  • 3: 10, 11
  • 4: 10, 10
Answer
Answer: 1

11 and 10 is logged to the console.

The innerFunc is a closure which captures the count variable from the outerscope. i.e, 10. But the conditional has another local variable

var object = new (function () {
  this.name = "Sudheer";
})();
03 which overwrites the ourter
var object = new (function () {
  this.name = "Sudheer";
})();
03 variable. So the first console.log displays value 11. Whereas the second console.log logs 10 by capturing the count variable from outerscope.


57. What is the output of below code ?

  • 1: console.log(true && 'hi');
  • 2: console.log(true && 'hi' && 1);
  • 3: console.log(true && '' && 0);
Answer
  • 1: hi
  • 2: 1
  • 3: ''

Reason : The operator returns the value of the first falsy operand encountered when evaluating from left to right, or the value of the last operand if they are all truthy.

Note: Below these values are consider as falsy value

  • 1: 0
  • 2: ''
  • 3: null
  • 4: undefined
  • 5: NAN

58. What is the output of below code ?

function func() {};

new func(x, y, z);
10

  • 1: false
  • 2: Error
  • 3: true
Answer
Answer: 3

Arrays have their own implementation of

var object = new (function () {
  this.name = "Sudheer";
})();
05 method that returns a comma-separated list of elements. So the above code snippet returns true. In order to avoid conversion of array type, we should use === for comparison.


59. What is the output of below code?

function func() {};

new func(x, y, z);
11

  • 1: Good morning
  • 2: getMessage is not a function
  • 3: getMessage is not defined
  • 4: Undefined
Answer
Answer: 2

Hoisting will move variables and functions to be the top of scope. Even though getMessage is an arrow function the above function will considered as a varible due to it's variable declaration or assignment. So the variables will have undefined value in memory phase and throws an error '

var object = new (function () {
  this.name = "Sudheer";
})();
06 is not a function' at the code execution phase.


60. What is the output of below code?

function func() {};

new func(x, y, z);
12

  • 1: program finished
  • 2: Cannot predict the order
  • 3: program finished, promise finished
  • 4: promise finished, program finished
Answer
Answer: 3

Even though a promise is resolved immediately, it won't be executed immediately because its .then/catch/finally handlers or callbacks(aka task) are pushed into the queue. Whenever the JavaScript engine becomes free from the current program, it pulls a task from the queue and executes it. This is the reason why last statement is printed first before the log of promise handler.

Note: We call the above queue as "MicroTask Queue"


61. What is the output of below code?

function func() {};

new func(x, y, z);
13

  • 1:
    var object = new (function () {
      this.name = "Sudheer";
    })();
    07, then print
    var object = new (function () {
      this.name = "Sudheer";
    })();
    08 in a new line, and finally print
    var object = new (function () {
      this.name = "Sudheer";
    })();
    09 as next line
  • 2:
    var object = new (function () {
      this.name = "Sudheer";
    })();
    07, then print
    var object = new (function () {
      this.name = "Sudheer";
    })();
    08 in a first line, and print
    var object = new (function () {
      this.name = "Sudheer";
    })();
    09 as next line
  • 3: Missing semi-colon error
  • 4: Cannot read properties of undefined
Answer
Answer: 4

When JavaScript encounters a line break without a semicolon, the JavaScript parser will automatically add a semicolon based on a set of rules called

var object = new (function () {
  this.name = "Sudheer";
})();
13 which determines whether line break as end of statement or not to insert semicolon. But it does not assume a semicolon before square brackets [...]. So the first two lines considered as a single statement as below.

function func() {};

new func(x, y, z);
14

Hence, there will be cannot read properties of undefined error while applying the array square bracket on log function.


62. Write a function that returns a random HEX color

Solution 1 (Iterative generation)

function func() {};

new func(x, y, z);
15

Solution 2 (One-liner)

function func() {};

new func(x, y, z);
16


63. What is the output of below code?

function func() {};

new func(x, y, z);
17

  • 1: of
  • 2: SyntaxError: Unexpected token of
  • 3: SyntaxError: Identifier 'of' has already been declared
  • 4: ReferenceError: of is not defined
Answer
Answer: 1

In JavaScript,

var object = new (function () {
  this.name = "Sudheer";
})();
14 is not considered as a reserved keyword. So the variable declaration with
var object = new (function () {
  this.name = "Sudheer";
})();
14 is accepted and prints the array value
var object = new (function () {
  this.name = "Sudheer";
})();
14 using for..of loop.

But if you use reserved keyword such as

var object = new (function () {
  this.name = "Sudheer";
})();
17 then there will be a syntax error saying
var object = new (function () {
  this.name = "Sudheer";
})();
18,

function func() {};

new func(x, y, z);
18


64. What is the output of below code?

function func() {};

new func(x, y, z);
19

  • 1: [11, 18, 23, 25, 31, 33, 200]
  • 2: [11, 18, 200, 23, 25, 31, 33]
  • 3: [11, 25, 31, 23, 33, 18, 200]
  • 4: Cannot sort numbers
Answer
Answer: 2

By default, the sort method sorts elements alphabetically. This is because elemented converted to strings and strings compared in UTF-16 code units order. Hence, you will see the above numbers not sorted as expected. In order to sort numerically just supply a comparator function which handles numeric sorts.

function func() {};

new func(x, y, z);
20

Note: Sort() method changes the original array.


65. What is the output order of below code?

function func() {};

new func(x, y, z);
21

  • 1: 1, 2, 3
  • 2: 1, 3, 2
  • 3: 3, 1, 2
  • 4: 3, 2, 1
Answer
Answer: 4

66. What is the output of below code?

function func() {};

new func(x, y, z);
22

  • 1: John, Hello John: Welcome
  • 2: undefined, Hello John, Welcome
  • 3: Reference error: name is not defined, Reference error: message is not defined
  • 4: undefined, Reference error: message is not defined
Answer
Answer: 4

IIFE(Immediately Invoked Function Expression) is just like any other function expression which won't be hoisted. Hence, there will be a reference error for message call. The behavior would be the same with below function expression of message1,

function func() {};

new func(x, y, z);
23


67. What is the output of below code?

function func() {};

new func(x, y, z);
24

  • 1: Reference error: message is not defined
  • 2: Hello
  • 3: Bye
  • 4: Compile time error
Answer
Answer: 3

As part of hoisting, initially JavaScript Engine or compiler will store first function in heap memory but later rewrite or replaces with redefined function content.


68. What is the output of below code?

function func() {};

new func(x, y, z);
25

  • 1: NewYork, Singapore
  • 2: NewYork, NewYork
  • 3: undefined, Singapore
  • 4: Singapore, Singapore
Answer
Answer: 3

Due to hositing feature, the variables declared with

function func() {};

new func(x, y, z);
40 will have
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
67 value in the creation phase so the outer variable
var object = new (function () {
  this.name = "Sudheer";
})();
21 will get same
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
67 value. But after few lines of code JavaScript engine found a new function call(
var object = new (function () {
  this.name = "Sudheer";
})();
23) to update the current city with
function func() {};

new func(x, y, z);
40 re-declaration. Since each function call will create a new execution context, the same variable will have
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
67 value before the declaration and new value(
var object = new (function () {
  this.name = "Sudheer";
})();
26) after the declarion. Hence, the value
class Person {
  constructor(name) {
    this.name = name;
  }
}

var object = new Person("Sudheer");
67 print first followed by new value
var object = new (function () {
  this.name = "Sudheer";
})();
26 in the execution phase.


69. What is the output of below code in an order?

function func() {};

new func(x, y, z);
26

  • 1: undefined, first, default
  • 2: default, default, default
  • 3: first, first, default
  • 4: undefined, undefined, undefined
Answer
Answer: 1

Each context(global or functional) has it's own variable environment and the callstack of variables in a LIFO order. So you can see the message variable value from second, first functions in an order followed by global context message variable value at the end.


70. What is the output of below code?

function func() {};

new func(x, y, z);
27

  • 1: functionOne is not defined
  • 2: functionOne
  • 3: console.log("functionOne")
  • 4: undefined
Answer
Answer: 1

The function call

var object = new (function () {
  this.name = "Sudheer";
})();
29 is not going to be part of scope chain and it has it's own execution context with the enclosed variable environment. i.e, It won't be accessed from global context. Hence, there will be an error while invoking the function as
var object = new (function () {
  this.name = "Sudheer";
})();
30.


71. What is the output of below code?

function func() {};

new func(x, y, z);
28

  • 1: {name: "John", eat: f}, {name: "John", eat: f}
  • 2: Window {...}, Window {...}
  • 3: {name: "John", eat: f}, undefined
  • 4: {name: "John", eat: f}, Window {...}
Answer
Answer: 4

function func() {};

new func(x, y, z);
35 keyword is dynamic scoped but not lexically scoped . In other words, it doesn't matter where
function func() {};

new func(x, y, z);
35 has been written but how it has been invoked really matter. In the above code snippet, the
var object = new (function () {
  this.name = "Sudheer";
})();
33 object invokes
var object = new (function () {
  this.name = "Sudheer";
})();
34 function so
function func() {};

new func(x, y, z);
35 keyword refers to
var object = new (function () {
  this.name = "Sudheer";
})();
33 object but
var object = new (function () {
  this.name = "Sudheer";
})();
37 has been invoked by
var object = new (function () {
  this.name = "Sudheer";
})();
34 function and
function func() {};

new func(x, y, z);
35 will have default
var object = new (function () {
  this.name = "Sudheer";
})();
40 object.

The above pit fall fixed by three ways,

  1. In ES6, the arrow function will make
    function func() {};
    
    new func(x, y, z);
    35 keyword as lexically scoped. Since the surrounding object of
    function func() {};
    
    new func(x, y, z);
    35 object is
    var object = new (function () {
      this.name = "Sudheer";
    })();
    33 object, the
    var object = new (function () {
      this.name = "Sudheer";
    })();
    37 function will contain
    var object = new (function () {
      this.name = "Sudheer";
    })();
    33 object for
    function func() {};
    
    new func(x, y, z);
    35 object.

function func() {};

new func(x, y, z);
29

The next two solutions have been used before ES6 introduced.

  1. It is possible create a reference of
    function func() {};
    
    new func(x, y, z);
    35 into a separate variable and use that new variable inplace of
    function func() {};
    
    new func(x, y, z);
    35 keyword inside
    var object = new (function () {
      this.name = "Sudheer";
    })();
    37 function. This is a common practice in jQuery and AngularJS before ES6 introduced.

function func() {};

new func(x, y, z);
30

  1. The
    var object = new (function () {
      this.name = "Sudheer";
    })();
    37 function can bind explicitly with
    function func() {};
    
    new func(x, y, z);
    35 keyword where it refers
    var object = new (function () {
      this.name = "Sudheer";
    })();
    40 object.

function func() {};

new func(x, y, z);
31


72. What is the output of below code?

function func() {};

new func(x, y, z);
32

  • 1: Jello World!, John Smith
  • 2: Jello World!, John
  • 3: Hello World!, John Smith
  • 4: Hello World!, John
Answer
Answer: 3

In JavaScript, primitives are immutable i.e. there is no way to change a primitive value once it gets created. So when you try to update the string's first character, there is no change in the string value and prints the same initial value

var object = new (function () {
  this.name = "Sudheer";
})();
53. Whereas in the later example, the concatenated value is re-assigned to the same variable which will result into creation of new memory block with the reference pointing to
var object = new (function () {
  this.name = "Sudheer";
})();
54 value and the old memory block value(
var object = new (function () {
  this.name = "Sudheer";
})();
55) will be garbage collected.


73. What is the output of below code?

function func() {};

new func(x, y, z);
33

  • 1: True
  • 2: False
  • 3: Compile time error
Answer
Answer: 2

In JavaScript, the variables such as objects, arrays and functions comes under pass by reference. When you try to compare two objects with same content, it is going to compare memory address or reference of those variables. These variables always create separate memory blocks hence the comparison is always going to return false value.


74. What is the output of below code?

function func() {};

new func(x, y, z);
34

  • 1: Undefined
  • 2: Reference error:
  • 3: Hello, Good morning
  • 4: null
Answer
Answer: 3

The variable

var object = new (function () {
  this.name = "Sudheer";
})();
56 is still treated as closure(since it has been used in inner function) eventhough it has been declared after setTimeout function. The function with in setTimeout function will be sent to WebAPI and the variable declaration executed with in 5 seconds with the assigned value. Hence, the text declared for the variable will be displayed.


Disclaimer

The questions provided in this repository are the summary of frequently asked questions across numerous companies. We cannot guarantee that these questions will actually be asked during your interview process, nor should you focus on memorizing all of them. The primary purpose is for you to get a sense of what some companies might ask — do not get discouraged if you don't know the answer to all of them ⁠— that is ok!