Home
Softono
s

sudheerj

Professional software vendor delivering innovative solutions on the Softono platform. Specialized in both open-source and proprietary software development.

Total Products
2

Software by sudheerj

javascript-interview-questions
Open Source

javascript-interview-questions

# JavaScript Interview Questions & Answers > Click :star:if you like the project and follow [@SudheerJonna](https://twitter.com/SudheerJonna) for more updates. Coding questions available [here](#coding-exercise). Check [DataStructures and Algorithms](https://github.com/sudheerj/datastructures-algorithms) for DSA related questions and [ECMAScript](https://github.com/sudheerj/ECMAScript-features) for all ES features.) --- <div> <p align="center"> <a href="https://www.greatfrontend.com/questions/formats/javascript-functions?utm_source=github&utm_medium=referral&utm_campaign=sudheerj-js&fpr=sudheerj&gnrs=sudheerj"> <img src="./images/collab/greatfrontend-js.gif" alt="GreatFrontEnd JavaScript Interview Questions" width="100%"> </a> </p> </div> > Practice 280+ JavaScript coding interview questions in-browser. Built by ex-FAANG interviewers. No AI-generated fluff. No fake reviews. [Try GreatFrontEnd →](https://www.greatfrontend.com/questions/formats/javascript-functions?utm_source=github&utm_medium=referral&utm_campaign=sudheerj-js&fpr=sudheerj&gnrs=sudheerj) 💡 <div> <p align="center"> <a href="https://zerotomastery.io/?utm_source=github&utm_medium=sponsor&utm_campaign=javascript-interview-questions"> <img src="./images/collab/ztm.gif" alt="ZTM Logo" width="100%" /> </a> </p> </div> > I recommend this [JavaScript Projects courses](https://zerotomastery.io/courses/javascript-projects/?utm_source=github&utm_medium=sponsor&utm_campaign=javascript-interview-questions) and this [Advanced JavaScript Course](https://zerotomastery.io/courses/advanced-javascript-concepts/?utm_source=github&utm_medium=sponsor&utm_campaign=javascript-interview-questions) to become top 10% at JS and [this coding interview bootcamp](https://zerotomastery.io/courses/learn-data-structures-and-algorithms/?utm_source=github&utm_medium=sponsor&utm_campaign=javascript-interview-questions) to ace your coding interview and actually get hired. ### Table of Contents <!-- TOC_START --> | No. | Questions | | --- | --------- | | 1 | [What are the possible ways to create objects in JavaScript](#what-are-the-possible-ways-to-create-objects-in-javascript) | | 2 | [What is a prototype chain](#what-is-a-prototype-chain) | | 3 | [What is the Difference Between `call`, `apply`, and `bind`](#what-is-the-difference-between-call-apply-and-bind) | | 4 | [What is JSON and its common operations](#what-is-json-and-its-common-operations) | | 5 | [What is the purpose of the array slice method](#what-is-the-purpose-of-the-array-slice-method) | | 6 | [What is the purpose of the array splice method](#what-is-the-purpose-of-the-array-splice-method) | | 7 | [What is the difference between slice and splice](#what-is-the-difference-between-slice-and-splice) | | 8 | [How do you compare Object and Map](#how-do-you-compare-object-and-map) | | 9 | [What is the difference between == and === operators](#what-is-the-difference-between--and--operators) | | 10 | [What are lambda expressions or arrow functions](#what-are-lambda-expressions-or-arrow-functions) | | 11 | [What is a first class function](#what-is-a-first-class-function) | | 12 | [What is a first order function](#what-is-a-first-order-function) | | 13 | [What is a higher order function](#what-is-a-higher-order-function) | | 14 | [What is a unary function](#what-is-a-unary-function) | | 15 | [What is the currying function](#what-is-the-currying-function) | | 16 | [What is a pure function](#what-is-a-pure-function) | | 17 | [What are the benefits of pure functions](#what-are-the-benefits-of-pure-functions) | | 18 | [What is the purpose of the let keyword](#what-is-the-purpose-of-the-let-keyword) | | 19 | [What is the difference between let and var](#what-is-the-difference-between-let-and-var) | | 20 | [What is the reason to choose the name let as a keyword](#what-is-the-reason-to-choose-the-name-let-as-a-keyword) | | 21 | [How do you redeclare variables in a switch block without an error](#how-do-you-redeclare-variables-in-a-switch-block-without-an-error) | | 22 | [What is the Temporal Dead Zone](#what-is-the-temporal-dead-zone) | | 23 | [What is an IIFE (Immediately Invoked Function Expression)](#what-is-an-iife-immediately-invoked-function-expression) | | 24 | [How do you decode or encode a URL in JavaScript?](#how-do-you-decode-or-encode-a-url-in-javascript) | | 25 | [What is memoization](#what-is-memoization) | | 26 | [What is Hoisting](#what-is-hoisting) | | 27 | [What are classes in ES6](#what-are-classes-in-es6) | | 28 | [What are closures](#what-are-closures) | | 29 | [What are modules](#what-are-modules) | | 30 | [Why do you need modules](#why-do-you-need-modules) | | 31 | [What is scope in javascript](#what-is-scope-in-javascript) | | 32 | [What is a service worker](#what-is-a-service-worker) | | 33 | [How do you manipulate DOM using a service worker](#how-do-you-manipulate-dom-using-a-service-worker) | | 34 | [How do you reuse information across service worker restarts](#how-do-you-reuse-information-across-service-worker-restarts) | | 35 | [What is IndexedDB](#what-is-indexeddb) | | 36 | [What is web storage](#what-is-web-storage) | | 37 | [What is a post message](#what-is-a-post-message) | | 38 | [What is a Cookie](#what-is-a-cookie) | | 39 | [Why do you need a Cookie](#why-do-you-need-a-cookie) | | 40 | [What are the options in a cookie](#what-are-the-options-in-a-cookie) | | 41 | [How do you delete a cookie](#how-do-you-delete-a-cookie) | | 42 | [What are the differences between cookie, local storage and session storage](#what-are-the-differences-between-cookie-local-storage-and-session-storage) | | 43 | [What is the main difference between localStorage and sessionStorage](#what-is-the-main-difference-between-localstorage-and-sessionstorage) | | 44 | [How do you access web storage](#how-do-you-access-web-storage) | | 45 | [What are the methods available on session storage](#what-are-the-methods-available-on-session-storage) | | 46 | [What is a storage event and its event handler](#what-is-a-storage-event-and-its-event-handler) | | 47 | [Why do you need web storage](#why-do-you-need-web-storage) | | 48 | [How do you check web storage browser support](#how-do-you-check-web-storage-browser-support) | | 49 | [How do you check web workers browser support](#how-do-you-check-web-workers-browser-support) | | 50 | [Give an example of a web worker](#give-an-example-of-a-web-worker) | | 51 | [What are the restrictions of web workers on DOM](#what-are-the-restrictions-of-web-workers-on-dom) | | 52 | [What is a promise](#what-is-a-promise) | | 53 | [Why do you need a promise](#why-do-you-need-a-promise) | | 54 | [Explain the three states of promise](#explain-the-three-states-of-promise) | | 55 | [What is a callback function](#what-is-a-callback-function) | | 56 | [Why do we need callbacks](#why-do-we-need-callbacks) | | 57 | [What is a callback hell](#what-is-a-callback-hell) | | 58 | [What are server-sent events](#what-are-server-sent-events) | | 59 | [How do you receive server-sent event notifications](#how-do-you-receive-server-sent-event-notifications) | | 60 | [How do you check browser support for server-sent events](#how-do-you-check-browser-support-for-server-sent-events) | | 61 | [What are the events available for server sent events](#what-are-the-events-available-for-server-sent-events) | | 62 | [What are the main rules of promise](#what-are-the-main-rules-of-promise) | | 63 | [What is callback in callback](#what-is-callback-in-callback) | | 64 | [What is promise chaining](#what-is-promise-chaining) | | 65 | [What is promise.all](#what-is-promiseall) | | 66 | [What is the purpose of the race method in promise](#what-is-the-purpose-of-the-race-method-in-promise) | | 67 | [What is a strict mode in javascript](#what-is-a-strict-mode-in-javascript) | | 68 | [Why do you need strict mode](#why-do-you-need-strict-mode) | | 69 | [How do you declare strict mode](#how-do-you-declare-strict-mode) | | 70 | [What is the purpose of double exclamation](#what-is-the-purpose-of-double-exclamation) | | 71 | [What is the purpose of the delete operator](#what-is-the-purpose-of-the-delete-operator) | | 72 | [What is typeof operator](#what-is-typeof-operator) | | 73 | [What is undefined property](#what-is-undefined-property) | | 74 | [What is null value](#what-is-null-value) | | 75 | [What is the difference between null and undefined](#what-is-the-difference-between-null-and-undefined) | | 76 | [What is eval](#what-is-eval) | | 77 | [What is the difference between window and document](#what-is-the-difference-between-window-and-document) | | 78 | [How do you access history in javascript](#how-do-you-access-history-in-javascript) | | 79 | [How do you detect caps lock key turned on or not](#how-do-you-detect-caps-lock-key-turned-on-or-not) | | 80 | [What is isNaN](#what-is-isnan) | | 81 | [What are the differences between undeclared and undefined variables](#what-are-the-differences-between-undeclared-and-undefined-variables) | | 82 | [What are global variables](#what-are-global-variables) | | 83 | [What are the problems with global variables](#what-are-the-problems-with-global-variables) | | 84 | [What is NaN property](#what-is-nan-property) | | 85 | [What is the purpose of isFinite function](#what-is-the-purpose-of-isfinite-function) | | 86 | [What is an event flow](#what-is-an-event-flow) | | 87 | [What is event capturing](#what-is-event-capturing) | | 88 | [What is event bubbling](#what-is-event-bubbling) | | 89 | [How do you submit a form using JavaScript](#how-do-you-submit-a-form-using-javascript) | | 90 | [How do you find operating system details](#how-do-you-find-operating-system-details) | | 91 | [What is the difference between document load and DOMContentLoaded events](#what-is-the-difference-between-document-load-and-domcontentloaded-events) | | 92 | [What is the difference between native, host and user objects](#what-is-the-difference-between-native-host-and-user-objects) | | 93 | [What are the tools or techniques used for debugging JavaScript code](#what-are-the-tools-or-techniques-used-for-debugging-javascript-code) | | 94 | [What are the pros and cons of promises over callbacks](#what-are-the-pros-and-cons-of-promises-over-callbacks) | | 95 | [What is the difference between an attribute and a property](#what-is-the-difference-between-an-attribute-and-a-property) | | 96 | [What is same-origin policy](#what-is-same-origin-policy) | | 97 | [What is the purpose of void 0](#what-is-the-purpose-of-void-0) | | 98 | [Is JavaScript a compiled or interpreted language](#is-javascript-a-compiled-or-interpreted-language) | | 99 | [Is JavaScript a case-sensitive language](#is-javascript-a-case-sensitive-language) | | 100 | [Is there any relation between Java and JavaScript](#is-there-any-relation-between-java-and-javascript) | | 101 | [What are events](#what-are-events) | | 102 | [Who created javascript](#who-created-javascript) | | 103 | [What is the use of preventDefault method](#what-is-the-use-of-preventdefault-method) | | 104 | [What is the use of stopPropagation method](#what-is-the-use-of-stoppropagation-method) | | 105 | [What are the steps involved in return false usage](#what-are-the-steps-involved-in-return-false-usage) | | 106 | [What is BOM](#what-is-bom) | | 107 | [What is the use of setTimeout](#what-is-the-use-of-settimeout) | | 108 | [What is the use of setInterval](#what-is-the-use-of-setinterval) | | 109 | [Why is JavaScript treated as Single threaded](#why-is-javascript-treated-as-single-threaded) | | 110 | [What is an event delegation](#what-is-an-event-delegation) | | 111 | [What is ECMAScript](#what-is-ecmascript) | | 112 | [What is JSON](#what-is-json) | | 113 | [What are the syntax rules of JSON](#what-are-the-syntax-rules-of-json) | | 114 | [What is the purpose JSON stringify](#what-is-the-purpose-json-stringify) | | 115 | [How do you parse JSON string](#how-do-you-parse-json-string) | | 116 | [Why do you need JSON](#why-do-you-need-json) | | 117 | [What are PWAs](#what-are-pwas) | | 118 | [What is the purpose of clearTimeout method](#what-is-the-purpose-of-cleartimeout-method) | | 119 | [What is the purpose of clearInterval method](#what-is-the-purpose-of-clearinterval-method) | | 120 | [How do you redirect new page in javascript](#how-do-you-redirect-new-page-in-javascript) | | 121 | [How do you check whether a string contains a substring](#how-do-you-check-whether-a-string-contains-a-substring) | | 122 | [How do you validate an email in javascript](#how-do-you-validate-an-email-in-javascript) | | 123 | [How do you get the current url with javascript](#how-do-you-get-the-current-url-with-javascript) | | 124 | [What are the various url properties of location object](#what-are-the-various-url-properties-of-location-object) | | 125 | [How do you get query string values in javascript](#how-do-you-get-query-string-values-in-javascript) | | 126 | [How do you check if a key exists in an object](#how-do-you-check-if-a-key-exists-in-an-object) | | 127 | [How do you loop through or enumerate javascript object](#how-do-you-loop-through-or-enumerate-javascript-object) | | 128 | [How do you test for an empty object](#how-do-you-test-for-an-empty-object) | | 129 | [What is an arguments object](#what-is-an-arguments-object) | | 130 | [How do you make first letter of the string in an uppercase](#how-do-you-make-first-letter-of-the-string-in-an-uppercase) | | 131 | [What are the pros and cons of for loops](#what-are-the-pros-and-cons-of-for-loops) | | 132 | [How do you display the current date in javascript](#how-do-you-display-the-current-date-in-javascript) | | 133 | [How do you compare two date objects](#how-do-you-compare-two-date-objects) | | 134 | [How do you check if a string starts with another string](#how-do-you-check-if-a-string-starts-with-another-string) | | 135 | [How do you trim a string in javascript](#how-do-you-trim-a-string-in-javascript) | | 136 | [How do you add a key value pair in javascript](#how-do-you-add-a-key-value-pair-in-javascript) | | 137 | [Is the !-- notation represents a special operator](#is-the----notation-represents-a-special-operator) | | 138 | [How do you assign default values to variables](#how-do-you-assign-default-values-to-variables) | | 139 | [How do you define multiline strings](#how-do-you-define-multiline-strings) | | 140 | [What is an app shell model](#what-is-an-app-shell-model) | | 141 | [Can we define properties for functions](#can-we-define-properties-for-functions) | | 142 | [What is the way to find the number of parameters expected by a function](#what-is-the-way-to-find-the-number-of-parameters-expected-by-a-function) | | 143 | [What is a polyfill](#what-is-a-polyfill) | | 144 | [What are break and continue statements](#what-are-break-and-continue-statements) | | 145 | [What are js labels](#what-are-js-labels) | | 146 | [What are the benefits of keeping declarations at the top](#what-are-the-benefits-of-keeping-declarations-at-the-top) | | 147 | [What are the benefits of initializing variables](#what-are-the-benefits-of-initializing-variables) | | 148 | [What are the recommendations to create new object](#what-are-the-recommendations-to-create-new-object) | | 149 | [How do you define JSON arrays](#how-do-you-define-json-arrays) | | 150 | [How do you generate random integers](#how-do-you-generate-random-integers) | | 151 | [Can you write a random integers function to print integers within a range](#can-you-write-a-random-integers-function-to-print-integers-within-a-range) | | 152 | [What is tree shaking](#what-is-tree-shaking) | | 153 | [What is the need of tree shaking](#what-is-the-need-of-tree-shaking) | | 154 | [Is it recommended to use eval](#is-it-recommended-to-use-eval) | | 155 | [What is a Regular Expression](#what-is-a-regular-expression) | | 156 | [What are the string methods that accept Regular expression](#what-are-the-string-methods-that-accept-regular-expression) | | 157 | [What are modifiers in regular expression](#what-are-modifiers-in-regular-expression) | | 158 | [What are regular expression patterns](#what-are-regular-expression-patterns) | | 159 | [What is a RegExp object](#what-is-a-regexp-object) | | 160 | [How do you search a string for a pattern](#how-do-you-search-a-string-for-a-pattern) | | 161 | [What is the purpose of exec method](#what-is-the-purpose-of-exec-method) | | 162 | [How do you change the style of a HTML element](#how-do-you-change-the-style-of-a-html-element) | | 163 | [What would be the result of 1+2+'3'](#what-would-be-the-result-of-123) | | 164 | [What is a debugger statement](#what-is-a-debugger-statement) | | 165 | [What is the purpose of breakpoints in debugging](#what-is-the-purpose-of-breakpoints-in-debugging) | | 166 | [Can I use reserved words as identifiers](#can-i-use-reserved-words-as-identifiers) | | 167 | [How do you detect a mobile browser](#how-do-you-detect-a-mobile-browser) | | 168 | [How do you detect a mobile browser without regexp](#how-do-you-detect-a-mobile-browser-without-regexp) | | 169 | [How do you get the image width and height using JS](#how-do-you-get-the-image-width-and-height-using-js) | | 170 | [How do you make synchronous HTTP request](#how-do-you-make-synchronous-http-request) | | 171 | [How do you make asynchronous HTTP request](#how-do-you-make-asynchronous-http-request) | | 172 | [How do you convert date to another timezone in javascript](#how-do-you-convert-date-to-another-timezone-in-javascript) | | 173 | [What are the properties used to get size of window](#what-are-the-properties-used-to-get-size-of-window) | | 174 | [What is a conditional operator in javascript](#what-is-a-conditional-operator-in-javascript) | | 175 | [Can you apply chaining on conditional operator](#can-you-apply-chaining-on-conditional-operator) | | 176 | [What are the ways to execute javascript after a page load](#what-are-the-ways-to-execute-javascript-after-a-page-load) | | 177 | [What is the difference between proto and prototype](#what-is-the-difference-between-proto-and-prototype) | | 178 | [Can you give an example of when you really need a semicolon](#can-you-give-an-example-of-when-you-really-need-a-semicolon) | | 179 | [What is the freeze method](#what-is-the-freeze-method) | | 180 | [What is the purpose of the freeze method](#what-is-the-purpose-of-the-freeze-method) | | 181 | [Why do I need to use the freeze method](#why-do-i-need-to-use-the-freeze-method) | | 182 | [How do you detect a browser language preference](#how-do-you-detect-a-browser-language-preference) | | 183 | [How to convert a string to title case with javascript](#how-to-convert-a-string-to-title-case-with-javascript) | | 184 | [How do you detect if javascript is disabled on the page](#how-do-you-detect-if-javascript-is-disabled-on-the-page) | | 185 | [What are various operators supported by javascript](#what-are-various-operators-supported-by-javascript) | | 186 | [What is a rest parameter](#what-is-a-rest-parameter) | | 187 | [What happens if you do not use rest parameter as a last argument](#what-happens-if-you-do-not-use-rest-parameter-as-a-last-argument) | | 188 | [What are the bitwise operators available in javascript](#what-are-the-bitwise-operators-available-in-javascript) | | 189 | [What is a spread operator](#what-is-a-spread-operator) | | 190 | [How do you determine whether object is frozen or not](#how-do-you-determine-whether-object-is-frozen-or-not) | | 191 | [How do you determine two values same or not using object](#how-do-you-determine-two-values-same-or-not-using-object) | | 192 | [What is the purpose of using object is method](#what-is-the-purpose-of-using-object-is-method) | | 193 | [How do you copy properties from one object to other](#how-do-you-copy-properties-from-one-object-to-other) | | 194 | [What are the applications of the assign method](#what-are-the-applications-of-the-assign-method) | | 195 | [What is a proxy object](#what-is-a-proxy-object) | | 196 | [What is the purpose of the seal method](#what-is-the-purpose-of-the-seal-method) | | 197 | [What are the applications of the seal method](#what-are-the-applications-of-the-seal-method) | | 198 | [What are the differences between the freeze and seal methods](#what-are-the-differences-between-the-freeze-and-seal-methods) | | 199 | [How do you determine if an object is sealed or not](#how-do-you-determine-if-an-object-is-sealed-or-not) | | 200 | [How do you get enumerable key and value pairs](#how-do-you-get-enumerable-key-and-value-pairs) | | 201 | [What is the main difference between Object.values and Object.entries method](#what-is-the-main-difference-between-objectvalues-and-objectentries-method) | | 202 | [How can you get the list of keys of any object](#how-can-you-get-the-list-of-keys-of-any-object) | | 203 | [How do you create an object with a prototype](#how-do-you-create-an-object-with-a-prototype) | | 204 | [What is a WeakSet](#what-is-a-weakset) | | 205 | [What are the differences between WeakSet and Set](#what-are-the-differences-between-weakset-and-set) | | 206 | [List down the collection of methods available on WeakSet](#list-down-the-collection-of-methods-available-on-weakset) | | 207 | [What is a WeakMap](#what-is-a-weakmap) | | 208 | [What are the differences between WeakMap and Map](#what-are-the-differences-between-weakmap-and-map) | | 209 | [List down the collection of methods available on WeakMap](#list-down-the-collection-of-methods-available-on-weakmap) | | 210 | [What is the purpose of uneval](#what-is-the-purpose-of-uneval) | | 211 | [How do you encode an URL](#how-do-you-encode-an-url) | | 212 | [How do you decode an URL](#how-do-you-decode-an-url) | | 213 | [How do you print the contents of web page](#how-do-you-print-the-contents-of-web-page) | | 214 | [What is the difference between uneval and eval](#what-is-the-difference-between-uneval-and-eval) | | 215 | [What is an anonymous function](#what-is-an-anonymous-function) | | 216 | [What is the precedence order between local and global variables](#what-is-the-precedence-order-between-local-and-global-variables) | | 217 | [What are javascript accessors](#what-are-javascript-accessors) | | 218 | [How do you define property on Object constructor](#how-do-you-define-property-on-object-constructor) | | 219 | [What is the difference between get and defineProperty](#what-is-the-difference-between-get-and-defineproperty) | | 220 | [What are the advantages of Getters and Setters](#what-are-the-advantages-of-getters-and-setters) | | 221 | [Can I add getters and setters using defineProperty method](#can-i-add-getters-and-setters-using-defineproperty-method) | | 222 | [What is the purpose of switch-case](#what-is-the-purpose-of-switch-case) | | 223 | [What are the conventions to be followed for the usage of switch case](#what-are-the-conventions-to-be-followed-for-the-usage-of-switch-case) | | 224 | [What are primitive data types](#what-are-primitive-data-types) | | 225 | [What are the different ways to access object properties](#what-are-the-different-ways-to-access-object-properties) | | 226 | [What are the function parameter rules](#what-are-the-function-parameter-rules) | | 227 | [What is an error object](#what-is-an-error-object) | | 228 | [When do you get a syntax error](#when-do-you-get-a-syntax-error) | | 229 | [What are the different error names from error object](#what-are-the-different-error-names-from-error-object) | | 230 | [What are the various statements in error handling](#what-are-the-various-statements-in-error-handling) | | 231 | [What are the two types of loops in javascript](#what-are-the-two-types-of-loops-in-javascript) | | 232 | [What is nodejs](#what-is-nodejs) | | 233 | [What is the Intl object](#what-is-the-intl-object) | | 234 | [How do you perform language specific date and time formatting](#how-do-you-perform-language-specific-date-and-time-formatting) | | 235 | [What is an Iterator](#what-is-an-iterator) | | 236 | [How does synchronous iteration works](#how-does-synchronous-iteration-works) | | 237 | [What is the event loop](#what-is-the-event-loop) | | 238 | [What is the call stack](#what-is-the-call-stack) | | 239 | [What is the event queue](#what-is-the-event-queue) | | 240 | [What is a decorator](#what-is-a-decorator) | | 241 | [What are the properties of the Intl object](#what-are-the-properties-of-the-intl-object) | | 242 | [What is an Unary operator](#what-is-an-unary-operator) | | 243 | [How do you sort elements in an array](#how-do-you-sort-elements-in-an-array) | | 244 | [What is the purpose of compareFunction while sorting arrays](#what-is-the-purpose-of-comparefunction-while-sorting-arrays) | | 245 | [How do you reverse an array](#how-do-you-reverse-an-array) | | 246 | [How do you find the min and max values in an array](#how-do-you-find-the-min-and-max-values-in-an-array) | | 247 | [How do you find the min and max values without Math functions](#how-do-you-find-the-min-and-max-values-without-math-functions) | | 248 | [What is an empty statement and purpose of it](#what-is-an-empty-statement-and-purpose-of-it) | | 249 | [How do you get the metadata of a module](#how-do-you-get-the-metadata-of-a-module) | | 250 | [What is the comma operator](#what-is-the-comma-operator) | | 251 | [What is the advantage of the comma operator](#what-is-the-advantage-of-the-comma-operator) | | 252 | [What is typescript](#what-is-typescript) | | 253 | [What are the differences between javascript and typescript](#what-are-the-differences-between-javascript-and-typescript) | | 254 | [What are the advantages of typescript over javascript](#what-are-the-advantages-of-typescript-over-javascript) | | 255 | [What is an object initializer](#what-is-an-object-initializer) | | 256 | [What is a constructor method](#what-is-a-constructor-method) | | 257 | [What happens if you write constructor more than once in a class](#what-happens-if-you-write-constructor-more-than-once-in-a-class) | | 258 | [How do you call the constructor of a parent class](#how-do-you-call-the-constructor-of-a-parent-class) | | 259 | [How do you get the prototype of an object](#how-do-you-get-the-prototype-of-an-object) | | 260 | [What happens If I pass string type for getPrototype method](#what-happens-if-i-pass-string-type-for-getprototype-method) | | 261 | [How do you set the prototype of one object to another](#how-do-you-set-the-prototype-of-one-object-to-another) | | 262 | [How do you check whether an object can be extended or not](#how-do-you-check-whether-an-object-can-be-extended-or-not) | | 263 | [How do you prevent an object from being extend](#how-do-you-prevent-an-object-from-being-extend) | | 264 | [What are the different ways to make an object non-extensible](#what-are-the-different-ways-to-make-an-object-non-extensible) | | 265 | [How do you define multiple properties on an object](#how-do-you-define-multiple-properties-on-an-object) | | 266 | [What is the MEAN stack](#what-is-the-mean-stack) | | 267 | [What is obfuscation in javascript](#what-is-obfuscation-in-javascript) | | 268 | [Why do you need Obfuscation](#why-do-you-need-obfuscation) | | 269 | [What is Minification](#what-is-minification) | | 270 | [What are the advantages of minification](#what-are-the-advantages-of-minification) | | 271 | [What are the differences between obfuscation and Encryption](#what-are-the-differences-between-obfuscation-and-encryption) | | 272 | [What are the common tools used for minification](#what-are-the-common-tools-used-for-minification) | | 273 | [How do you perform form validation using javascript](#how-do-you-perform-form-validation-using-javascript) | | 274 | [How do you perform form validation without javascript](#how-do-you-perform-form-validation-without-javascript) | | 275 | [What are the DOM methods available for constraint validation](#what-are-the-dom-methods-available-for-constraint-validation) | | 276 | [What are the available constraint validation DOM properties](#what-are-the-available-constraint-validation-dom-properties) | | 277 | [What are the validity properties](#what-are-the-validity-properties) | | 278 | [Give an example usage of the rangeOverflow property](#give-an-example-usage-of-the-rangeoverflow-property) | | 279 | [Are enums available in javascript](#are-enums-available-in-javascript) | | 280 | [What is an enum](#what-is-an-enum) | | 281 | [How do you list all properties of an object](#how-do-you-list-all-properties-of-an-object) | | 282 | [How do you get property descriptors of an object](#how-do-you-get-property-descriptors-of-an-object) | | 283 | [What are the attributes provided by a property descriptor](#what-are-the-attributes-provided-by-a-property-descriptor) | | 284 | [How do you extend classes](#how-do-you-extend-classes) | | 285 | [How do I modify the url without reloading the page](#how-do-i-modify-the-url-without-reloading-the-page) | | 286 | [How do you check whether or not an array includes a particular value](#how-do-you-check-whether-or-not-an-array-includes-a-particular-value) | | 287 | [How do you compare scalar arrays](#how-do-you-compare-scalar-arrays) | | 288 | [How to get the value from get parameters](#how-to-get-the-value-from-get-parameters) | | 289 | [How do you print numbers with commas as thousand separators](#how-do-you-print-numbers-with-commas-as-thousand-separators) | | 290 | [What is the difference between java and javascript](#what-is-the-difference-between-java-and-javascript) | | 291 | [Does JavaScript support namespaces](#does-javascript-support-namespaces) | | 292 | [How do you declare a namespace](#how-do-you-declare-a-namespace) | | 293 | [How do you invoke javascript code in an iframe from the parent page](#how-do-you-invoke-javascript-code-in-an-iframe-from-the-parent-page) | | 294 | [How do you get the timezone offset of a date object](#how-do-you-get-the-timezone-offset-of-a-date-object) | | 295 | [How do you load CSS and JS files dynamically](#how-do-you-load-css-and-js-files-dynamically) | | 296 | [What are the different methods to find HTML elements in DOM](#what-are-the-different-methods-to-find-html-elements-in-dom) | | 297 | [What is jQuery](#what-is-jquery) | | 298 | [What is V8 JavaScript engine](#what-is-v8-javascript-engine) | | 299 | [Why do we call javascript as dynamic language](#why-do-we-call-javascript-as-dynamic-language) | | 300 | [What is a void operator](#what-is-a-void-operator) | | 301 | [How to set the cursor to wait](#how-to-set-the-cursor-to-wait) | | 302 | [How do you create an infinite loop](#how-do-you-create-an-infinite-loop) | | 303 | [Why do you need to avoid with statement](#why-do-you-need-to-avoid-with-statement) | | 304 | [What is the output of the following for loops](#what-is-the-output-of-the-following-for-loops) | | 305 | [List down some of the features of ES6](#list-down-some-of-the-features-of-es6) | | 306 | [What is ES6](#what-is-es6) | | 307 | [Can I redeclare let and const variables](#can-i-redeclare-let-and-const-variables) | | 308 | [Does the `const` variable make the value immutable](#does-the-const-variable-make-the-value-immutable) | | 309 | [What are default parameters](#what-are-default-parameters) | | 310 | [What are template literals](#what-are-template-literals) | | 311 | [How do you write multi-line strings in template literals](#how-do-you-write-multi-line-strings-in-template-literals) | | 312 | [What are nesting templates](#what-are-nesting-templates) | | 313 | [What are tagged templates](#what-are-tagged-templates) | | 314 | [What are raw strings](#what-are-raw-strings) | | 315 | [What is destructuring assignment](#what-is-destructuring-assignment) | | 316 | [What are default values in destructuring assignment](#what-are-default-values-in-destructuring-assignment) | | 317 | [How do you swap variables in destructuring assignment](#how-do-you-swap-variables-in-destructuring-assignment) | | 318 | [What are enhanced object literals](#what-are-enhanced-object-literals) | | 319 | [What are dynamic imports](#what-are-dynamic-imports) | | 320 | [What are the use cases for dynamic imports](#what-are-the-use-cases-for-dynamic-imports) | | 321 | [What are typed arrays](#what-are-typed-arrays) | | 322 | [What are the advantages of module loaders](#what-are-the-advantages-of-module-loaders) | | 323 | [What is collation](#what-is-collation) | | 324 | [What is for...of statement](#what-is-forof-statement) | | 325 | [What is the output of below spread operator array](#what-is-the-output-of-below-spread-operator-array) | | 326 | [Is PostMessage secure](#is-postmessage-secure) | | 327 | [What are the problems with postmessage target origin as wildcard](#what-are-the-problems-with-postmessage-target-origin-as-wildcard) | | 328 | [How do you avoid receiving postMessages from attackers](#how-do-you-avoid-receiving-postmessages-from-attackers) | | 329 | [Can I avoid using postMessages completely](#can-i-avoid-using-postmessages-completely) | | 330 | [Is postMessages synchronous](#is-postmessages-synchronous) | | 331 | [What paradigm is Javascript](#what-paradigm-is-javascript) | | 332 | [What is the difference between internal and external javascript](#what-is-the-difference-between-internal-and-external-javascript) | | 333 | [Is JavaScript faster than server side script](#is-javascript-faster-than-server-side-script) | | 334 | [How do you get the status of a checkbox](#how-do-you-get-the-status-of-a-checkbox) | | 335 | [What is the purpose of double tilde operator](#what-is-the-purpose-of-double-tilde-operator) | | 336 | [How do you convert character to ASCII code](#how-do-you-convert-character-to-ascii-code) | | 337 | [What is ArrayBuffer](#what-is-arraybuffer) | | 338 | [What is the output of below string expression](#what-is-the-output-of-below-string-expression) | | 339 | [What is the purpose of Error object](#what-is-the-purpose-of-error-object) | | 340 | [What is the purpose of EvalError object](#what-is-the-purpose-of-evalerror-object) | | 341 | [What are the list of cases error thrown from non-strict mode to strict mode](#what-are-the-list-of-cases-error-thrown-from-non-strict-mode-to-strict-mode) | | 342 | [Do all objects have prototypes](#do-all-objects-have-prototypes) | | 343 | [What is the difference between a parameter and an argument](#what-is-the-difference-between-a-parameter-and-an-argument) | | 344 | [What is the purpose of some method in arrays](#what-is-the-purpose-of-some-method-in-arrays) | | 345 | [How do you combine two or more arrays](#how-do-you-combine-two-or-more-arrays) | | 346 | [What is the difference between Shallow and Deep copy](#what-is-the-difference-between-shallow-and-deep-copy) | | 347 | [How do you create specific number of copies of a string](#how-do-you-create-specific-number-of-copies-of-a-string) | | 348 | [How do you return all matching strings against a regular expression](#how-do-you-return-all-matching-strings-against-a-regular-expression) | | 349 | [How do you trim a string at the beginning or ending](#how-do-you-trim-a-string-at-the-beginning-or-ending) | | 350 | [What is the output of below console statement with unary operator](#what-is-the-output-of-below-console-statement-with-unary-operator) | | 351 | [Does javascript uses mixins](#does-javascript-uses-mixins) | | 352 | [Mixin Example using Object composition](#mixin-example-using-object-composition) | | 353 | [Benefits](#benefits) | | 354 | [What is a thunk function](#what-is-a-thunk-function) | | 355 | [What are asynchronous thunks](#what-are-asynchronous-thunks) | | 356 | [What is the output of below function calls](#what-is-the-output-of-below-function-calls) | | 357 | [How to remove all line breaks from a string](#how-to-remove-all-line-breaks-from-a-string) | | 358 | [What is the difference between reflow and repaint](#what-is-the-difference-between-reflow-and-repaint) | | 359 | [What happens with negating an array](#what-happens-with-negating-an-array) | | 360 | [What happens if we add two arrays](#what-happens-if-we-add-two-arrays) | | 361 | [What is the output of prepend additive operator on falsy values](#what-is-the-output-of-prepend-additive-operator-on-falsy-values) | | 362 | [How do you create self string using special characters](#how-do-you-create-self-string-using-special-characters) | | 363 | [How do you remove falsy values from an array](#how-do-you-remove-falsy-values-from-an-array) | | 364 | [How do you get unique values of an array](#how-do-you-get-unique-values-of-an-array) | | 365 | [What is destructuring aliases](#what-is-destructuring-aliases) | | 366 | [How do you map the array values without using map method](#how-do-you-map-the-array-values-without-using-map-method) | | 367 | [How do you empty an array](#how-do-you-empty-an-array) | | 368 | [How do you round numbers to certain decimals](#how-do-you-round-numbers-to-certain-decimals) | | 369 | [What is the easiest way to convert an array to an object](#what-is-the-easiest-way-to-convert-an-array-to-an-object) | | 370 | [How do you create an array with some data](#how-do-you-create-an-array-with-some-data) | | 371 | [What are the placeholders from console object](#what-are-the-placeholders-from-console-object) | | 372 | [Is it possible to add CSS to console messages](#is-it-possible-to-add-css-to-console-messages) | | 373 | [What is the purpose of dir method of console object](#what-is-the-purpose-of-dir-method-of-console-object) | | 374 | [Is it possible to debug HTML elements in console](#is-it-possible-to-debug-html-elements-in-console) | | 375 | [How do you display data in a tabular format using console object](#how-do-you-display-data-in-a-tabular-format-using-console-object) | | 376 | [How do you verify that an argument is a Number or not](#how-do-you-verify-that-an-argument-is-a-number-or-not) | | 377 | [How do you create copy to clipboard button](#how-do-you-create-copy-to-clipboard-button) | | 378 | [What is the shortcut to get timestamp](#what-is-the-shortcut-to-get-timestamp) | | 379 | [How do you flattening multi dimensional arrays](#how-do-you-flattening-multi-dimensional-arrays) | | 380 | [What is the easiest multi condition checking](#what-is-the-easiest-multi-condition-checking) | | 381 | [How do you capture browser back button](#how-do-you-capture-browser-back-button) | | 382 | [How do you disable right click in the web page](#how-do-you-disable-right-click-in-the-web-page) | | 383 | [What are wrapper objects](#what-are-wrapper-objects) | | 384 | [What is AJAX](#what-is-ajax) | | 385 | [What are the different ways to deal with Asynchronous Code](#what-are-the-different-ways-to-deal-with-asynchronous-code) | | 386 | [How to cancel a fetch request](#how-to-cancel-a-fetch-request) | | 387 | [What is web speech API](#what-is-web-speech-api) | | 388 | [What is minimum timeout throttling](#what-is-minimum-timeout-throttling) | | 389 | [How do you implement zero timeout in modern browsers](#how-do-you-implement-zero-timeout-in-modern-browsers) | | 390 | [What are tasks in event loop](#what-are-tasks-in-event-loop) | | 391 | [What is microtask](#what-is-microtask) | | 392 | [What are different event loops](#what-are-different-event-loops) | | 393 | [What is the purpose of queueMicrotask](#what-is-the-purpose-of-queuemicrotask) | | 394 | [How do you use javascript libraries in typescript file](#how-do-you-use-javascript-libraries-in-typescript-file) | | 395 | [What are the differences between promises and observables](#what-are-the-differences-between-promises-and-observables) | | 396 | [What is heap](#what-is-heap) | | 397 | [What is an event table](#what-is-an-event-table) | | 398 | [What is a microTask queue](#what-is-a-microtask-queue) | | 399 | [What is the difference between shim and polyfill](#what-is-the-difference-between-shim-and-polyfill) | | 400 | [How do you detect primitive or non primitive value type](#how-do-you-detect-primitive-or-non-primitive-value-type) | | 401 | [What is babel](#what-is-babel) | | 402 | [Is Node.js completely single threaded](#is-nodejs-completely-single-threaded) | | 403 | [What are the common use cases of observables](#what-are-the-common-use-cases-of-observables) | | 404 | [What is RxJS](#what-is-rxjs) | | 405 | [What is the difference between Function constructor and function declaration](#what-is-the-difference-between-function-constructor-and-function-declaration) | | 406 | [What is a Short circuit condition](#what-is-a-short-circuit-condition) | | 407 | [What is the easiest way to resize an array](#what-is-the-easiest-way-to-resize-an-array) | | 408 | [What is an observable](#what-is-an-observable) | | 409 | [What is the difference between function and class declarations](#what-is-the-difference-between-function-and-class-declarations) | | 410 | [What is an async function](#what-is-an-async-function) | | 411 | [How do you prevent promises swallowing errors](#how-do-you-prevent-promises-swallowing-errors) | | 412 | [What is deno](#what-is-deno) | | 413 | [How do you make an object iterable in javascript](#how-do-you-make-an-object-iterable-in-javascript) | | 414 | [What is a Proper Tail Call](#what-is-a-proper-tail-call) | | 415 | [How do you check an object is a promise or not](#how-do-you-check-an-object-is-a-promise-or-not) | | 416 | [How to detect if a function is called as constructor](#how-to-detect-if-a-function-is-called-as-constructor) | | 417 | [What are the differences between arguments object and rest parameter](#what-are-the-differences-between-arguments-object-and-rest-parameter) | | 418 | [What are the differences between spread operator and rest parameter](#what-are-the-differences-between-spread-operator-and-rest-parameter) | | 419 | [What are the different kinds of generators](#what-are-the-different-kinds-of-generators) | | 420 | [What are the built-in iterables](#what-are-the-built-in-iterables) | | 421 | [What are the differences between for...of and for...in statements](#what-are-the-differences-between-forof-and-forin-statements) | | 422 | [How do you define instance and non-instance properties](#how-do-you-define-instance-and-non-instance-properties) | | 423 | [What is the difference between isNaN and Number.isNaN?](#what-is-the-difference-between-isnan-and-numberisnan) | | 424 | [How to invoke an IIFE without any extra brackets?](#how-to-invoke-an-iife-without-any-extra-brackets) | | 425 | [Is that possible to use expressions in switch cases?](#is-that-possible-to-use-expressions-in-switch-cases) | | 426 | [What is the easiest way to ignore promise errors?](#what-is-the-easiest-way-to-ignore-promise-errors) | | 427 | [How do style the console output using CSS?](#how-do-style-the-console-output-using-css) | | 428 | [What is nullish coalescing operator (??)?](#what-is-nullish-coalescing-operator-) | | 429 | [How do you group and nest console output?](#how-do-you-group-and-nest-console-output) | | 430 | [What is the difference between dense and sparse arrays?](#what-is-the-difference-between-dense-and-sparse-arrays) | | 431 | [What are the different ways to create sparse arrays?](#what-are-the-different-ways-to-create-sparse-arrays) | | 432 | [What is the difference between setTimeout, setImmediate and process.nextTick?](#what-is-the-difference-between-settimeout-setimmediate-and-processnexttick) | | 433 | [How do you reverse an array without modifying original array?](#how-do-you-reverse-an-array-without-modifying-original-array) | | 434 | [How do you create custom HTML element?](#how-do-you-create-custom-html-element) | | 435 | [What is global execution context?](#what-is-global-execution-context) | | 436 | [What is function execution context?](#what-is-function-execution-context) | | 437 | [What is debouncing?](#what-is-debouncing) | | 438 | [What is throttling?](#what-is-throttling) | | 439 | [What is optional chaining?](#what-is-optional-chaining) | | 440 | [What is an environment record?](#what-is-an-environment-record) | | 441 | [How to verify if a variable is an array?](#how-to-verify-if-a-variable-is-an-array) | | 442 | [What is pass by value and pass by reference?](#what-is-pass-by-value-and-pass-by-reference) | | 443 | [What are the differences between primitives and non-primitives?](#what-are-the-differences-between-primitives-and-non-primitives) | | 444 | [How do you create your own bind method using either call or apply method?](#how-do-you-create-your-own-bind-method-using-either-call-or-apply-method) | | 445 | [What are the differences between pure and impure functions?](#what-are-the-differences-between-pure-and-impure-functions) | | 446 | [What is referential transparency?](#what-is-referential-transparency) | | 447 | [What are the possible side-effects in javascript?](#what-are-the-possible-side-effects-in-javascript) | | 448 | [What are compose and pipe functions?](#what-are-compose-and-pipe-functions) | | 449 | [What is module pattern?](#what-is-module-pattern) | | 450 | [What is Function Composition?](#what-is-function-composition) | | 451 | [How to use await outside of async function prior to ES2022?](#how-to-use-await-outside-of-async-function-prior-to-es2022) | | 452 | [What is the purpose of the this keyword in JavaScript?](#what-is-the-purpose-of-the-this-keyword-in-javascript) | | 453 | [What are the uses of closures?](#what-are-the-uses-of-closures) | | 454 | [What are the phases of execution context?](#what-are-the-phases-of-execution-context) | | 455 | [What are the possible reasons for memory leaks?](#what-are-the-possible-reasons-for-memory-leaks) | | 456 | [What are the optimization techniques of V8 engine?](#what-are-the-optimization-techniques-of-v8-engine) | | 457 | [What are the examples of built-in higher order functions?](#what-are-the-examples-of-built-in-higher-order-functions) | | 458 | [What are the benefits higher order functions?](#what-are-the-benefits-higher-order-functions) | | 459 | [How do you create polyfills for map, filter and reduce methods?](#how-do-you-create-polyfills-for-map-filter-and-reduce-methods) | | 460 | [What is the difference between map and forEach functions?](#what-is-the-difference-between-map-and-foreach-functions) | | 461 | [Give an example of statements affected by automatic semicolon insertion?](#give-an-example-of-statements-affected-by-automatic-semicolon-insertion) | | 462 | [What are the event phases of a browser?](#what-are-the-event-phases-of-a-browser) | | 463 | [What are the real world use cases of proxy?](#what-are-the-real-world-use-cases-of-proxy) | | 464 | [What are hidden classes?](#what-are-hidden-classes) | | 465 | [What is inline caching?](#what-is-inline-caching) | | 466 | [What are the different ways to execute external scripts?](#what-are-the-different-ways-to-execute-external-scripts) | | 467 | [What is Lexical Scope?](#what-is-lexical-scope) | | 468 | [How to detect system dark mode in javascript?](#how-to-detect-system-dark-mode-in-javascript) | | 469 | [What is the purpose of requestAnimationFrame method?](#what-is-the-purpose-of-requestanimationframe-method) | | 470 | [What is the difference between substring and substr methods?](#what-is-the-difference-between-substring-and-substr-methods) | | 471 | [How to find the number of parameters expected by a function?](#how-to-find-the-number-of-parameters-expected-by-a-function) | | 472 | [What is globalThis, and what is the importance of it?](#what-is-globalthis-and-what-is-the-importance-of-it) | | 473 | [What are the array mutation methods?](#what-are-the-array-mutation-methods) | | 474 | [What is module scope in JavaScript?](#what-is-module-scope-in-javascript) | | 475 | [What are shadowing and illegal shadowing?](#what-are-shadowing-and-illegal-shadowing) | | 476 | [Why is it important to remove event listeners after use?](#why-is-it-important-to-remove-event-listeners-after-use) | | 477 | [What is structuredClone and how is it used for deep copying objects?](#what-is-structuredclone-and-how-is-it-used-for-deep-copying-objects) | | 478 | [What is the difference between const and Object.freeze](#what-is-the-difference-between-const-and-objectfreeze) | <!-- TOC_END --> <!-- QUESTIONS_START --> 1. ### What are the possible ways to create objects in JavaScript There are many ways to create objects in javascript as mentioned below: 1. **Object literal syntax:** The object literal syntax (or object initializer), is a comma-separated set of name-value pairs wrapped in curly braces. ```javascript 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 one of the easiest ways to create an object and it's most commonly used for creating simple, ad-hoc objects. 2. **Object constructor:** The simplest way to create an empty object is using the `Object` constructor. Currently this approach is not recommended. ```javascript var object = new Object(); ``` The `Object()` is a built-in constructor function so "new" keyword is not required for creating plain objects. The above code snippet can be re-written as: ```javascript var object = Object(); ``` However, `Object()` can be used to either create a plain object or convert a given value into its corresponding object wrapper, whereas `new Object()` is specifically used to explicitly create a new object instance. 3. **Object's create method:** The `create` method of Object is used to create a new object by passing the specified prototype object and properties as arguments, i.e., this pattern is helpful to create new objects based on existing objects. In other words, this is useful for setting up **prototypal inheritance**. The second argument is optional and it is used to create properties on a newly created object. The following code creates a new empty object whose prototype is null. ```javascript var object = Object.create(null); ``` The following example creates an object along with additional new properties. ```javascript let vehicle = { wheels: "4", fuelType: "Gasoline", color: "Green", }; let carProps = { type: { value: "Volkswagen", }, model: { value: "Golf", }, }; var car = Object.create(vehicle, carProps); console.log(car); ``` 4. **Function constructor:** In this approach, create any function and apply the new operator to create object instances. This was the main way to do constructor-based OOP before ES6 classes. ```javascript 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. Using prototype means you're sharing methods/properties across instances, which saves memory and improve performance. ```javascript function Person() {} Person.prototype.name = "Sudheer"; var object = new Person(); ``` This is equivalent to creating an instance with `Object.create` method with a function prototype and then calling that function with an instance and parameters as arguments. ```javascript function func(x, y, z) { this.x = x; this.y = y; this.z = z; } var instance = new func(1, 2, 3); ``` **(OR)** ```javascript function func(x, y, z) { this.x = x; this.y = y; this.z = z; } // Create a new instance using function prototype. var newInstance = Object.create(func.prototype); // Call the function var result = func.call(newInstance, 1, 2, 3); // 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. **Object's assign method:** The `Object.assign` method is used to copy all the properties from one or more source objects and stores them into a target object. This is mainly used for cloning and merging The following code creates a new staff object by copying properties of his working company and the car he owns. ```javascript const orgObject = { company: "XYZ Corp" }; const carObject = { name: "Toyota" }; const staff = Object.assign({}, orgObject, carObject); ``` 7. **ES6 Class syntax:** ES6 introduces class feature to create objects. This is syntactic sugar over the prototype-based system. ```javascript class Person { constructor(name) { this.name = name; } } var object = new Person("Sudheer"); ``` 8. **Singleton pattern:** A Singleton is an object which can only be instantiated one time. Repeated calls to its constructor return the same instance. This way one can ensure that they don't accidentally create multiple instances. ##### Singleton with Closure (Classic JS Pattern) ```javascript const Singleton = (function () { let instance; function createInstance() { return { name: "Sudheer" }; } return { getInstance: function () { if (!instance) { instance = createInstance(); } return instance; } }; })(); // Usage const obj1 = Singleton.getInstance(); const obj2 = Singleton.getInstance(); console.log(obj1 === obj2); // true ``` In modern JavaScript applications, singletons are commonly implemented using ES6 modules for their built-in caching behavior, or closures for encapsulated state management. **[⬆ Back to Top](#table-of-contents)** 2. ### What is a prototype chain The prototype chain is a core concept in JavaScript’s inheritance model. It allows objects to inherit properties and methods from other objects. When you try to access a property or method on an object, JavaScript first looks for it on that object itself. If it’s not found, the engine looks up the object's internal `[[Prototype]]` reference (accessible via `Object.getPrototypeOf(obj)` or the deprecated `__proto__` property) and continues searching up the chain until it finds the property or reaches the end (usually `null`). For objects created via constructor functions, the prototype chain starts with the instance, then refers to the constructor’s `.prototype` object, and continues from there. For example: ```javascript function Person() {} const person1 = new Person(); console.log(Object.getPrototypeOf(person1) === Person.prototype); // true ``` This mechanism allows for property and method sharing among objects, enabling code reuse and a form of inheritance. **Summary:** * The prototype chain enables inheritance in JavaScript. * If a property isn’t found on an object, JavaScript looks up its prototype chain. * The prototype of an object instance can be accessed with `Object.getPrototypeOf(obj)` or `__proto__`. * The prototype of a constructor function is available via `Constructor.prototype`. * The chain ends when the prototype is `null`. The prototype chain among objects appears as below, ![Screenshot](images/prototype_chain.png) **[⬆ Back to Top](#table-of-contents)** 3. ### What is the Difference Between `call`, `apply`, and `bind` In JavaScript, `call`, `apply`, and `bind` are methods that allow you to control the context (`this` value) in which a function is executed. While their purposes are similar, they differ in how they handle arguments and when the function is invoked. --- #### `call` - **Description:** The `call()` method invokes a function immediately, allowing you to specify the value of `this` and pass arguments individually (comma-separated). - **Syntax:** ```js func.call(thisArg, arg1, arg2, ...) ``` - **Example:** ```js 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` - **Description:** The `apply()` method is similar to `call()`, but it takes the function arguments as an array (or array-like object) instead of individual arguments. - **Syntax:** ```js func.apply(thisArg, [argsArray]) ``` - **Example:** ```js 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.apply(employee1, ["Hello", "How are you?"]); // Hello John Rodson, How are you? invite.apply(employee2, ["Hello", "How are you?"]); // Hello Jimmy Baily, How are you? ``` --- #### `bind` - **Description:** The `bind()` method creates a new function with a specific `this` value and, optionally, preset initial arguments. Unlike `call` and `apply`, `bind` does **not** immediately invoke the function; instead, it returns a new function that you can call later. - **Syntax:** ```js var boundFunc = func.bind(thisArg[, arg1[, arg2[, ...]]]) ``` - **Example:** ```js var employee1 = { firstName: "John", lastName: "Rodson" }; var employee2 = { firstName: "Jimmy", lastName: "Baily" }; function invite(greeting1, greeting2) { console.log( greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2 ); } var inviteEmployee1 = invite.bind(employee1); var inviteEmployee2 = invite.bind(employee2); inviteEmployee1("Hello", "How are you?"); // Hello John Rodson, How are you? inviteEmployee2("Hello", "How are you?"); // Hello Jimmy Baily, How are you? ``` --- #### Summary | Method | Invokes Function Immediately? | How Arguments Are Passed | Returns | |--------|-------------------------------|----------------------------------|--------------| | `call` | Yes | Comma-separated list | Function's result | | `apply`| Yes | Array or array-like object | Function's result | | `bind` | No | (Optional) preset, then rest | New function | --- ## Key Points - **`call`** and **`apply`** are almost interchangeable; both invoke the function immediately, but differ in how arguments are passed. - _Tip:_ "Call is for Comma-separated, Apply is for Array." - **`bind`** does not execute the function immediately. Instead, it creates a new function with the specified `this` value and optional arguments, which can be called later. - Use `call` or `apply` when you want to immediately invoke a function with a specific `this` context. Use `bind` when you want to create a new function with a specific `this` context to be invoked later. --- **[⬆ Back to Top](#table-of-contents)** 4. ### What is JSON and its common operations **JSON (JavaScript Object Notation)** is a lightweight, text-based data format that uses JavaScript object syntax for structuring data. It was popularized by Douglas Crockford and is widely used for transmitting data between a server and a client in web applications. JSON files typically have a `.json` extension and use the MIME type `application/json`. #### Common Operations with JSON 1. **Parsing**: Transforming a JSON-formatted string into a native JavaScript object. ```js const obj = JSON.parse(jsonString); ``` - Example: ```js const jsonString = '{"name":"John","age":30}'; const obj = JSON.parse(jsonString); // { name: "John", age: 30 } ``` 2. **Stringification**: Converting a JavaScript object into a JSON-formatted string, commonly used for data transmission or storage. ```js const jsonString = JSON.stringify(object); ``` - Example: ```js const obj = { name: "Jane", age: 25 }; const jsonString = JSON.stringify(obj); // '{"name":"Jane","age":25}' ``` **[⬆ Back to Top](#table-of-contents)** 5. ### What is the purpose of the array slice method The `slice()` method in JavaScript is used to extract a section of an array, returning a new array containing the selected elements. It does not modify the original array. The method takes two arguments: - **start**: The index at which extraction begins (inclusive). - **end** (optional): The index before which to end extraction (exclusive). If omitted, extraction continues to the end of the array. You can also use negative indices, which count from the end of the array. #### Examples: ```js let arrayIntegers = [1, 2, 3, 4, 5]; let arrayIntegers1 = arrayIntegers.slice(0, 2); // [1, 2] let arrayIntegers2 = arrayIntegers.slice(2, 3); // [3] let arrayIntegers3 = arrayIntegers.slice(4); // [5] let arrayIntegers4 = arrayIntegers.slice(-3, -1); // [3, 4] ``` **Note:** The `slice()` method does **not** mutate (change) the original array; instead, it returns a new array containing the extracted elements. **[⬆ Back to Top](#table-of-contents)** 6. ### What is the purpose of the array splice method The `splice()` method in JavaScript is used to add, remove, or replace elements within an array. Unlike `slice()`, which creates a shallow copy and does not alter the original array, `splice()` **modifies the original array in place** and returns an array containing the removed elements. #### Syntax ```javascript array.splice(start, deleteCount, item1, item2, ...) ``` - **start:** The index at which to start changing the array. - **deleteCount:** (Optional) The number of elements to remove from the array. If omitted, all elements from the start index to the end of the array will be removed. - **item1, item2, ...:** (Optional) Elements to add to the array, starting at the start position. #### Examples ```javascript let arrayIntegersOriginal1 = [1, 2, 3, 4, 5]; let arrayIntegersOriginal2 = [1, 2, 3, 4, 5]; let arrayIntegersOriginal3 = [1, 2, 3, 4, 5]; // Remove the first two elements let arrayIntegers1 = arrayIntegersOriginal1.splice(0, 2); // arrayIntegers1: [1, 2] // arrayIntegersOriginal1 (after): [3, 4, 5] // Remove all elements from index 3 onwards let arrayIntegers2 = arrayIntegersOriginal2.splice(3); // arrayIntegers2: [4, 5] // arrayIntegersOriginal2 (after): [1, 2, 3] // Remove 1 element at index 3, then insert "a", "b", "c" at that position let arrayIntegers3 = arrayIntegersOriginal3.splice(3, 1, "a", "b", "c"); // arrayIntegers3: [4] // arrayIntegersOriginal3 (after): [1, 2, 3, "a", "b", "c", 5] ``` **Note:** - The `splice()` method **modifies the original array**. - It returns an array containing the elements that were removed (if any). - You can use it both to remove and insert elements in a single operation. **[⬆ Back to Top](#table-of-contents)** 7. ### What is the difference between slice and splice Here are the key differences between `slice()` and `splice()` methods in JavaScript arrays: | `slice()` | `splice()` | | ------------------------------------------------- | --------------------------------------------------- | | Does **not** modify the original array (immutable) | Modifies the original array (mutable) | | Returns a **shallow copy** (subset) of selected elements | Returns an array of the **removed** elements | | Used to **extract** elements from an array | Used to **add**, **remove**, or **replace** elements in an array | | Syntax: `array.slice(start, end)` | Syntax: `array.splice(start, deleteCount, ...items)` | **Summary:** - Use `slice()` when you want to copy or extract elements without altering the original array. - Use `splice()` when you need to add, remove, or replace elements and want to change the original array. **[⬆ Back to Top](#table-of-contents)** 8. ### How do you compare Object and Map **Objects** and **Maps** both allow you to associate keys with values, retrieve those values, delete keys, and check if a key exists. Historically, Objects have been used as Maps, but there are several key differences that make `Map` a better choice in certain scenarios: | Feature | Object | Map | |--------------------------|-----------------------------------------------------|----------------------------------------------------------| | **Key Types** | Only strings and symbols are valid keys | Any value can be used as a key (objects, functions, primitives) | | **Key Order** | Keys are unordered (in practice, insertion order is mostly preserved for string keys, but not guaranteed) | Keys are ordered by insertion; iteration follows insertion order | | **Size Property** | No built-in way to get the number of keys; must use `Object.keys(obj).length` | Use the `.size` property for the number of entries | | **Iterability** | Not directly iterable; must use `Object.keys`, `Object.values`, or `Object.entries` | Directly iterable with `for...of`, `.keys()`, `.values()`, `.entries()` | | **Prototype** | Has a prototype chain; may have default properties that can collide with custom keys (can be avoided with `Object.create(null)`) | Does not have a prototype, so there are no default keys | | **Performance** | May be less efficient for frequent additions/removals | Optimized for frequent additions and deletions | | **Serialization** | Can be easily serialized to JSON | Cannot be directly serialized to JSON | **[⬆ Back to Top](#table-of-contents)** 9. ### What is the difference between == and === operators JavaScript provides two types of equality operators: - **Loose equality (`==`, `!=`)**: Performs type conversion if the types differ, comparing values after converting them to a common type. - **Strict equality (`===`, `!==`)**: Compares both value and type, without any type conversion. #### Strict Equality (`===`) - Two strings are strictly equal if they have exactly the same sequence of characters and length. - Two numbers are strictly equal if they have the same numeric value. - **Special cases:** - `NaN === NaN` is `false` - `+0 === -0` is `true` - Two booleans are strictly equal if both are `true` or both are `false`. - Two objects are strictly equal if they refer to the **same object** in memory. - `null` and `undefined` are **not** strictly equal. #### Loose Equality (`==`) - Converts operands to the same type before making the comparison. - `null == undefined` is `true`. - `"1" == 1` is `true` because the string is converted to a number. - `0 == false` is `true` because `false` is converted to `0`. #### Examples: ```javascript 0 == false // true (loose equality, type coercion) 0 === false // false (strict equality, different types) 1 == "1" // true (string converted to number) 1 === "1" // false (different types) null == undefined // true (special case) null === undefined // false (different types) '0' == false // true ('0' is converted to 0) '0' === false // false (different types) NaN == NaN // false (NaN is never equal to itself) NaN === NaN // false [] == [] // false (different array objects) [] === [] // false {} == {} // false (different object references) {} === {} // false ``` **[⬆ Back to Top](#table-of-contents)** 10. ### What are lambda expressions or arrow functions **Arrow functions** (also known as "lambda expressions") provide a concise syntax for writing function expressions in JavaScript. Introduced in ES6, arrow functions are often shorter and more readable, especially for simple operations or callbacks. #### Key Features: - Arrow functions do **not** have their own `this`, `arguments`, `super`, or `new.target` bindings. They inherit these from their surrounding (lexical) context. - They are best suited for non-method functions, such as callbacks or simple computations. - Arrow functions **cannot** be used as constructors and do not have a `prototype` property. - They also cannot be used with `new`, `yield`, or as generator functions. #### Syntax Examples: ```javascript const arrowFunc1 = (a, b) => a + b; // Multiple parameters, returns a + b const arrowFunc2 = a => a * 10; // Single parameter (parentheses optional), returns a * 10 const arrowFunc3 = () => {}; // No parameters, returns undefined const arrowFunc4 = (a, b) => { // Multiple statements require curly braces and explicit return const sum = a + b; return sum * 2; }; ``` **[⬆ Back to Top](#table-of-contents)** 11. ### What is a first class function In JavaScript, **first-class functions(first-class citizens)** mean that functions are treated like any other variable. That means: 1. You can assign a function to a variable. 2. You can pass a function as an argument to another function. 3. You can return a function from another function. This capability enables powerful patterns like callbacks, higher-order functions, event handling, and functional programming in JavaScript. For example, the handler function below is assigned to a variable and then passed as an argument to the `addEventListener` method. ```javascript const handler = () => console.log("This is a click handler function"); document.addEventListener("click", handler); ``` **[⬆ Back to Top](#table-of-contents)** 12. ### What is a first order function A 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. i.e, It's a regular function that works with primitive or non-function values. ```javascript const firstOrder = () => console.log("I am a first order function!"); ``` **[⬆ Back to Top](#table-of-contents)** 13. ### What is a higher order function A higher-order function is a function that either accepts another function as an argument, returns a function as its result, or both. This concept is a core part of JavaScript's functional programming capabilities and is widely used for creating modular, reusable, and expressive code. The syntactic structure of higher order function will be explained with an example as follows, ```javascript // First-order function (does not accept or return another function) const firstOrderFunc = () => console.log("Hello, I am a first-order function"); // Higher-order function (accepts a function as an argument) const higherOrder = (callback) => callback(); // Passing the first-order function to the higher-order function higherOrder(firstOrderFunc); ``` In this example: 1. `firstOrderFunc` is a regular (first-order) function. 2. `higherOrder` is a higher-order function because it takes another function as an argument. 3. `firstOrderFunc` is also called a **callback function** because it is passed to and executed by another function. **[⬆ Back to Top](#table-of-contents)** 14. ### What is a unary function A unary function (also known as a **monadic** function) is a function that **accepts exactly one argument**. The term "unary" simply refers to the function's arity—the number of arguments it takes. Let us take an example of unary function, ```javascript const unaryFunction = (a) => console.log(a + 10); // This will add 10 to the input and log the result unaryFunction(5); // Output: 15 ``` In this example: - `unaryFunction` takes a single parameter `a`, making it a unary function. - It performs a simple operation: adding 10 to the input and printing the result. **[⬆ Back to Top](#table-of-contents)** 15. ### What is the currying function **Currying** is the process of transforming a function with **multiple arguments** into a sequence of **nested functions**, each accepting **only one argument** at a time. This concept is named after mathematician **Haskell Curry**, and is commonly used in functional programming to enhance modularity and reuse. ## Before Currying (Normal n-ary Function) ```javascript const multiArgFunction = (a, b, c) => a + b + c; console.log(multiArgFunction(1, 2, 3)); // Output: 6 ``` This is a standard function that takes three arguments at once. ## After Currying (Unary Function Chain) ```javascript const curryUnaryFunction = (a) => (b) => (c) => a + b + c; console.log(curryUnaryFunction(1)); // Returns: function (b) => ... console.log(curryUnaryFunction(1)(2)); // Returns: function (c) => ... console.log(curryUnaryFunction(1)(2)(3)); // Output: 6 ``` Each function in the chain accepts one argument and returns the next function, until all arguments are provided and the final result is computed. ## Benefits of Currying - Improves code reusability → You can partially apply functions with known arguments. - Enhances functional composition → Easier to compose small, pure functions. - Encourages clean, modular code → You can split logic into smaller single-responsibility functions. **[⬆ Back to Top](#table-of-contents)** 16. ### What is a pure function A **pure function** is a function whose output depends only on its input arguments and produces no side effects. This means that given the same inputs, a pure function will always return the same output, and it does not modify any external state or data. Let's take an example to see the difference between pure and impure functions, #### Example: Pure vs. Impure Functions ```javascript // Impure Function let numberArray = []; const impureAddNumber = (number) => numberArray.push(number); // Pure Function const pureAddNumber = (number) => (inputArray) => inputArray.concat([number]); // Usage console.log(impureAddNumber(6)); // returns 1 console.log(numberArray); // returns [6] console.log(pureAddNumber(7)(numberArray)); // returns [6, 7] console.log(numberArray); // remains [6] ``` - `impureAddNumber` changes the external variable numberArray and returns the new length of the array, making it impure. - `pureAddNumber` creates a new array with the added number and does not modify the original array, making it pure. 17. ### What are the benefits of pure functions Some of the major benefits of pure functions are listed below, - **Easier testing:** Since output depends only on input, pure functions are simple to test. - **Predictability:** No hidden side effects make behavior easier to reason about. - **Immutability:** Pure functions align with ES6 best practices, such as preferring const over let, supporting safer and more maintainable code. - **No side effects:** Reduces bugs related to shared state or mutation. **[⬆ Back to Top](#table-of-contents)** 18. ### What is the purpose of the let keyword The `let` keyword in JavaScript is used to declare a **block-scoped local variable**. This means that variables declared with `let` are only accessible within the block, statement, or expression where they are defined. This is a significant improvement over the older `var` keyword, which is function-scoped (or globally-scoped if declared outside a function), and does not respect block-level scoping. #### Key Features of `let`: - **Block Scope:** The variable exists only within the nearest enclosing block (e.g., inside an `{}` pair). - **No Hoisting Issues:** While `let` declarations are hoisted, they are not initialized until the code defining them is executed. Accessing them before declaration results in a ReferenceError (temporal dead zone). - **No Redeclaration:** The same variable cannot be declared twice in the same scope with `let`. #### Example: ```javascript let counter = 30; if (counter === 30) { let counter = 31; console.log(counter); // Output: 31 (block-scoped variable inside if-block) } console.log(counter); // Output: 30 (outer variable, unaffected by inner block) ``` In this example, the `counter` inside the `if` block is a separate variable from the one outside. The `let` keyword ensures that both have their own distinct scope. In summary, you need to use `let` when you want variables to be limited to the block in which they are defined, preventing accidental overwrites and bugs related to variable scope. **[⬆ Back to Top](#table-of-contents)** 19. ### What is the difference between let and var You can list out the differences in a tabular format | var | let | | -------------------------------------------------------------- | --------------------------------------------- | | It has been available from the beginning of JavaScript | Introduced as part of ES6 | | It has function scope | It has block scope | | Variable declaration will be hoisted, initialized as undefined | Hoisted but not initialized | | It is possible to re-declare the variable in the same scope | It is not possible to re-declare the variable | Let's take an example to see the difference, ```javascript function userDetails(username) { if (username) { console.log(salary); // undefined due to hoisting console.log(age); // ReferenceError: Cannot access 'age' before initialization let age = 30; var salary = 10000; } console.log(salary); //10000 (accessible due to function scope) console.log(age); //error: age is not defined(due to block scope) } userDetails("John"); ``` **[⬆ Back to Top](#table-of-contents)** 20. ### What is the reason to choose the name let as a keyword The keyword `let` was chosen because it originates from mathematical notation, where "let" is used to introduce new variables (for example, "let x = 5"). This term was adopted by several early programming languages such as Scheme and BASIC, establishing a tradition in computer science. JavaScript follows this convention by using `let` to declare variables with block scope, providing a modern alternative to `var`. The choice helps make the language more familiar to programmers coming from other languages and aligns with the mathematical practice of variable assignment. **[⬆ Back to Top](#table-of-contents)** 21. ### How do you redeclare variables in a switch block without an error When you try to redeclare variables using `let` or `const` in multiple `case` clauses of a `switch` statement, you will get a SyntaxError. This happens because, in JavaScript, all `case` clauses within a `switch` statement share the same block scope. For example: ```javascript let counter = 1; switch (x) { case 0: let name; break; case 1: let name; // SyntaxError: Identifier 'name' has already been declared break; } ``` To avoid this error, you can create a new block scope within each `case` clause by wrapping the code in curly braces `{}`. This way, each `let` or `const` declaration is scoped only to that block, and redeclaration errors are avoided: ```javascript let counter = 1; switch (x) { case 0: { let name; // code for case 0 break; } case 1: { let name; // No SyntaxError // code for case 1 break; } } ``` That means, to safely redeclare variables in different cases of a switch statement, wrap each case’s code in its own block using curly braces. This ensures each variable declaration is scoped to its specific case block. **[⬆ Back to Top](#table-of-contents)** 22. ### What is the Temporal Dead Zone The **Temporal Dead Zone (TDZ)** refers to the period between the start of a block and the point where a variable declared with `let` or `const` is initialized. During this time, the variable exists in scope but **cannot be accessed**, and attempting to do so results in a `ReferenceError`. This behavior is part of **JavaScript's ES6 (ECMAScript 2015)** specification and applies **only to variables declared with `let` and `const`**, not `var`. Variables declared with `var` are **hoisted** and initialized with `undefined`, so accessing them before the declaration does not throw an error, though it can lead to unexpected results. #### Example ```javascript function someMethod() { console.log(counter1); // Output: undefined (due to var hoisting) console.log(counter2); // Throws ReferenceError (TDZ for let) var counter1 = 1; let counter2 = 2; } ``` **[⬆ Back to Top](#table-of-contents)** 23. ### What is an 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, ```javascript (function () { // logic here })(); ``` 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 from the IIFE then it throws an error as below, ```javascript (function () { var message = "IIFE"; console.log(message); })(); console.log(message); //Error: message is not defined ``` **[⬆ Back to Top](#table-of-contents)** 24. ### How do you decode or encode a URL in JavaScript? `encodeURI()` function is used to encode an URL. This function requires a URL string as a parameter and return that encoded string. `decodeURI()` 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 `/ ? : @ & = + $ #` then you need to use `encodeURIComponent()`. ```javascript let uri = "employeeDetails?name=john&occupation=manager"; let encoded_uri = encodeURI(uri); let decoded_uri = decodeURI(encoded_uri); ``` **[⬆ Back to Top](#table-of-contents)** 25. ### What is memoization Memoization is a functional 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, ```javascript const memoizeAddition = () => { let cache = {}; return (value) => { if (value in cache) { console.log("Fetching from cache"); return cache[value]; // Here, cache.value cannot be used as property name starts with the number which is not a valid JavaScript identifier. Hence, can only be accessed using the square bracket notation. } else { console.log("Calculating result"); let result = value + 20; cache[value] = result; return result; } }; }; // returned function from memoizeAddition const addition = memoizeAddition(); console.log(addition(20)); //output: 40 calculated console.log(addition(20)); //output: 40 cached ``` **[⬆ Back to Top](#table-of-contents)** 26. ### What is Hoisting Hoisting is JavaScript's default behavior where **variable and function declarations** are moved to the top of their scope before code execution. This means you can access certain variables and functions even before they are defined in the code. Example of variable hoisting: ```js console.log(message); // Output: undefined var message = "The variable has been hoisted"; ``` ```js var message; console.log(message); // undefined message = "The variable has been hoisted"; ``` Example of function hoisting: ```js message("Good morning"); // Output: Good morning function message(name) { console.log(name); } ``` Because of hoisting, functions can be used before they are declared. **[⬆ Back to Top](#table-of-contents)** 27. ### 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, ```javascript function Bike(model, color) { this.model = model; this.color = color; } Bike.prototype.getDetails = function () { return this.model + " bike has" + this.color + " color"; }; ``` Whereas ES6 classes can be defined as an alternative ```javascript class Bike { constructor(color, model) { this.color = color; this.model = model; } getDetails() { return this.model + " bike has" + this.color + " color"; } } ``` **[⬆ Back to Top](#table-of-contents)** 28. ### What are closures A closure is the combination of a function bundled(enclosed) together with its 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, functions and other data even after the outer function has finished its execution. 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, ```javascript function Welcome(name) { var greetingInfo = function (message) { console.log(message + " " + name); }; return greetingInfo; } var myFunction = Welcome("John"); myFunction("Welcome "); //Output: Welcome John myFunction("Hello Mr."); //output: Hello Mr. John ``` 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. **[⬆ Back to Top](#table-of-contents)** 29. ### 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 **[⬆ Back to Top](#table-of-contents)** 30. ### Why do you need modules Below are the list of benefits using modules in javascript ecosystem 1. Maintainability 2. Reusability 3. Namespacing **[⬆ Back to Top](#table-of-contents)** 31. ### 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. **[⬆ Back to Top](#table-of-contents)** 32. ### 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. **[⬆ Back to Top](#table-of-contents)** 33. ### 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 `postMessage` interface, and those pages can manipulate the DOM. **[⬆ Back to Top](#table-of-contents)** 34. ### 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 `onfetch` and `onmessage` handlers. In this case, service workers will have access to IndexedDB API in order to persist and reuse across restarts. **[⬆ Back to Top](#table-of-contents)** 35. ### 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. **[⬆ Back to Top](#table-of-contents)** 36. ### 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. **[⬆ Back to Top](#table-of-contents)** 37. ### 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). **[⬆ Back to Top](#table-of-contents)** 38. ### What is a Cookie 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, ```javascript document.cookie = "username=John"; ``` ![Screenshot](images/cookie.png) **[⬆ Back to Top](#table-of-contents)** 39. ### Why do you need a Cookie 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. **[⬆ Back to Top](#table-of-contents)** 40. ### What are the options in a cookie 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). ```javascript document.cookie = "username=John; expires=Sat, 8 Jun 2019 12:00:00 UTC"; ``` 2. 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. ```javascript document.cookie = "username=John; path=/services"; ``` **[⬆ Back to Top](#table-of-contents)** 41. ### How do you delete a cookie 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. ```javascript document.cookie = "username=; expires=Fri, 07 Jun 2019 00:00:00 UTC; path=/;"; ``` **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. **[⬆ Back to Top](#table-of-contents)** 42. ### What are the differences between cookie, local storage and session storage Below are some of the differences between cookie, local storage and session storage, | Feature | Cookie | Local storage | Session storage | | --------------------------------- | ------------------------------------------------------------------------------------------------------------------- | --------------------- | ------------------- | | Accessed on client or server side | Both server-side & client-side. The `set-cookie` HTTP response header is used by server inorder to send it to user. | client-side only | client-side only | | Expiry | Manually configured using Expires option | Forever until deleted | until tab is closed | | SSL support | Supported | Not supported | Not supported | | Maximum data size | 4KB | 5 MB | 5MB | | Accessible from | Any window | Any window | Same tab | | Sent with requests | Yes | No | No | **[⬆ Back to Top](#table-of-contents)** 43. ### 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. **[⬆ Back to Top](#table-of-contents)** 44. ### How do you access web storage The Window object implements the `WindowLocalStorage` and `WindowSessionStorage` objects which has `localStorage`(window.localStorage) and `sessionStorage`(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 ```javascript localStorage.setItem("logo", document.getElementById("logo").value); localStorage.getItem("logo"); ``` **[⬆ Back to Top](#table-of-contents)** 45. ### What are the methods available on session storage The session storage provided methods for reading, writing and clearing the session data ```javascript // Save data to sessionStorage sessionStorage.setItem("key", "value"); // Get saved data from sessionStorage let data = sessionStorage.getItem("key"); // Remove saved data from sessionStorage sessionStorage.removeItem("key"); // Remove all saved data from sessionStorage sessionStorage.clear(); ``` **[⬆ Back to Top](#table-of-contents)** 46. ### 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 ```javascript window.onstorage = functionRef; ``` Let's take the example usage of onstorage event handler which logs the storage key and it's values ```javascript window.onstorage = function (e) { console.log( "The " + e.key + " key has been changed from " + e.oldValue + " to " + e.newValue + "." ); }; ``` **[⬆ Back to Top](#table-of-contents)** 47. ### 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. **[⬆ Back to Top](#table-of-contents)** 48. ### How do you check web storage browser support You need to check browser support for localStorage and sessionStorage before using web storage, ```javascript if (typeof Storage !== "undefined") { // Code for localStorage/sessionStorage. } else { // Sorry! No Web Storage support.. } ``` **[⬆ Back to Top](#table-of-contents)** 49. ### How do you check web workers browser support You need to check browser support for web workers before using it ```javascript if (typeof Worker !== "undefined") { // code for Web worker support. } else { // Sorry! No Web Worker support.. } ``` **[⬆ Back to Top](#table-of-contents)** 50. ### 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 ```javascript let i = 0; function timedCount() { i = i + 1; postMessage(i); setTimeout("timedCount()", 500); } timedCount(); ``` Here postMessage() method is used to post a message back to the HTML page 2. 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 ```javascript if (typeof w == "undefined") { w = new Worker("counter.js"); } ``` and we can receive messages from web worker ```javascript w.onmessage = function (event) { document.getElementById("message").innerHTML = event.data; }; ``` 3. 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. ```javascript w.terminate(); ``` 4. Reuse the Web Worker: If you set the worker variable to undefined you can reuse the code ```javascript w = undefined; ``` **[⬆ Back to Top](#table-of-contents)** 51. ### 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 **[⬆ Back to Top](#table-of-contents)** 52. ### What is a promise A **Promise** is a JavaScript object that represents the eventual completion (or failure) of an asynchronous operation and its resulting value. It acts as a placeholder for a value that may not be available yet but will be resolved in the future. A Promise can be in one of **three states**: - `pending`: Initial state, neither fulfilled nor rejected. - `fulfilled`: The operation completed successfully. - `rejected`: The operation failed (e.g., due to a network error). #### Promise Syntax ```javascript const promise = new Promise(function (resolve, reject) { // Perform async operation }); ``` #### Example: Creating and Using a Promise ```javascript const promise = new Promise((resolve, reject) => { setTimeout(() => { resolve("I'm a Promise!"); }, 5000); }); promise .then((value) => console.log(value)) // Logs after 5 seconds: "I'm a Promise!" .catch((error) => console.error(error)) // Handles any rejection .finally(() => console.log("Done")); // Runs regardless of success or failure ``` In the above example: * A `Promise` is created to handle an asynchronous operation with `resolve` and `reject` callbacks. * The `setTimeout` resolves the promise with a value after 5 seconds. * `.then()`, `.catch()`, and `.finally()` are used to handle success, errors, and cleanup respectively. The action flow of a promise will be as below, ![Screenshot](images/promises.png) **[⬆ Back to Top](#table-of-contents)** 53. ### Why do you need a promise Promises are **used to handle asynchronous operations**, especially in languages like JavaScript, which often work with non-blocking operations such as network requests, file I/O, and timers. When an operation is asynchronous, it doesn't immediately return a result; instead, it works in the background and provides the result later. Handling this in a clean, organized way can be difficult without a structured approach. Promises are used to: 1. **Handle asynchronous operations**. 2. **Provide a cleaner alternative to callbacks**. 3. **Avoid callback hell**. 4. **Make code more readable and maintainable**. **[⬆ Back to Top](#table-of-contents)** 54. ### Explain 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. **[⬆ Back to Top](#table-of-contents)** 55. ### 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 ```javascript function callbackFunction(name) { console.log("Hello " + name); } function outerFunction(callback) { let name = prompt("Please enter your name."); callback(name); } outerFunction(callbackFunction); ``` **[⬆ Back to Top](#table-of-contents)** 56. ### 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. ```javascript function firstFunction() { // Simulate a code delay setTimeout(function () { console.log("First function called"); }, 1000); } function secondFunction() { console.log("Second function called"); } firstFunction(); secondFunction(); // Output: // Second function called // First function called ``` 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. **[⬆ Back to Top](#table-of-contents)** 57. ### 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, ```javascript async1(function(){ async2(function(){ async3(function(){ async4(function(){ .... }); }); }); }); ``` **[⬆ Back to Top](#table-of-contents)** 58. ### 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/X updates, stock price updates, news feeds etc. **[⬆ Back to Top](#table-of-contents)** 59. ### 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, ```javascript if (typeof EventSource !== "undefined") { var source = new EventSource("sse_generator.js"); source.onmessage = function (event) { document.getElementById("output").innerHTML += event.data + "<br>"; }; } ``` **[⬆ Back to Top](#table-of-contents)** 60. ### How do you check browser support for server-sent events You can perform browser support for server-sent events before using it as below, ```javascript if (typeof EventSource !== "undefined") { // Server-sent events supported. Let's have some code here! } else { // No server-sent events supported } ``` **[⬆ Back to Top](#table-of-contents)** 61. ### What are the events available for server sent events Below are the list of events available for server sent events | Event | Description | |---- | --------- | onopen | It is used when a connection to the server is opened | | onmessage | This event is used when a message is received | | onerror | It happens when an error occurs| **[⬆ Back to Top](#table-of-contents)** 62. ### 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 `.then()` 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. **[⬆ Back to Top](#table-of-contents)** 63. ### 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. Beware, too many levels of nesting lead to [Callback hell](https://github.com/sudheerj/javascript-interview-questions?tab=readme-ov-file#what-is-a-callback-hell) ```javascript loadScript("/script1.js", function (script) { console.log("first script is loaded"); loadScript("/script2.js", function (script) { console.log("second script is loaded"); loadScript("/script3.js", function (script) { console.log("third script is loaded"); // after all scripts are loaded }); }); }); ``` **[⬆ Back to Top](#table-of-contents)** 64. ### 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, ```javascript new Promise(function (resolve, reject) { setTimeout(() => resolve(1), 1000); }) .then(function (result) { console.log(result); // 1 return result * 2; }) .then(function (result) { console.log(result); // 2 return result * 3; }) .then(function (result) { console.log(result); // 6 return result * 4; }); ``` 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 `.then` 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 `.then` handler by logging the result(2) and return a promise with result \* 3. 4. Finally the value passed to the last `.then` handler by logging the result(6) and return a promise with result \* 4. **[⬆ Back to Top](#table-of-contents)** 65. ### 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, ```javascript Promise.all([Promise1, Promise2, Promise3]) .then(result) => { console.log(result) }) .catch(error => console.log(`Error in promises ${error}`)) ``` **Note:** Remember that the order of the promises(output the result) is maintained as per input order. **[⬆ Back to Top](#table-of-contents)** 66. ### 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 ```javascript var promise1 = new Promise(function (resolve, reject) { setTimeout(resolve, 500, "one"); }); var promise2 = new Promise(function (resolve, reject) { setTimeout(resolve, 100, "two"); }); Promise.race([promise1, promise2]).then(function (value) { console.log(value); // "two" // Both promises will resolve, but promise2 is faster }); ``` **[⬆ Back to Top](#table-of-contents)** 67. ### What is a strict mode in javascript JavaScript’s "use strict" directive is used to opt into a stricter parsing and error-handling mode for your scripts or functions. It helps catch common bugs, makes your code more secure, and prepares it for future versions of 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 `"use strict";` instructs the browser to use the javascript code in the Strict mode. This also enables block-scoped variables. **[⬆ Back to Top](#table-of-contents)** 68. ### 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. **[⬆ Back to Top](#table-of-contents)** 69. ### 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. ```javascript "use strict"; x = 3.14; // This will cause an error because x is not declared ``` and if you declare inside a function, it has local scope ```javascript x = 3.14; // This will not cause an error. myFunction(); function myFunction() { "use strict"; y = 3.14; // This will cause an error } ``` **[⬆ Back to Top](#table-of-contents)** 70. ### 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, it will be true. For example, you can test IE version using this expression as below, ```javascript let isIE8 = false; isIE8 = !!navigator.userAgent.match(/MSIE 8.0/); console.log(isIE8); // returns true or false ``` If you don't use this expression then it returns the original value. ```javascript console.log(navigator.userAgent.match(/MSIE 8.0/)); // returns either an Array or null ``` **Note:** The expression !! is not an operator, but it is just twice of ! operator. **[⬆ Back to Top](#table-of-contents)** 71. ### What is the purpose of the delete operator The delete operator is used to delete the property as well as its value. ```javascript var user = { firstName: "John", lastName: "Doe", age: 20 }; delete user.age; console.log(user); // {firstName: "John", lastName:"Doe"} ``` **[⬆ Back to Top](#table-of-contents)** 72. ### 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. ```javascript typeof "John Abraham"; // Returns "string" typeof (1 + 2); // Returns "number" typeof [1, 2, 3]; // Returns "object" because all arrays are also objects ``` **[⬆ Back to Top](#table-of-contents)** 73. ### 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. ```javascript var user; // Value is undefined, type is undefined console.log(typeof user); //undefined ``` Any variable can be emptied by setting the value to undefined. ```javascript user = undefined; ``` **[⬆ Back to Top](#table-of-contents)** 74. ### 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. ```javascript var user = null; console.log(typeof user); //object ``` **[⬆ Back to Top](#table-of-contents)** 75. ### What is the difference between null and undefined Below are the main differences between null and undefined, | Null | Undefined | | ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | | It 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 object | Type of undefined is undefined | | The 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 variable | Indicates absence of variable itself | | Converted to zero (0) while performing primitive operations | Converted to NaN while performing primitive operations | **[⬆ Back to Top](#table-of-contents)** 76. ### 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. ```javascript console.log(eval("1 + 2")); // 3 ``` **[⬆ Back to Top](#table-of-contents)** 77. ### What is the difference between window and document Below are the main differences between window and document, | Window | Document | | ----------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | | It is the root level element in any web page | It 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 page | You can access it via window.document or document. | | It has methods like alert(), confirm() and properties like document, location | It provides methods like getElementById, getElementsByTagName, createElement etc | **[⬆ Back to Top](#table-of-contents)** 78. ### 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. ```javascript function goBack() { window.history.back(); } function goForward() { window.history.forward(); } ``` **Note:** You can also access history without window prefix. **[⬆ Back to Top](#table-of-contents)** 79. ### How do you detect caps lock key turned on or not The `mouseEvent getModifierState()` 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: ```html <input type="password" onmousedown="enterInput(event)" /> <p id="feedback"></p> <script> function enterInput(e) { var flag = e.getModifierState("CapsLock"); if (flag) { document.getElementById("feedback").innerHTML = "CapsLock activated"; } else { document.getElementById("feedback").innerHTML = "CapsLock not activated"; } } </script> ``` **[⬆ Back to Top](#table-of-contents)** 80. ### 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. ```javascript isNaN("Hello"); //true isNaN("100"); //false ``` **[⬆ Back to Top](#table-of-contents)** 81. ### What are the differences between undeclared and undefined variables Below are the major differences between undeclared(not defined) and undefined variables, | undeclared | undefined | | ------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | | These variables do not exist in a program and are not declared | These variables declared in the program but have not assigned any value | | If you try to read the value of an undeclared variable, then a runtime error is encountered | If you try to read the value of an undefined variable, an undefined value is returned. | ```javascript var a; a; // yields undefined b; // Throws runtime error like "Uncaught ReferenceError: b is not defined" ``` This can be confusing, because it says `not defined` instead of `not declared` (Chrome) **[⬆ Back to Top](#table-of-contents)** 82. ### 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 ```javascript msg = "Hello"; // var is missing, it becomes global variable ``` **[⬆ Back to Top](#table-of-contents)** 83. ### 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. **[⬆ Back to Top](#table-of-contents)** 84. ### 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 ```javascript Math.sqrt(-1); parseInt("Hello"); ``` **[⬆ Back to Top](#table-of-contents)** 85. ### 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. ```javascript isFinite(Infinity); // false isFinite(NaN); // false isFinite(-Infinity); // false isFinite(100); // true ``` **[⬆ Back to Top](#table-of-contents)** 86. ### What is an event flow Event flow refers to the order in which events are handled in the browser when a user interacts with elements on a webpage like clicking, typing, hovering, etc. 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. Hence, there are three phases in JavaScript’s event flow: 1. Event Capturing(Top to Bottom): The event starts from the window/document and moves down the DOM tree toward the target element. 2. Target phase: The event reaches the target element — the element that was actually interacted with. 3. Event Bubbling(Bottom to Top): The event then bubbles back up from the target element to the root. **[⬆ Back to Top](#table-of-contents)** 87. ### What is event capturing Event capturing is a phase of event propagation in which an event is first intercepted by the outermost ancestor element, then travels downward through the DOM hierarchy until it reaches the target (innermost) element. To handle events during the capturing phase, you need to pass `true` as the third argument to the `addEventListener` method. ```javascript <div> <button class="child">Hello</button> </div> <script> const parent = document.querySelector("div"); const child = document.querySelector(".child"); // Capturing phase: parent listener (runs first) parent.addEventListener("click", function () { console.log("Parent (capturing)"); }, true); // `true` enables capturing // Bubbling phase: child listener (runs after) child.addEventListener("click", function () { console.log("Child (bubbling)"); }); </script> // Parent (capturing) // Child (bubbling) ``` **[⬆ Back to Top](#table-of-contents)** 88. ### What is event bubbling Event bubbling is a type of event propagation in which an event first triggers on the innermost target element (the one the user interacted with), and then bubbles up through its ancestors in the DOM hierarchy — eventually reaching the outermost elements, like the document or window. By default, event listeners in JavaScript are triggered during the bubbling phase, unless specified otherwise. ```javascript <div> <button class="child">Hello</button> </div> <script> const parent = document.querySelector("div"); const child = document.querySelector(".child"); // Bubbling phase (default) parent.addEventListener("click", function () { console.log("Parent"); }); child.addEventListener("click", function () { console.log("Child"); }); </script> //Child //Parent ``` Here, at first, the event triggers on the child button. Thereafter it bubbles up and triggers the parent div's event handler. **[⬆ Back to Top](#table-of-contents)** 89. ### How do you submit a form using JavaScript You can submit a form using `document.forms[0].submit()`. All the form input's information is submitted using onsubmit event handler ```javascript function submit() { document.forms[0].submit(); } ``` **[⬆ Back to Top](#table-of-contents)** 90. ### 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, ```javascript console.log(navigator.platform); ``` **[⬆ Back to Top](#table-of-contents)** 91. ### What is the difference between document load and DOMContentLoaded events The `DOMContentLoaded` 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). **[⬆ Back to Top](#table-of-contents)** 92. ### What is the difference between native, host and user objects `Native objects` 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. `Host objects` are objects provided by the browser or runtime environment (Node). For example, window, XmlHttpRequest, DOM nodes etc are considered as host objects. `User objects` are objects defined in the javascript code. For example, User objects created for profile information. **[⬆ Back to Top](#table-of-contents)** 93. ### 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 **[⬆ Back to Top](#table-of-contents)** 94. ### 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:** 5. It makes little complex code 6. You need to load a polyfill if ES6 is not supported **[⬆ Back to Top](#table-of-contents)** 95. ### 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`, ```javascript <input type="text" value="Name:"> ``` You can retrieve the attribute value as below, for example after typing "Good morning" into the input field: ```javascript const input = document.querySelector("input"); console.log(input.getAttribute("value")); // Good morning console.log(input.value); // Good morning ``` And after you change the value of the text field to "Good evening", it becomes like ```javascript console.log(input.getAttribute("value")); // Good evening console.log(input.value); // Good evening ``` **[⬆ Back to Top](#table-of-contents)** 96. ### 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). **[⬆ Back to Top](#table-of-contents)** 97. ### 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 `<a>` 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 ```javascript <a href="JavaScript:void(0);" onclick="alert('Well done!')"> Click Me! </a> ``` **[⬆ Back to Top](#table-of-contents)** 98. ### 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. **[⬆ Back to Top](#table-of-contents)** 99. ### 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. **[⬆ Back to Top](#table-of-contents)** 100. ### 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). **[⬆ Back to Top](#table-of-contents)** 101. ### What are events Events are "things" that happen to HTML elements. When JavaScript is used in HTML pages, JavaScript can `react` 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, ```javascript <!doctype html> <html> <head> <script> function greeting() { alert('Hello! Good morning'); } </script> </head> <body> <button type="button" onclick="greeting()">Click me</button> </body> </html> ``` **[⬆ Back to Top](#table-of-contents)** 102. ### Who created javascript JavaScript was created by Brendan Eich in 1995 during his time at Netscape Communications. Initially it was developed under the name `Mocha`, but later the language was officially called `LiveScript` when it first shipped in beta releases of Netscape. **[⬆ Back to Top](#table-of-contents)** 103. ### 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. ```javascript document .getElementById("link") .addEventListener("click", function (event) { event.preventDefault(); }); ``` **Note:** Remember that not all events are cancelable. **[⬆ Back to Top](#table-of-contents)** 104. ### 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) ```javascript <p>Click DIV1 Element</p> <div onclick="secondFunc()">DIV 2 <div onclick="firstFunc(event)">DIV 1</div> </div> <script> function firstFunc(event) { alert("DIV 1"); event.stopPropagation(); } function secondFunc() { alert("DIV 2"); } </script> ``` **[⬆ Back to Top](#table-of-contents)** 105. ### 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. **[⬆ Back to Top](#table-of-contents)** 106. ### 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. ![Screenshot](images/bom.png) **[⬆ Back to Top](#table-of-contents)** 107. ### 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, ```javascript setTimeout(function () { console.log("Good morning"); }, 2000); ``` **[⬆ Back to Top](#table-of-contents)** 108. ### 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, ```javascript setInterval(function () { console.log("Good morning"); }, 2000); ``` **[⬆ Back to Top](#table-of-contents)** 109. ### 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. **[⬆ Back to Top](#table-of-contents)** 110. ### 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 inside a specific form, you can use event delegation technique, ```javascript var form = document.querySelector("#registration-form"); // Listen for changes to fields inside the form form.addEventListener( "input", function (event) { // Log the field that was changed console.log(event.target); }, false ); ``` **[⬆ Back to Top](#table-of-contents)** 111. ### 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. **[⬆ Back to Top](#table-of-contents)** 112. ### 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. **[⬆ Back to Top](#table-of-contents)** 113. ### 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 **[⬆ Back to Top](#table-of-contents)** 114. ### 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. ```javascript var userJSON = { name: "John", age: 31 }; var userString = JSON.stringify(userJSON); console.log(userString); //"{"name":"John","age":31}" ``` **[⬆ Back to Top](#table-of-contents)** 115. ### 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. ```javascript var userString = '{"name":"John","age":31}'; var userJSON = JSON.parse(userString); console.log(userJSON); // {name: "John", age: 31} ``` **[⬆ Back to Top](#table-of-contents)** 116. ### 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. **[⬆ Back to Top](#table-of-contents)** 117. ### 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. **[⬆ Back to Top](#table-of-contents)** 118. ### 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. ```javascript <script> var msg; function greeting() { alert('Good morning'); } function start() { msg =setTimeout(greeting, 3000); } function stop() { clearTimeout(msg); } </script> ``` **[⬆ Back to Top](#table-of-contents)** 119. ### 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. ```javascript <script> var msg; function greeting() { alert('Good morning'); } function start() { msg = setInterval(greeting, 3000); } function stop() { clearInterval(msg); } </script> ``` **[⬆ Back to Top](#table-of-contents)** 120. ### How do you redirect new page in javascript In vanilla javascript, you can redirect to a new page using the `location` property of window object. The syntax would be as follows, ```javascript function redirect() { window.location.href = "newPage.html"; } ``` **[⬆ Back to Top](#table-of-contents)** 121. ### 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 `String.prototype.includes` method to test a string contains a substring ```javascript var mainString = "hello", subString = "hell"; mainString.includes(subString); ``` 2. **Using indexOf:** In an ES5 or older environment, you can use `String.prototype.indexOf` 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. ```javascript var mainString = "hello", subString = "hell"; mainString.indexOf(subString) !== -1; ``` 3. **Using RegEx:** The advanced solution is using Regular expression's test method(`RegExp.test`), which allows for testing for against regular expressions ```javascript var mainString = "hello", regex = /hell/; regex.test(mainString); ``` **[⬆ Back to Top](#table-of-contents)** 122. ### 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. ```javascript function validateEmail(email) { var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; return re.test(String(email).toLowerCase()); } ``` **[⬆ Back to Top](#table-of-contents)** The above regular expression accepts unicode characters. 123. ### How do you get the current url with javascript You can use `window.location.href` expression to get the current url path and you can use the same expression for updating the URL too. You can also use `document.URL` for read-only purposes but this solution has issues in FF. ```javascript console.log("location.href", window.location.href); // Returns full URL ``` **[⬆ Back to Top](#table-of-contents)** 124. ### What are the various url properties of location object The below `Location` 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 **[⬆ Back to Top](#table-of-contents)** 125. ### How do you 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, ```javascript const urlParams = new URLSearchParams(window.location.search); const clientCode = urlParams.get("clientCode"); ``` **[⬆ Back to Top](#table-of-contents)** 126. ### 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 ```javascript "key" in obj; ``` and If you want to check if a key doesn't exist, remember to use parenthesis, ```javascript !("key" in obj); ``` 2. **Using hasOwnProperty method:** You can use `hasOwnProperty` to particularly test for properties of the object instance (and not inherited properties) ```javascript obj.hasOwnProperty("key"); // true ``` 3. **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. ```javascript const user = { name: "John", }; console.log(user.name !== undefined); // true console.log(user.nickName !== undefined); // false ``` **[⬆ Back to Top](#table-of-contents)** 127. ### How do you loop through or enumerate javascript object You can use the `for-in` 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 `hasOwnProperty` method. ```javascript var object = { k1: "value1", k2: "value2", k3: "value3", }; for (var key in object) { if (object.hasOwnProperty(key)) { console.log(key + " -> " + object[key]); // k1 -> value1 ... } } ``` **[⬆ Back to Top](#table-of-contents)** 128. ### 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. ```javascript Object.entries(obj).length === 0 && obj.constructor === Object; // Since date object length is 0, you need to check constructor check as well ``` 2. **Using Object keys(ECMA 5+):** You can use object keys length along with constructor type. ```javascript Object.keys(obj).length === 0 && obj.constructor === Object; // Since date object length is 0, you need to check constructor check as well ``` 3. **Using for-in with hasOwnProperty(Pre-ECMA 5):** You can use a for-in loop along with hasOwnProperty. ```javascript function isEmpty(obj) { for (var prop in obj) { if (obj.hasOwnProperty(prop)) { return false; } } return JSON.stringify(obj) === JSON.stringify({}); } ``` **[⬆ Back to Top](#table-of-contents)** 129. ### 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, ```javascript function sum() { var total = 0; for (var i = 0, len = arguments.length; i < len; ++i) { total += arguments[i]; } return total; } sum(1, 2, 3); // returns 6 ``` **Note:** You can't apply array methods on arguments object. But you can convert into a regular array as below. ```javascript var argsArray = Array.prototype.slice.call(arguments); ``` **[⬆ Back to Top](#table-of-contents)** 130. ### 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. ```javascript function capitalizeFirstLetter(string) { return string.charAt(0).toUpperCase() + string.slice(1); } ``` **[⬆ Back to Top](#table-of-contents)** 131. ### What are the pros and cons of for loops 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 3. Too verbose 4. Imperative 5. You might face off-by-one errors. **[⬆ Back to Top](#table-of-contents)** 132. ### How do you display the current date in javascript You can use `new Date()` to generate a new Date object containing the current date and time. For example, let's display the current date in mm/dd/yyyy ```javascript var today = new Date(); var dd = String(today.getDate()).padStart(2, "0"); var mm = String(today.getMonth() + 1).padStart(2, "0"); //January is 0! var yyyy = today.getFullYear(); today = mm + "/" + dd + "/" + yyyy; document.write(today); ``` **[⬆ Back to Top](#table-of-contents)** 133. ### How do you compare two date objects You need to use date.getTime() method in order to compare unix timestamp values ```javascript var d1 = new Date(); var d2 = new Date(d1); console.log(d1.getTime() === d2.getTime()); //True console.log(d1 === d2); // False ``` **[⬆ Back to Top](#table-of-contents)** 134. ### How do you check if a string starts with another string You can use ECMAScript 6's `String.prototype.startsWith()` 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, ```javascript "Good morning".startsWith("Good"); // true "Good morning".startsWith("morning"); // false ``` **[⬆ Back to Top](#table-of-contents)** 135. ### 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. ```javascript " Hello World ".trim(); //Hello World ``` If your browser(<IE9) doesn't support this method then you can use below polyfill. ```javascript if (!String.prototype.trim) { (function () { // Make sure we trim BOM and NBSP var rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; String.prototype.trim = function () { return this.replace(rtrim, ""); }; })(); } ``` **[⬆ Back to Top](#table-of-contents)** 136. ### 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. ```javascript var object = { key1: value1, key2: value2, }; ``` 1. **Using dot notation:** This solution is useful when you know the name of the property ```javascript object.key3 = "value3"; ``` 2. **Using square bracket notation:** This solution is useful when the name of the property is dynamically determined or the key's name is non-JS like "user-name" ```javascript obj["key3"] = "value3"; ``` **[⬆ Back to Top](#table-of-contents)** 137. ### 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. **[⬆ Back to Top](#table-of-contents)** 138. ### How do you assign default values to variables You can use the logical or operator `||` in an assignment expression to provide a default value. The syntax looks like as below, ```javascript var a = b || c; ``` 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'. **[⬆ Back to Top](#table-of-contents)** 139. ### How do you define multiline strings You can define multiline string literals using the '\n' character followed by line terminator('\'). ```javascript var str = "This is a \n very lengthy \n sentence!"; console.log(str); ``` But if you have a space after the '\n' character, there will be indentation inconsistencies. **[⬆ Back to Top](#table-of-contents)** 140. ### 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. **[⬆ Back to Top](#table-of-contents)** 141. ### Can we define properties for functions Yes, we can define properties for functions because functions are also objects. ```javascript fn = function (x) { //Function code goes here }; fn.name = "John"; fn.profile = function (y) { //Profile code goes here }; ``` **[⬆ Back to Top](#table-of-contents)** 142. ### What is the way to find the number of parameters expected by a function You can use `function.length` syntax to find the number of parameters expected by a function. Let's take an example of `sum` function to calculate the sum of numbers, ```javascript function sum(num1, num2, num3, num4) { return num1 + num2 + num3 + num4; } sum.length; // 4 is the number of parameters expected. ``` **[⬆ Back to Top](#table-of-contents)** 143. ### 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. There are two main polyfill libraries available, 1. **Core.js**: It is a modular javascript library used for cutting-edge ECMAScript features. 2. **Polyfill.io:** It provides polyfills that are required for browser needs. **[⬆ Back to Top](#table-of-contents)** 144. ### 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. ```javascript for (i = 0; i < 10; i++) { if (i === 5) { break; } text += "Number: " + i + "<br>"; } ``` 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. ```javascript for (i = 0; i < 10; i++) { if (i === 5) { continue; } text += "Number: " + i + "<br>"; } ``` **[⬆ Back to Top](#table-of-contents)** 145. ### 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, ```javascript var i, j; loop1: for (i = 0; i < 3; i++) { loop2: for (j = 0; j < 3; j++) { if (i === j) { continue loop1; } console.log("i = " + i + ", j = " + j); } } // Output is: // "i = 1, j = 0" // "i = 2, j = 0" // "i = 2, j = 1" ``` **[⬆ Back to Top](#table-of-contents)** 146. ### 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 **[⬆ Back to Top](#table-of-contents)** 147. ### 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 **[⬆ Back to Top](#table-of-contents)** 148. ### What are the recommendations to create new object It is recommended to avoid creating new objects using `new Object()`. 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, ```javascript var v1 = {}; var v2 = ""; var v3 = 0; var v4 = false; var v5 = []; var v6 = /()/; var v7 = function () {}; ``` **[⬆ Back to Top](#table-of-contents)** 149. ### 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, ```javascript "users":[ {"firstName":"John", "lastName":"Abrahm"}, {"firstName":"Anna", "lastName":"Smith"}, {"firstName":"Shane", "lastName":"Warn"} ] ``` **[⬆ Back to Top](#table-of-contents)** 150. ### 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, ```javascript Math.floor(Math.random() * 10) + 1; // returns a random integer from 1 to 10 Math.floor(Math.random() * 100) + 1; // returns a random integer from 1 to 100 ``` **Note:** `Math.random()` returns a random number between 0 (inclusive), and 1 (exclusive) **[⬆ Back to Top](#table-of-contents)** 151. ### Can you write a random integers function to print integers within a range Yes, you can create a proper random function to return a random number between min and max (both included) ```javascript function randomInteger(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } randomInteger(1, 100); // returns a random integer from 1 to 100 randomInteger(1, 1000); // returns a random integer from 1 to 1000 ``` **[⬆ Back to Top](#table-of-contents)** 152. ### 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 `rollup`, these days practically all bundlers use this technique. **[⬆ Back to Top](#table-of-contents)** 153. ### 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. **[⬆ Back to Top](#table-of-contents)** 154. ### Is it recommended to use eval 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. **[⬆ Back to Top](#table-of-contents)** 155. ### 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, ```javascript /pattern/modifiers; ``` For example, the regular expression or search pattern with case-insensitive username would be, ```javascript /John/i; ``` **[⬆ Back to Top](#table-of-contents)** 156. ### What are the string methods that accept Regular expression There are six string methods: `search()`, `replace()`, `replaceAll()`, `match()`, `matchAll()`, and `split()`. The `search()` method uses an expression to search for a match, and returns the position of the match. ```javascript var msg = "Hello John"; var n = msg.search(/John/i); // 6 ``` The `replace()` and `replaceAll()` methods are used to return a modified string where the pattern is replaced. ```javascript var msg = "ball bat"; var n1 = msg.replace(/b/i, "c"); // call bat var n2 = msg.replaceAll(/b/i, "c"); // call cat ``` The `match()` and `matchAll()` methods are used to return the matches when matching a string against a regular expression. ```javascript var msg = "Hello John"; var n1 = msg.match(/[A-Z]/g); // ["H", "J"] var n2 = msg.matchAll(/[A-Z]/g); // this returns an iterator ``` The `split()` method is used to split a string into an array of substrings, and returns the new array. ```javascript var msg = "Hello John"; var n = msg.split(/\s/); // ["Hello", "John"] ``` **[⬆ Back to Top](#table-of-contents)** 157. ### What are modifiers in regular expression Modifiers can be used to perform case-insensitive and global searches. Let's list some of the modifiers, | Modifier | Description | | -------- | ------------------------------------------------------- | | i | Perform case-insensitive matching | | g | Perform a global match rather than stops at first match | | m | Perform multiline matching | Let's take an example of global modifier, ```javascript var text = "Learn JS one by one"; var pattern = /one/g; var result = text.match(pattern); // one,one ``` **[⬆ Back to Top](#table-of-contents)** 158. ### 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 **[⬆ Back to Top](#table-of-contents)** 159. ### 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, ```javascript var regexp = new RegExp("\\w+"); console.log(regexp); // expected output: /\w+/ ``` **[⬆ Back to Top](#table-of-contents)** 160. ### 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. ```javascript var pattern = /you/; console.log(pattern.test("How are you?")); //true ``` **[⬆ Back to Top](#table-of-contents)** 161. ### 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. ```javascript var pattern = /you/; console.log(pattern.exec("How are you?")); //["you", index: 8, input: "How are you?", groups: undefined] ``` **[⬆ Back to Top](#table-of-contents)** 162. ### How do you change the style of a HTML element You can change inline style or classname of a HTML element using javascript DOM-manipulation 1. **Using style property:** You can modify inline style using style property ```javascript document.getElementById("title").style.fontSize = "30px"; ``` 2. **Using ClassName property:** It is easy to modify element class using className property ```javascript document.getElementById("title").className = "custom-title"; ``` **[⬆ Back to Top](#table-of-contents)** 163. ### What would be the result of 1+2+'3' The output is going to be `33`. Since `1` and `2` are numeric values, the result of the first two digits is going to be a numeric value `3`. The next digit is a string type value because of that the addition of numeric value `3` and string type value `3` is just going to be a concatenation value `33`. Other operations like `3 * '3'` do yield correct results because the string is coerced into a number. **[⬆ Back to Top](#table-of-contents)** 164. ### 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. ```javascript function getProfile() { // code goes here debugger; // code goes here } ``` **[⬆ Back to Top](#table-of-contents)** 165. ### 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. **[⬆ Back to Top](#table-of-contents)** 166. ### 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, ```javascript var else = "hello"; // Uncaught SyntaxError: Unexpected token else ``` **[⬆ Back to Top](#table-of-contents)** 167. ### 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. ```javascript window.mobilecheck = function () { var mobileCheck = false; (function (a) { if ( /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test( a ) || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test( a.substr(0, 4) ) ) mobileCheck = true; })(navigator.userAgent || navigator.vendor || window.opera); return mobileCheck; }; ``` **[⬆ Back to Top](#table-of-contents)** 168. ### 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, ```javascript function detectmob() { if ( navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/webOS/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/BlackBerry/i) || navigator.userAgent.match(/Windows Phone/i) ) { return true; } else { return false; } } ``` **[⬆ Back to Top](#table-of-contents)** 169. ### 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. ```javascript var img = new Image(); img.onload = function () { console.log(this.width + "x" + this.height); }; img.src = "http://www.google.com/intl/en_ALL/images/logo.gif"; ``` **[⬆ Back to Top](#table-of-contents)** 170. ### How do you make synchronous HTTP request Browsers provide an XMLHttpRequest object which can be used to make synchronous HTTP requests from JavaScript. ```javascript function httpGet(theUrl) { var xmlHttpReq = new XMLHttpRequest(); xmlHttpReq.open("GET", theUrl, false); // false for synchronous request xmlHttpReq.send(null); return xmlHttpReq.responseText; } ``` **[⬆ Back to Top](#table-of-contents)** 171. ### 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. ```javascript function httpGetAsync(theUrl, callback) { var xmlHttpReq = new XMLHttpRequest(); xmlHttpReq.onreadystatechange = function () { if (xmlHttpReq.readyState == 4 && xmlHttpReq.status == 200) callback(xmlHttpReq.responseText); }; xmlHttpReq.open("GET", theUrl, true); // true for asynchronous xmlHttpReq.send(null); } ``` Today this is considered deprecated, because an async `fetch` call (in browsers later than 2016) is simpler and more robust. **[⬆ Back to Top](#table-of-contents)** 172. ### 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, ```javascript console.log(new Date().toLocaleString("en-GB", { timeZone: "UTC" })); //29/06/2019, 09:56:00 ``` **[⬆ Back to Top](#table-of-contents)** 173. ### 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 a combination of these properties to calculate the size of a window or document, ```javascript var width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; var height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; ``` **[⬆ Back to Top](#table-of-contents)** 174. ### 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. ```javascript var isAuthenticated = false; console.log( isAuthenticated ? "Hello, welcome" : "Sorry, you are not authenticated" ); // Sorry, you are not authenticated ``` **[⬆ Back to Top](#table-of-contents)** 175. ### 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, ```javascript function traceValue(someParam) { return condition1 ? value1 : condition2 ? value2 : condition3 ? value3 : value4; } // The above conditional operator is equivalent to: function traceValue(someParam) { if (condition1) { return value1; } else if (condition2) { return value2; } else if (condition3) { return value3; } else { return value4; } } ``` **[⬆ Back to Top](#table-of-contents)** 176. ### What are the ways to execute javascript after a page load You can execute javascript after page load in many different ways, 1. **window.onload:** ```javascript window.onload = function ... ``` 2. **document.onload:** ```javascript document.onload = function ... ``` 3. **body onload:** ```javascript <body onload="script();"> ``` **[⬆ Back to Top](#table-of-contents)** 177. ### What is the difference between proto and prototype The `__proto__` object is the actual object that is used in the lookup chain to resolve methods, etc. Whereas `prototype` is the object that is used to build `__proto__` when you create an object with the `new` operator (a special variant of a function call). ```javascript new Employee().__proto__ === Employee.prototype; new Employee().prototype === undefined; ``` There are few more differences, | feature | Prototype | proto | | ---------- | ------------------------------------------------------------ | ---------------------------------------------------------- | | Access | All function constructors have prototype properties. | All objects have \_\_proto\_\_ property | | Purpose | Used to reduce memory wastage with a single copy of function | Used in lookup chain to resolve methods, constructors etc. | | ECMAScript | Introduced in ES6 | Introduced in ES5 | | Usage | Frequently used | Rarely used | **[⬆ Back to Top](#table-of-contents)** 178. ### Can you give an example of when you really need a semicolon It is recommended to use semicolons after every statement in JavaScript. For example, in the below case (that is an IIFE = Immediately Invoked Function Expression) it throws an error ".. is not a function" at runtime due to missing semicolon. ```javascript // define a function var fn = (function () { //... })( // semicolon missing at this line // then execute some code inside a closure function () { //... } )(); ``` and it will be interpreted as ```javascript var fn = (function () { //... })(function () { //... })(); ``` 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. **[⬆ Back to Top](#table-of-contents)** 179. ### What is the freeze method The **`freeze()`** method is used to freeze an object. Freezing an object does not allow adding new properties to an object, prevents 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. ```javascript const obj = { prop: 100, }; Object.freeze(obj); obj.prop = 200; // Throws an error in strict mode console.log(obj.prop); //100 ``` 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. ```javascript const user = { name: "John", employment: { department: "IT", }, }; Object.freeze(user); user.employment.department = "HR"; ``` **Note:** It causes a TypeError if the argument passed is not an object. **[⬆ Back to Top](#table-of-contents)** 180. ### What is the purpose of the 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. **[⬆ Back to Top](#table-of-contents)** 181. ### Why do I need to use the 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 `final` keyword which is used in various languages. **[⬆ Back to Top](#table-of-contents)** 182. ### How do you detect a browser language preference You can use the navigator object to detect a browser language preference as below, ```javascript var language = (navigator.languages && navigator.languages[0]) || // Chrome / Firefox navigator.language || // All browsers navigator.userLanguage; // IE <= 10 console.log(language); ``` **[⬆ Back to Top](#table-of-contents)** 183. ### How to convert a 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, ```javascript function toTitleCase(str) { return str.replace(/\w\S*/g, function (txt) { return txt.charAt(0).toUpperCase() + txt.substring(1).toLowerCase(); }); } toTitleCase("good morning john"); // Good Morning John ``` **[⬆ Back to Top](#table-of-contents)** 184. ### How do you detect if javascript is disabled on the page You can use the `<noscript>` tag to detect javascript disabled or not. The code block inside `<noscript>` gets executed when JavaScript is disabled, and is typically used to display alternative content when the page generated in JavaScript. ```javascript <script type="javascript"> // JS related code goes here </script> <noscript> <a href="next_page.html?noJS=true">JavaScript is disabled in the page. Please click Next Page</a> </noscript> ``` **[⬆ Back to Top](#table-of-contents)** 185. ### 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 `typeof variable` **[⬆ Back to Top](#table-of-contents)** 186. ### 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, ```javascript function f(a, b, ...theArgs) { // ... } ``` For example, let's take a sum example to calculate on dynamic number of parameters, ```javascript function sum(...args) { let total = 0; for (const i of args) { total += i; } return total; } console.log(sum(1, 2)); //3 console.log(sum(1, 2, 3)); //6 console.log(sum(1, 2, 3, 4)); //10 console.log(sum(1, 2, 3, 4, 5)); //15 ``` **Note:** Rest parameter is added in ES2015 or ES6 **[⬆ Back to Top](#table-of-contents)** 187. ### 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. ```javascript function someFunc(a,…b,c){ //You code goes here return; } ``` **[⬆ Back to Top](#table-of-contents)** 188. ### 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 ( >>> ) **[⬆ Back to Top](#table-of-contents)** 189. ### 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, ```javascript function calculateSum(x, y, z) { return x + y + z; } const numbers = [1, 2, 3]; console.log(calculateSum(...numbers)); // 6 ``` **[⬆ Back to Top](#table-of-contents)** 190. ### 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, ```javascript const object = { property: "Welcome JS world", }; Object.freeze(object); console.log(Object.isFrozen(object)); ``` **[⬆ Back to Top](#table-of-contents)** 191. ### 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, ```javascript Object.is("hello", "hello"); // true Object.is(window, window); // true Object.is([], []); // false ``` Two values are considered identical 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. **[⬆ Back to Top](#table-of-contents)** 192. ### What is the purpose of using object is method Some of the applications of Object's `is` 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. **[⬆ Back to Top](#table-of-contents)** 193. ### 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, ```javascript Object.assign(target, ...sources); ``` Let's take example with one source and one target object, ```javascript const target = { a: 1, b: 2 }; const source = { b: 3, c: 4 }; const returnedTarget = Object.assign(target, source); console.log(target); // { a: 1, b: 3, c: 4 } console.log(returnedTarget); // { a: 1, b: 3, c: 4 } ``` As observed in the above code, there is a common property(`b`) from source to target so it's value has been overwritten. **[⬆ Back to Top](#table-of-contents)** 194. ### What are the applications of the 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. **[⬆ Back to Top](#table-of-contents)** 195. ### 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. A proxy is created with two parameters: a target object which you want to proxy and a handler object which contains methods to intercept fundamental operations. The syntax would be as follows, ```javascript var p = new Proxy(target, handler); ``` Let's take a look at below examples of proxy object and how the get method which customize the lookup behavior, ```javascript //Example1: const person = { name: "Sudheer Jonna", age: 35, }; const handler = { get(target, prop) { if (prop === "name") { return "Mr. " + target[prop]; } return target[prop]; }, }; const proxy = new Proxy(person, handler); //Example2: var handler1 = { get: function (obj, prop) { return prop in obj ? obj[prop] : 100; }, }; var p = new Proxy({}, handler1); p.a = 10; p.b = null; console.log(p.a, p.b); // 10, null console.log("c" in p, p.c); // false, 100 ``` In the above code, it uses `get` handler which define the behavior of the proxy when an operation is performed on it. These proxies are mainly used for some of the below cross-cutting concerns. 1. Logging 2. Authentication or Authorization 3. Data binding and observables 4. Function parameter validation **Note:** This feature was introduced with ES6. **[⬆ Back to Top](#table-of-contents)** 196. ### What is the purpose of the 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**. The next level of immutability would be the [`Object.freeze()`](#what-is-a-freeze-method) method. Let's see the below example to understand more about `seal()` method ```javascript const object = { property: "Welcome JS world", }; Object.seal(object); object.property = "Welcome to object world"; console.log(Object.isSealed(object)); // true delete object.property; // You cannot delete when sealed console.log(object.property); //Welcome to object world ``` **[⬆ Back to Top](#table-of-contents)** 197. ### What are the applications of the 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 properties of an object non-configurable. **[⬆ Back to Top](#table-of-contents)** 198. ### What are the differences between the 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. **[⬆ Back to Top](#table-of-contents)** 199. ### 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 ```javascript const object = { property: "Hello, Good morning", }; Object.seal(object); // Using seal() method to seal the object console.log(Object.isSealed(object)); // checking whether the object is sealed or not ``` **[⬆ Back to Top](#table-of-contents)** 200. ### 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, ```javascript const object = { a: "Good morning", b: 100, }; for (let [key, value] of Object.entries(object)) { console.log(`${key}: ${value}`); // a: 'Good morning' // b: 100 } ``` **Note:** The order is not guaranteed as object defined. **[⬆ Back to Top](#table-of-contents)** 201. ### 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. ```javascript const object = { a: "Good morning", b: 100, }; for (let value of Object.values(object)) { console.log(`${value}`); // 'Good morning \n100' } ``` **[⬆ Back to Top](#table-of-contents)** 202. ### How can you get the list of keys of any object You can use the `Object.keys()` 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, ```javascript const user = { name: "John", gender: "male", age: 40, }; console.log(Object.keys(user)); //['name', 'gender', 'age'] ``` **[⬆ Back to Top](#table-of-contents)** 203. ### How do you create an object with a 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. ```javascript const user = { name: "John", printInfo: function () { console.log(`My name is ${this.name}.`); }, }; const admin = Object.create(user); admin.name = "Nick"; // Remember that "name" is a property set on "admin" but not on "user" object admin.printInfo(); // My name is Nick ``` **[⬆ Back to Top](#table-of-contents)** 204. ### What is a WeakSet A `WeakSet` is used to store a collection of weakly(weak references) held objects. The syntax would be as follows, ```javascript new WeakSet([iterable]); ``` Let's see the below example to explain it's behavior, ```javascript var ws = new WeakSet(); var user = {}; ws.add(user); ws.has(user); // true ws.delete(user); // removes user from the set ws.has(user); // false, user has been removed ``` **[⬆ Back to Top](#table-of-contents)** 205. ### 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. `Set` can store any value whereas `WeakSet` 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. **[⬆ Back to Top](#table-of-contents)** 206. ### 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 2. `delete(value)`: Deletes the value from the collection. 3. `has(value)`: It returns true if the value is present in the collection, otherwise it returns false. Let's see the functionality of all the above methods in an example, ```javascript var weakSetObject = new WeakSet(); var firstObject = {}; var secondObject = {}; // add(value) weakSetObject.add(firstObject); weakSetObject.add(secondObject); console.log(weakSetObject.has(firstObject)); //true weakSetObject.delete(secondObject); ``` **[⬆ Back to Top](#table-of-contents)** 207. ### What is a WeakMap A `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 looks like the following: ```javascript new WeakMap([iterable]); ``` Let's see the below example to explain it's behavior, ```javascript var ws = new WeakMap(); var user = {}; ws.set(user); ws.has(user); // true ws.delete(user); // removes user from the map ws.has(user); // false, user has been removed ``` **[⬆ Back to Top](#table-of-contents)** 208. ### 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. `Map` can store any key type whereas `WeakMap` 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. **[⬆ Back to Top](#table-of-contents)** 209. ### 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, ```javascript var weakMapObject = new WeakMap(); var firstObject = {}; var secondObject = {}; // set(key, value) weakMapObject.set(firstObject, "John"); weakMapObject.set(secondObject, 100); console.log(weakMapObject.has(firstObject)); //true console.log(weakMapObject.get(firstObject)); // John weakMapObject.delete(secondObject); ``` **[⬆ Back to Top](#table-of-contents)** 210. ### What is the purpose of uneval The `uneval()` is an builtin 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, ```javascript var a = 1; uneval(a); // returns a String containing 1 uneval(function user() {}); // returns "(function user(){})" ``` The `uneval()` function has been deprecated. It is recommended to use `toString()` for functions and `JSON.stringify()` for other cases. ```javascript function user() {} console.log(user.toString()); // returns "(function user(){})" ``` **[⬆ Back to Top](#table-of-contents)** 211. ### How do you encode an URL The `encodeURI()` function is used to encode complete URI which has special characters except (, / ? : @ & = + $ #) characters. ```javascript var uri = "https://mozilla.org/?x=шеллы"; var encoded = encodeURI(uri); console.log(encoded); // https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B ``` **[⬆ Back to Top](#table-of-contents)** 212. ### How do you decode an URL The `decodeURI()` function is used to decode a Uniform Resource Identifier (URI) previously created by `encodeURI()`. ```javascript var uri = "https://mozilla.org/?x=шеллы"; var encoded = encodeURI(uri); console.log(encoded); // https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B try { console.log(decodeURI(encoded)); // "https://mozilla.org/?x=шеллы" } catch (e) { // catches a malformed URI console.error(e); } ``` **[⬆ Back to Top](#table-of-contents)** 213. ### How do you print the contents of web page The `window` object provides 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, ```html <input type="button" value="Print" onclick="window.print()" /> ``` **Note:** In most browsers, it will block while the print dialog is open. **[⬆ Back to Top](#table-of-contents)** 214. ### What is the difference between uneval and eval The `uneval` function returns the source of a given object; whereas the `eval` function does the opposite, by evaluating that source code in a different memory area. Let's see an example to clarify the difference, ```javascript var msg = uneval(function greeting() { return "Hello, Good morning"; }); var greeting = eval(msg); greeting(); // returns "Hello, Good morning" ``` **[⬆ Back to Top](#table-of-contents)** 215. ### 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, ```javascript function (optionalParameters) { //do something } const myFunction = function(){ //Anonymous function assigned to a variable //do something }; [1, 2, 3].map(function(element){ //Anonymous function used as a callback function //do something }); ``` Let's see the above anonymous function in an example, ```javascript var x = function (a, b) { return a * b; }; var z = x(5, 10); console.log(z); // 50 ``` **[⬆ Back to Top](#table-of-contents)** 216. ### 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. ```javascript var msg = "Good morning"; function greeting() { msg = "Good Evening"; console.log(msg); // Good Evening } greeting(); ``` **[⬆ Back to Top](#table-of-contents)** 217. ### What are javascript accessors ECMAScript 5 introduced javascript object accessors or computed properties through getters and setters. Getters uses the `get` keyword whereas Setters uses the `set` keyword. ```javascript var user = { firstName: "John", lastName: "Abraham", language: "en", get lang() { return this.language; }, set lang(lang) { this.language = lang; }, }; console.log(user.lang); // getter access lang as en user.lang = "fr"; console.log(user.lang); // setter used to set lang as fr ``` **[⬆ Back to Top](#table-of-contents)** 218. ### 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, ```javascript const newObject = {}; Object.defineProperty(newObject, "newProperty", { value: 100, writable: false, }); console.log(newObject.newProperty); // 100 newObject.newProperty = 200; // It throws an error in strict mode due to writable setting ``` **[⬆ Back to Top](#table-of-contents)** 219. ### What is the difference between get and defineProperty Both have similar results unless you use classes. If you use `get` the property will be defined on the prototype of the object whereas using `Object.defineProperty()` the property will be defined on the instance it is applied to. **[⬆ Back to Top](#table-of-contents)** 220. ### 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. **[⬆ Back to Top](#table-of-contents)** 221. ### Can I add getters and setters using defineProperty method Yes, You can use the `Object.defineProperty()` method to add Getters and Setters. For example, the below counter object uses increment, decrement, add and subtract properties, ```javascript var obj = { counter: 0 }; // Define getters Object.defineProperty(obj, "increment", { get: function () { this.counter++; return this.counter; }, }); Object.defineProperty(obj, "decrement", { get: function () { this.counter--; return this.counter; }, }); // Define setters Object.defineProperty(obj, "add", { set: function (value) { this.counter += value; }, }); Object.defineProperty(obj, "subtract", { set: function (value) { this.counter -= value; }, }); obj.add = 10; obj.subtract = 5; console.log(obj.increment); //6 console.log(obj.decrement); //5 ``` **[⬆ Back to Top](#table-of-contents)** 222. ### 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, ```javascript switch (expression) { case value1: statement1; break; case value2: statement2; break; . . case valueN: statementN; break; default: statementDefault; } ``` 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. **[⬆ Back to Top](#table-of-contents)** 223. ### 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. **[⬆ Back to Top](#table-of-contents)** 224. ### 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 **[⬆ Back to Top](#table-of-contents)** 225. ### 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 ```javascript objectName.property; ``` 2. **Square brackets notation:** It uses square brackets for property access ```javascript objectName["property"]; ``` 3. **Expression notation:** It uses expression in the square brackets ```javascript objectName[expression]; ``` **[⬆ Back to Top](#table-of-contents)** 226. ### 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, ```javascript function functionName(parameter1, parameter2, parameter3) { console.log(parameter1); // 1 } functionName(1); ``` **[⬆ Back to Top](#table-of-contents)** 227. ### 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, ```javascript try { greeting("Welcome"); } catch (err) { console.log(err.name + "<br>" + err.message); } ``` **[⬆ Back to Top](#table-of-contents)** 228. ### When do 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 ```javascript try { eval("greeting('welcome)"); // Missing ' will produce an error } catch (err) { console.log(err.name); } ``` **[⬆ Back to Top](#table-of-contents)** 229. ### What are the different error names from error object There are 7 different types of error names returned from error object, | Error Name | Description | |---- | --------- | `AggregateError` | An error indicating that multiple errors occurred | | `EvalError` | An error has occurred in the eval() function | | `RangeError` | An error has occurred with a number "out of range" | | `ReferenceError` | An error due to an illegal reference| | `SyntaxError` | An error due to a syntax error| | `TypeError` | An error due to a type error | | `URIError` | An error due to encodeURI() | **[⬆ Back to Top](#table-of-contents)** 230. ### 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. **[⬆ Back to Top](#table-of-contents)** 231. ### 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. **[⬆ Back to Top](#table-of-contents)** 232. ### 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. **[⬆ Back to Top](#table-of-contents)** 233. ### What is the 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. **[⬆ Back to Top](#table-of-contents)** 234. ### How do you perform language specific date and time formatting You can use the `Intl.DateTimeFormat` object which is a constructor for objects that enable language-sensitive date and time formatting. Let's see this behavior with an example, ```javascript var date = new Date(Date.UTC(2019, 07, 07, 3, 0, 0)); console.log(new Intl.DateTimeFormat("en-GB").format(date)); // 07/08/2019 console.log(new Intl.DateTimeFormat("en-AU").format(date)); // 07/08/2019 ``` **[⬆ Back to Top](#table-of-contents)** 235. ### 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 `next()` method which returns an object with two properties: `value` (the next value in the sequence) and `done` (which is true if the last value in the sequence has been consumed). **[⬆ Back to Top](#table-of-contents)** 236. ### 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 `[Symbol.iterator]()` on an iterable. This iterator object wraps each iterated element in an object and returns it via `next()` method one by one. **IteratorResult:** It is an object returned by `next()` method. The object contains two properties; the `value` property contains an iterated element and the `done` property determines whether the element is the last element or not. Let's demonstrate synchronous iteration with an array as below ```javascript const iterable = ["one", "two", "three"]; const iterator = iterable[Symbol.iterator](); console.log(iterator.next()); // { value: 'one', done: false } console.log(iterator.next()); // { value: 'two', done: false } console.log(iterator.next()); // { value: 'three', done: false } console.log(iterator.next()); // { value: 'undefined, done: true } ``` **[⬆ Back to Top](#table-of-contents)** 237. ### What is the event loop The event loop is a process that continuously monitors both the call stack and the event queue and checks whether or not the call stack is empty. If the call stack is empty and there are pending events in the event queue, the event loop dequeues the event from the event queue and pushes it to the call stack. The call stack executes the event, and any additional events generated during the execution are added to the end of the event queue. **Note:** The event loop allows Node.js to perform non-blocking I/O operations, even though JavaScript is single-threaded, by offloading operations to the system kernel whenever possible. Since most modern kernels are multi-threaded, they can handle multiple operations executing in the background. **[⬆ Back to Top](#table-of-contents)** 238. ### What is the 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 ```javascript function hungry() { eatFruits(); } function eatFruits() { return "I'm eating fruits"; } // Invoke the `hungry` function hungry(); ``` The above code processed in a call stack as below, 3. Add the `hungry()` function to the call stack list and execute the code. 4. Add the `eatFruits()` function to the call stack list and execute the code. 5. Delete the `eatFruits()` function from our call stack list. 6. Delete the `hungry()` function from the call stack list since there are no items anymore. ![Screenshot](images/call-stack.png) **[⬆ Back to Top](#table-of-contents)** 239. ### What is the 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 a promise is moved into the microtask queue). The event loop 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 loop moves the callback into the call stack. But 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. **[⬆ Back to Top](#table-of-contents)** 240. ### 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, ```javascript function admin(isAdmin) { return function(target) { target.isAdmin = isAdmin; } } @admin(true) class User() { } console.log(User.isAdmin); //true @admin(false) class User() { } console.log(User.isAdmin); //false ``` **[⬆ Back to Top](#table-of-contents)** 241. ### What are the properties of the Intl object Below are the list of properties available on the `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. **[⬆ Back to Top](#table-of-contents)** 242. ### 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. ```javascript var x = "100"; var y = +x; console.log(typeof x, typeof y); // string, number var a = "Hello"; var b = +a; console.log(typeof a, typeof b, b); // string, number, NaN ``` **[⬆ Back to Top](#table-of-contents)** 243. ### 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 default sort order is ascending, based on the string Unicode order. The example usage would be as below, ```javascript var months = ["Aug", "Sep", "Jan", "June"]; months.sort(); console.log(months); // ["Aug", "Jan", "June", "Sep"] ``` **Beware:** `sort()` is changing the original array. **[⬆ Back to Top](#table-of-contents)** 244. ### 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, ```javascript let numbers = [1, 2, 5, 3, 4]; numbers.sort((a, b) => b - a); console.log(numbers); // [5, 4, 3, 2, 1] ``` **[⬆ Back to Top](#table-of-contents)** 245. ### How do you reverse 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, ```javascript let numbers = [1, 2, 5, 3, 4]; numbers.sort((a, b) => b - a); numbers.reverse(); console.log(numbers); // [1, 2, 3, 4 ,5] ``` **[⬆ Back to Top](#table-of-contents)** 246. ### How do you find the min and max values in an array You can use `Math.min` and `Math.max` 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, ```javascript var marks = [50, 20, 70, 60, 45, 30]; function findMin(arr) { return Math.min.apply(null, arr); } function findMax(arr) { return Math.max.apply(null, arr); } console.log(findMin(marks)); console.log(findMax(marks)); ``` **[⬆ Back to Top](#table-of-contents)** 247. ### How do you find the 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, ```javascript var marks = [50, 20, 70, 60, 45, 30]; function findMin(arr) { var length = arr.length; var min = Infinity; while (length--) { if (arr[length] < min) { min = arr[length]; } } return min; } function findMax(arr) { var length = arr.length; var max = -Infinity; while (length--) { if (arr[length] > max) { max = arr[length]; } } return max; } console.log(findMin(marks)); console.log(findMax(marks)); ``` **[⬆ Back to Top](#table-of-contents)** 248. ### 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, ```javascript // Initialize an array a for (let i = 0; i < a.length; a[i++] = 0); ``` **[⬆ Back to Top](#table-of-contents)** 249. ### How do you get the metadata of a module You can use the `import.meta` 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. ```javascript <script type="module" src="welcome-module.js"></script>; console.log(import.meta); // { url: "file:///home/user/welcome-module.js" } ``` **[⬆ Back to Top](#table-of-contents)** 250. ### What is the 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, ```javascript var x = 1; x = (x++, x); console.log(x); // 2 ``` **[⬆ Back to Top](#table-of-contents)** 251. ### What is the advantage of the 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 `for` loop. For example, the below for loop uses multiple expressions in a single location using comma operator, ```javascript for (var a = 0, b =10; a <= 10; a++, b--) ``` You can also use the comma operator in a return statement where it processes before returning. ```javascript function myFunction() { var a = 1; return (a += 10), a; // 11 } ``` **[⬆ Back to Top](#table-of-contents)** 252. ### What is typescript TypeScript is a typed superset of JavaScript created by Microsoft that adds optional types, classes and many other features, and compiles to plain JavaScript. Angular is built entirely in TypeScript and it is used as the primary language there. You can install it globally as ```bash npm install -g typescript ``` Let's see a simple example of TypeScript usage, ```typescript function greeting(name: string): string { return "Hello, " + name; } let user = "Sudheer"; console.log(greeting(user)); ``` The greeting method allows only string type as argument. **[⬆ Back to Top](#table-of-contents)** 253. ### What are the differences between javascript and typescript Below are the list of differences between javascript and typescript, | feature | typescript | javascript | | ------------------- | ------------------------------------- | ----------------------------------------------- | | Language paradigm | Object oriented programming language | Multi-paradigm language | | Typing support | Supports static typing | Dynamic typing | | Modules | Supported | Not supported | | Interface | It has interfaces concept | Doesn't support interfaces | | Optional parameters | Functions support optional parameters | No support of optional parameters for functions | **[⬆ Back to Top](#table-of-contents)** 254. ### 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. **[⬆ Back to Top](#table-of-contents)** 255. ### 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. ```javascript var initObject = { a: "John", b: 50, c: {} }; console.log(initObject.a); // John ``` **[⬆ Back to Top](#table-of-contents)** 256. ### 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, ```javascript class Employee { constructor() { this.name = "John"; } } var employeeObject = new Employee(); console.log(employeeObject.name); // John ``` **[⬆ Back to Top](#table-of-contents)** 257. ### 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 `SyntaxError` error. ```javascript class Employee { constructor() { this.name = "John"; } constructor() { // Uncaught SyntaxError: A class may only have one constructor this.age = 30; } } var employeeObject = new Employee(); console.log(employeeObject.name); ``` This constructor is called by using the special function call `new` (see example above). **[⬆ Back to Top](#table-of-contents)** 258. ### How do you call the constructor of a parent class You can use the `super` keyword to call the constructor of a parent class. Remember that `super()` must be called before using `this` reference. Otherwise it will cause a reference error. Let's the usage of it, ```javascript class Square extends Rectangle { constructor(length) { super(length, length); this.name = "Square"; } get area() { return this.width * this.height; } set area(value) { this.area = value; } } ``` **[⬆ Back to Top](#table-of-contents)** 259. ### How do you get the prototype of an object You can use the `Object.getPrototypeOf(obj)` method to return the prototype of the specified object. i.e. The value of the internal `prototype` property. If there are no inherited properties then `null` value is returned. ```javascript const newPrototype = {}; const newObject = Object.create(newPrototype); console.log(Object.getPrototypeOf(newObject) === newPrototype); // true ``` **[⬆ Back to Top](#table-of-contents)** 260. ### 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 `Object`. ```javascript // ES5 Object.getPrototypeOf("James"); // TypeError: "James" is not an object // ES2015 Object.getPrototypeOf("James"); // String.prototype ``` **[⬆ Back to Top](#table-of-contents)** 261. ### How do you set the prototype of one object to another You can use the `Object.setPrototypeOf()` method that sets the prototype (i.e., the internal `Prototype` 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, ```javascript Object.setPrototypeOf(Square.prototype, Rectangle.prototype); Object.setPrototypeOf({}, null); ``` **[⬆ Back to Top](#table-of-contents)** 262. ### How do you check whether an object can be extended or not The `Object.isExtensible()` 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. ```javascript const newObject = {}; console.log(Object.isExtensible(newObject)); //true ``` **Note:** By default, all the objects are extendable. i.e, The new properties can be added or modified. **[⬆ Back to Top](#table-of-contents)** 263. ### How do you prevent an object from being extend The `Object.preventExtensions()` 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, ```javascript const newObject = {}; Object.preventExtensions(newObject); // NOT extendable try { Object.defineProperty(newObject, "newProperty", { // Adding new property value: 100, }); } catch (e) { console.log(e); // TypeError: Cannot define property newProperty, object is not extensible } ``` **[⬆ Back to Top](#table-of-contents)** 264. ### 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` ```javascript var newObject = {}; Object.preventExtensions(newObject); // Prevent objects are non-extensible Object.isExtensible(newObject); // false var sealedObject = Object.seal({}); // Sealed objects are non-extensible Object.isExtensible(sealedObject); // false var frozenObject = Object.freeze({}); // Frozen objects are non-extensible Object.isExtensible(frozenObject); // false ``` **[⬆ Back to Top](#table-of-contents)** 265. ### How do you define multiple properties on an object The `Object.defineProperties()` 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, ```javascript const newObject = {}; Object.defineProperties(newObject, { newProperty1: { value: "John", writable: true, }, newProperty2: {}, }); ``` **[⬆ Back to Top](#table-of-contents)** 266. ### What is the MEAN stack 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. **[⬆ Back to Top](#table-of-contents)** 267. ### 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, ```javascript function greeting() { console.log("Hello, welcome to JS world"); } ``` And after the code Obfuscation, it would be appeared as below, ```javascript eval( (function (p, a, c, k, e, d) { e = function (c) { return c; }; if (!"".replace(/^/, String)) { while (c--) { d[c] = k[c] || c; } k = [ function (e) { return d[e]; }, ]; e = function () { return "\\w+"; }; c = 1; } while (c--) { if (k[c]) { p = p.replace(new RegExp("\\b" + e(c) + "\\b", "g"), k[c]); } } return p; })( "2 1(){0.3('4, 7 6 5 8')}", 9, 9, "console|greeting|function|log|Hello|JS|to|welcome|world".split("|"), 0, {} ) ); ``` **[⬆ Back to Top](#table-of-contents)** 268. ### 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 **[⬆ Back to Top](#table-of-contents)** 269. ### 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 . **[⬆ Back to Top](#table-of-contents)** 270. ### 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 **[⬆ Back to Top](#table-of-contents)** 271. ### What are the differences between obfuscation and Encryption Below are the main differences between obfuscation and encryption, | Feature | Obfuscation | Encryption | | ------------------ | ----------------------------------------------- | ----------------------------------------------------------------------- | | Definition | Changing the form of any data in any other form | Changing the form of information to an unreadable format by using a key | | A key to decode | It can be decoded without any key | It is required | | Target data format | It will be converted to a complex form | Converted into an unreadable format | **[⬆ Back to Top](#table-of-contents)** 272. ### 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 **[⬆ Back to Top](#table-of-contents)** 273. ### 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. Let's perform user login in an html form, ```html <form name="myForm" onsubmit="return validateForm()" method="post"> User name: <input type="text" name="uname" /> <input type="submit" value="Submit" /> </form> ``` And the validation on user login is below, ```javascript function validateForm() { var x = document.forms["myForm"]["uname"].value; if (x == "") { alert("The username shouldn't be empty"); return false; } } ``` **[⬆ Back to Top](#table-of-contents)** 274. ### How do you perform form validation without javascript You can perform HTML form validation automatically without using javascript. The validation enabled by applying the `required` attribute to prevent form submission when the input is empty. ```html <form method="post"> <input type="text" name="uname" required /> <input type="submit" value="Submit" /> </form> ``` **Note:** Automatic form validation does not work in Internet Explorer 9 or earlier. **[⬆ Back to Top](#table-of-contents)** 275. ### 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 ```javascript function myFunction() { var userName = document.getElementById("uname"); if (!userName.checkValidity()) { document.getElementById("message").innerHTML = userName.validationMessage; } else { document.getElementById("message").innerHTML = "Entered a valid username"; } } ``` **[⬆ Back to Top](#table-of-contents)** 276. ### 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. **[⬆ Back to Top](#table-of-contents)** 277. ### What are the 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. **[⬆ Back to Top](#table-of-contents)** 278. ### Give an example usage of the rangeOverflow property If an element's value is greater than its max attribute then the `rangeOverflow` property is true. For example, the below form submission throws an error if the value is more than 100, ```html <input id="age" type="number" max="100" /> <button onclick="myOverflowFunction()">OK</button> ``` ```javascript function myOverflowFunction() { if (document.getElementById("age").validity.rangeOverflow) { alert("The mentioned age is not allowed"); } } ``` **[⬆ Back to Top](#table-of-contents)** 279. ### Are enums 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, ```javascript var DaysEnum = Object.freeze({"monday":1, "tuesday":2, "wednesday":3, ...}) ``` **[⬆ Back to Top](#table-of-contents)** 280. ### 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. ```javascript enum Color { RED, GREEN, BLUE } ``` **[⬆ Back to Top](#table-of-contents)** 281. ### How do you list all properties of an object You can use the `Object.getOwnPropertyNames()` method which returns an array of all properties found directly in a given object. Let's see the usage of this in an example below: ```javascript const newObject = { a: 1, b: 2, c: 3, }; console.log(Object.getOwnPropertyNames(newObject)); ["a", "b", "c"]; ``` **[⬆ Back to Top](#table-of-contents)** 282. ### How do you get property descriptors of an object You can use the `Object.getOwnPropertyDescriptors()` method which returns all own property descriptors of a given object. The example usage of this method is below, ```javascript const newObject = { a: 1, b: 2, c: 3, }; const descriptorsObject = Object.getOwnPropertyDescriptors(newObject); console.log(descriptorsObject.a.writable); //true console.log(descriptorsObject.a.configurable); //true console.log(descriptorsObject.a.enumerable); //true console.log(descriptorsObject.a.value); // 1 ``` **[⬆ Back to Top](#table-of-contents)** 283. ### 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 **[⬆ Back to Top](#table-of-contents)** 284. ### How do you extend classes The `extends` 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, ```javascript class ChildClass extends ParentClass { ... } ``` Let's take an example of Square subclass from Polygon parent class, ```javascript class Square extends Rectangle { constructor(length) { super(length, length); this.name = "Square"; } get area() { return this.width * this.height; } set area(value) { this.area = value; } } ``` **[⬆ Back to Top](#table-of-contents)** 285. ### How do I modify the url without reloading the page The `window.location.href` property will be helpful to modify the url but it reloads the page. HTML5 introduced the `history.pushState()` and `history.replaceState()` methods, which allow you to add and modify history entries, respectively. For example, you can use pushState as below, ```javascript window.history.pushState("page2", "Title", "/page2.html"); ``` This mechanism is used by routing libraries of frameworks like React and Angular in order to simulate the behaviour of a multi-page-website, even though they are only SPA (Single Page Applications). **[⬆ Back to Top](#table-of-contents)** 286. ### How do you check whether or not an array includes a particular value The `Array#includes()` 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. ```javascript var numericArray = [1, 2, 3, 4]; console.log(numericArray.includes(3)); // true var stringArray = ["green", "yellow", "blue"]; console.log(stringArray.includes("blue")); //true ``` **[⬆ Back to Top](#table-of-contents)** 287. ### How do you compare scalar arrays You can use length and every method of arrays to compare two scalars (compared directly using `===`) arrays. The combination of these expressions can give the expected result, ```javascript const arrayFirst = [1, 2, 3, 4, 5]; const arraySecond = [1, 2, 3, 4, 5]; console.log( arrayFirst.length === arraySecond.length && arrayFirst.every((value, index) => value === arraySecond[index]) ); // true ``` If you would like to compare arrays irrespective of order then you should sort them before, ```javascript const arrayFirst = [2, 3, 1, 4, 5]; const arraySecond = [1, 2, 3, 4, 5]; console.log( arrayFirst.length === arraySecond.length && arrayFirst .sort() .every((value, index) => value === arraySecond[index]) ); //true ``` **[⬆ Back to Top](#table-of-contents)** 288. ### How to get the value from get parameters The `new URL()` object accepts the url string and `searchParams` property of this object can be used to access the get parameters. ```javascript let urlString = "http://www.some-domain.com/about.html?x=1&y=2&z=3"; //window.location.href let url = new URL(urlString); let parameterZ = url.searchParams.get("z"); console.log(parameterZ); // 3 ``` **[⬆ Back to Top](#table-of-contents)** 289. ### How do you print numbers with commas as thousand separators You can use the `Number.prototype.toLocaleString()` method which returns a string with a language-sensitive representation such as thousand separator, currency etc. of this number. ```javascript function convertToThousandFormat(x) { return x.toLocaleString(); // 12,345.679 } console.log(convertToThousandFormat(12345.6789)); ``` **[⬆ Back to Top](#table-of-contents)** 290. ### 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, | Feature | Java | JavaScript | |---- | ---- | ----- | Typed | It's a strongly typed language | It's a dynamic typed language | | Paradigm | Object oriented programming | Prototype based programming | | Scoping | Block scoped | Function-scoped, block scoped since ES6 | | Concurrency | Thread based | event based | **[⬆ Back to Top](#table-of-contents)** 291. ### Does JavaScript support namespaces JavaScript doesn’t support namespaces 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, ```javascript function func1() { console.log("This is a first definition"); } function func1() { console.log("This is a second definition"); } func1(); // This is a second definition ``` It always calls the second function definition. In this case, namespaces will solve the name collision problem. **[⬆ Back to Top](#table-of-contents)** 292. ### How do you declare a namespace Even though JavaScript lacks namespaces, we can use Objects, an IIFE (Immediately Invoked Function Expression) or `let`/`const` 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 ```javascript var namespaceOne = { function func1() { console.log("This is a first definition"); } } var namespaceTwo = { function func1() { console.log("This is a second definition"); } } namespaceOne.func1(); // This is a first definition namespaceTwo.func1(); // This is a second definition ``` 2. **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. ```javascript (function () { function fun1() { console.log("This is a first definition"); } fun1(); })(); (function () { function fun1() { console.log("This is a second definition"); } fun1(); })(); ``` 3. **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. ```javascript { let myFunction = function fun1() { console.log("This is a first definition"); }; myFunction(); } //myFunction(): ReferenceError: myFunction is not defined. { let myFunction = function fun1() { console.log("This is a second definition"); }; myFunction(); } //myFunction(): ReferenceError: myFunction is not defined. ``` **[⬆ Back to Top](#table-of-contents)** 293. ### How do you invoke javascript code in an iframe from the parent page Initially iFrame needs to be accessed using either `document.getElementBy` or `window.frames`. After that `contentWindow` property of iFrame gives the access for targetFunction ```javascript document.getElementById("targetFrame").contentWindow.targetFunction(); window.frames[0].frameElement.contentWindow.targetFunction(); // Accessing iframe this way may not work in latest versions chrome and firefox ``` **[⬆ Back to Top](#table-of-contents)** 294. ### How do you get the timezone offset of a date object You can use the `getTimezoneOffset` method of the date object. This method returns the time zone difference, in minutes, from current locale (host system settings) to UTC ```javascript var offset = new Date().getTimezoneOffset(); console.log(offset); // -480 ``` **[⬆ Back to Top](#table-of-contents)** 295. ### 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, ```javascript function loadAssets(filename, filetype) { if (filetype == "css") { // External CSS file var fileReference = document.createElement("link"); fileReference.setAttribute("rel", "stylesheet"); fileReference.setAttribute("type", "text/css"); fileReference.setAttribute("href", filename); } else if (filetype == "js") { // External JavaScript file var fileReference = document.createElement("script"); fileReference.setAttribute("type", "text/javascript"); fileReference.setAttribute("src", filename); } if (typeof fileReference != "undefined") document.getElementsByTagName("head")[0].appendChild(fileReference); } ``` **[⬆ Back to Top](#table-of-contents)** 296. ### 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 (returns an node list) 3. `document.getElementsByClassName(name)`: It finds an element by class name (returns an node list) 4. `document.querySelector(cssSelector)`: It finds an element by css selector 5. `document.querySelectorAll(cssSelector)`: It finds all elements by css selector (returns a node list) **[⬆ Back to Top](#table-of-contents)** 297. ### 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, ```javascript $(document).ready(function () { // It selects the document and apply the function on page load alert("Welcome to jQuery world"); }); ``` **Note:** You can download it from jquery's official site or install it from CDNs, like google. **[⬆ Back to Top](#table-of-contents)** 298. ### 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. **[⬆ Back to Top](#table-of-contents)** 299. ### 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. ```javascript let age = 50; // age is a number now age = "old"; // age is a string now age = true; // age is a boolean ``` **[⬆ Back to Top](#table-of-contents)** 300. ### What is a void operator The `void` operator evaluates the given expression and then returns `undefined` (i.e, without returning value). The syntax would be as below, ```javascript void expression; void expression; ``` Let's display a message without any redirection or reload ```javascript <a href="javascript:void(alert('Welcome to JS world'))"> Click here to see a message </a> ``` **Note:** This operator is often used to obtain the undefined primitive value, using `void(0)`. Also it can be used to call asynchronous functions without waiting for the result. **[⬆ Back to Top](#table-of-contents)** 301. ### 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. ```javascript function myFunction() { window.document.body.style.cursor = "wait"; } ``` and this function invoked on page load ```html <body onload="myFunction()"></body> ``` **[⬆ Back to Top](#table-of-contents)** 302. ### 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, ```javascript for (;;) {} while (true) {} ``` **[⬆ Back to Top](#table-of-contents)** 303. ### 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. ```javascript a.b.c.greeting = "welcome"; a.b.c.age = 32; ``` Using `with` it turns this into: ```javascript with (a.b.c) { greeting = "welcome"; age = 32; } ``` But this `with` 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. **[⬆ Back to Top](#table-of-contents)** 304. ### What is the output of the following for loops ```javascript for (var i = 0; i < 4; i++) { // global scope setTimeout(() => console.log(i)); } for (let i = 0; i < 4; i++) { // block scope setTimeout(() => console.log(i)); } ``` 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 `setTimeout` callback function is called after the loop has been executed. Since the variable i is declared with the `var` keyword it became a global variable and the value was equal to 4 using iteration when the time `setTimeout` function is invoked. Hence, the output of the second loop is `4 4 4 4`. Whereas in the second loop, the variable i is declared as the `let` 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 `0 1 2 3`. **[⬆ Back to Top](#table-of-contents)** 305. ### 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 **[⬆ Back to Top](#table-of-contents)** 306. ### 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. **[⬆ Back to Top](#table-of-contents)** 307. ### Can I redeclare let and const variables No, you cannot redeclare let and const variables. If you do, it throws below error ```bash Uncaught SyntaxError: Identifier 'someVariable' has already been declared ``` **Explanation:** The variable declaration with `var` 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. ```javascript var name = "John"; function myFunc() { var name = "Nick"; var name = "Abraham"; // Re-assigned in the same function block alert(name); // Abraham } myFunc(); alert(name); // John ``` The block-scoped multi-declaration throws syntax error, ```javascript let name = "John"; function myFunc() { let name = "Nick"; let name = "Abraham"; // Uncaught SyntaxError: Identifier 'name' has already been declared alert(name); } myFunc(); alert(name); ``` **[⬆ Back to Top](#table-of-contents)** 308. ### Does the `const` variable make 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) ```javascript const userList = []; userList.push("John"); // Can mutate even though it can't re-assign console.log(userList); // ['John'] ``` **[⬆ Back to Top](#table-of-contents)** 309. ### What are default parameters In ES5, 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, ```javascript //ES5 var calculateArea = function (height, width) { height = height || 50; width = width || 60; return width * height; }; console.log(calculateArea()); //300 ``` The default parameters makes the initialization more simpler, ```javascript //ES6 var calculateArea = function (height = 50, width = 60) { return width * height; }; console.log(calculateArea()); //300 ``` **[⬆ Back to Top](#table-of-contents)** 310. ### 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 ES6, this feature enables using dynamic expressions as below, ```javascript var greeting = `Welcome to JS World, Mr. ${firstName} ${lastName}.`; ``` In ES5, you need break string like below, ```javascript var greeting = 'Welcome to JS World, Mr. ' + firstName + ' ' + lastName.` ``` **Note:** You can use multi-line strings and string interpolation features with template literals. **[⬆ Back to Top](#table-of-contents)** 311. ### 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. ```javascript console.log("This is string sentence 1\n" + "This is string sentence 2"); ``` Whereas in ES6, You don't need to mention any newline sequence character, ```javascript console.log(`This is string sentence 'This is string sentence 2`); ``` **[⬆ Back to Top](#table-of-contents)** 312. ### 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, ```javascript const iconStyles = `icon ${ isMobilePlatform() ? "" : `icon-${user.isAuthorized ? "submit" : "disabled"}` }`; ``` You can write the above use case without nesting template features as well. However, the nesting template feature is more compact and readable. ```javascript //Without nesting templates const iconStyles = `icon ${ isMobilePlatform() ? "" : user.isAuthorized ? "icon-submit" : "icon-disabled" }`; ``` **[⬆ Back to Top](#table-of-contents)** 313. ### 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, ```javascript var user1 = "John"; var skill1 = "JavaScript"; var experience1 = 15; var user2 = "Kane"; var skill2 = "JavaScript"; var experience2 = 5; function myInfoTag(strings, userExp, experienceExp, skillExp) { var str0 = strings[0]; // "Mr/Ms. " var str1 = strings[1]; // " is a/an " var str2 = strings[2]; // "in" var expertiseStr; if (experienceExp > 10) { expertiseStr = "expert developer"; } else if (skillExp > 5 && skillExp <= 10) { expertiseStr = "senior developer"; } else { expertiseStr = "junior developer"; } return `${str0}${userExp}${str1}${expertiseStr}${str2}${skillExp}`; } var output1 = myInfoTag`Mr/Ms. ${user1} is a/an ${experience1} in ${skill1}`; var output2 = myInfoTag`Mr/Ms. ${user2} is a/an ${experience2} in ${skill2}`; console.log(output1); // Mr/Ms. John is a/an expert developer in JavaScript console.log(output2); // Mr/Ms. Kane is a/an junior developer in JavaScript ``` **[⬆ Back to Top](#table-of-contents)** 314. ### What are raw strings ES6 provides a raw strings feature using the `String.raw()` 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, ```javascript var calculationString = String.raw`The sum of numbers is \n${ 1 + 2 + 3 + 4 }!`; console.log(calculationString); // The sum of numbers is \n10! ``` If you don't use raw strings, the newline character sequence will be processed by displaying the output in multiple lines ```javascript var calculationString = `The sum of numbers is \n${1 + 2 + 3 + 4}!`; console.log(calculationString); // The sum of numbers is // 10! ``` Also, the raw property is available on the first argument to the tag function ```javascript function tag(strings) { console.log(strings.raw[0]); } ``` **[⬆ Back to Top](#table-of-contents)** 315. ### 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 ```javascript var [one, two, three] = ["JAN", "FEB", "MARCH"]; console.log(one); // "JAN" console.log(two); // "FEB" console.log(three); // "MARCH" ``` and you can get user properties of an object using destructuring assignment, ```javascript var { name, age } = { name: "John", age: 32 }; console.log(name); // John console.log(age); // 32 ``` **[⬆ Back to Top](#table-of-contents)** 316. ### 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:** ```javascript var x, y, z; [x = 2, y = 4, z = 6] = [10]; console.log(x); // 10 console.log(y); // 4 console.log(z); // 6 ``` **Objects destructuring:** ```javascript var { x = 2, y = 4, z = 6 } = { x: 10 }; console.log(x); // 10 console.log(y); // 4 console.log(z); // 6 ``` **[⬆ Back to Top](#table-of-contents)** 317. ### 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, ```javascript var x = 10, y = 20; [x, y] = [y, x]; console.log(x); // 20 console.log(y); // 10 ``` **[⬆ Back to Top](#table-of-contents)** 318. ### 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. ```javascript //ES6 var x = 10, y = 20; obj = { x, y }; console.log(obj); // {x: 10, y:20} //ES5 var x = 10, y = 20; obj = { x: x, y: y }; console.log(obj); // {x: 10, y:20} ``` **[⬆ Back to Top](#table-of-contents)** 319. ### What are dynamic imports The dynamic imports using `import()` function syntax allows us to load modules on demand by using promises or the async/await syntax. Currently this feature is in [stage4 proposal](https://github.com/tc39/proposal-dynamic-import). 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, ```javascript import("./Module").then((Module) => Module.method()); ``` **[⬆ Back to Top](#table-of-contents)** 320. ### 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 ```javascript if (isLegacyBrowser()) { import(···) .then(···); } ``` 2. Compute the module specifier at runtime. For example, you can use it for internationalization. ```javascript import(`messages_${getLocale()}.js`).then(···); ``` 3. Import a module from within a regular script instead a module. **[⬆ Back to Top](#table-of-contents)** 321. ### What are typed arrays Typed arrays are array-like objects from ECMAScript 6 API for handling binary data. JavaScript provides 12 Typed array types, 1. Int8Array: An array of 8-bit signed integers 2. Uint8Array: An array of 8-bit unsigned integers 3. Uint8ClampedArray: An array of 8-bit unsigned integers clamped to 0-255 4. Int16Array: An array of 16-bit signed integers 5. Uint16Array: An array of 16-bit unsigned integers 6. Int32Array: An array of 32-bit signed integers 7. Uint32Array: An array of 32-bit unsigned integers 8. BigInt64Array: An array of 64-bit signed BigInts 9. BigUint64Array: An array of 64-bit unsigned BigInts 10. Float16Array: An array of 16-bit floating point numbers 11. Float32Array: An array of 32-bit floating point numbers 12. Float64Array: An array of 64-bit floating point numbers For example, you can create an array of 8-bit signed integers as below ```javascript const a = new Int8Array(); // You can pre-allocate n bytes const bytes = 1024; const a = new Int8Array(bytes); ``` **[⬆ Back to Top](#table-of-contents)** 322. ### 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 **[⬆ Back to Top](#table-of-contents)** 323. ### 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:** ```javascript var list = ["ä", "a", "z"]; // In German, "ä" sorts with "a" Whereas in Swedish, "ä" sorts after "z" var l10nDE = new Intl.Collator("de"); var l10nSV = new Intl.Collator("sv"); console.log(l10nDE.compare("ä", "z") === -1); // true console.log(l10nSV.compare("ä", "z") === +1); // true ``` 2. **Sorting:** ```javascript var list = ["ä", "a", "z"]; // In German, "ä" sorts with "a" Whereas in Swedish, "ä" sorts after "z" var l10nDE = new Intl.Collator("de"); var l10nSV = new Intl.Collator("sv"); console.log(list.sort(l10nDE.compare)); // [ "a", "ä", "z" ] console.log(list.sort(l10nSV.compare)); // [ "a", "z", "ä" ] ``` **[⬆ Back to Top](#table-of-contents)** 324. ### 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, ```javascript let arrayIterable = [10, 20, 30, 40, 50]; for (let value of arrayIterable) { value++; console.log(value); // 11 21 31 41 51 } ``` **[⬆ Back to Top](#table-of-contents)** 325. ### What is the output of below spread operator array ```javascript [..."John Resig"]; ``` 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. **[⬆ Back to Top](#table-of-contents)** 326. ### 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. **[⬆ Back to Top](#table-of-contents)** 327. ### 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. ```javascript targetWindow.postMessage(message, "*"); ``` **[⬆ Back to Top](#table-of-contents)** 328. ### 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 example, let's check the sender's origin [http://www.some-sender.com](http://www.some-sender.com) on receiver side [www.some-receiver.com](www.some-receiver.com), ```javascript //Listener on http://www.some-receiver.com/ window.addEventListener("message", function(message){ if(/^http://www\.some-sender\.com$/.test(message.origin)){ console.log('You received the data from valid sender', message.data); } }); ``` **[⬆ Back to Top](#table-of-contents)** 329. ### 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. **[⬆ Back to Top](#table-of-contents)** 330. ### 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. **[⬆ Back to Top](#table-of-contents)** 331. ### 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. **[⬆ Back to Top](#table-of-contents)** 332. ### 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. **[⬆ Back to Top](#table-of-contents)** 333. ### Is JavaScript faster than server side script Yes, JavaScript is faster than server side scripts. 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. **[⬆ Back to Top](#table-of-contents)** 334. ### How do you get the status of a checkbox You can apply the `checked` property on the selected checkbox in the DOM. If the value is `true` it means the checkbox is checked, otherwise it is unchecked. For example, the below HTML checkbox element can be access using javascript as below: ```html <input type="checkbox" id="checkboxname" value="Agree" /> Agree the conditions <br /> ``` ```javascript console.log(document.getElementById(‘checkboxname’).checked); // true or false ``` **[⬆ Back to Top](#table-of-contents)** 335. ### What is the purpose of double tilde operator The double tilde operator(~~) is known as double NOT bitwise operator. This operator is a slightly quicker substitute for Math.floor(). **[⬆ Back to Top](#table-of-contents)** 336. ### How do you convert character to ASCII code You can use the `String.prototype.charCodeAt()` method to convert string characters to ASCII numbers. For example, let's find ASCII code for the first letter of 'ABC' string, ```javascript "ABC".charCodeAt(0); // returns 65 ``` Whereas `String.fromCharCode()` method converts numbers to equal ASCII characters. ```javascript String.fromCharCode(65, 66, 67); // returns 'ABC' ``` **[⬆ Back to Top](#table-of-contents)** 337. ### What is ArrayBuffer An ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer. You can create it as below, ```javascript let buffer = new ArrayBuffer(16); // create a buffer of length 16 alert(buffer.byteLength); // 16 ``` To manipulate an ArrayBuffer, we need to use a “view” object. ```javascript //Create a DataView referring to the buffer let view = new DataView(buffer); ``` **[⬆ Back to Top](#table-of-contents)** 338. ### What is the output of below string expression ```javascript console.log("Welcome to JS world"[0]); ``` 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. **[⬆ Back to Top](#table-of-contents)** 339. ### 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, ```javascript new Error([message[, fileName[, lineNumber]]]) ``` You can throw user defined exceptions or errors using Error object in try...catch block as below, ```javascript try { if (withdraw > balance) throw new Error("Oops! You don't have enough balance"); } catch (e) { console.log(e.name + ": " + e.message); } ``` **[⬆ Back to Top](#table-of-contents)** 340. ### What is the purpose of EvalError object The EvalError object indicates an error regarding the global `eval()` 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, ```javascript new EvalError([message[, fileName[, lineNumber]]]) ``` You can throw EvalError with in try...catch block as below, ```javascript try { throw new EvalError('Eval function error', 'someFile.js', 100); } catch (e) { console.log(e.message, e.name, e.fileName); // "Eval function error", "EvalError", "someFile.js" ``` **[⬆ Back to Top](#table-of-contents)** 341. ### 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 ```javascript var n = 022; ``` 2. Using `with` statement 3. When you use delete operator on a variable name 4. Using eval or arguments as variable or function argument name 5. When you use newly reserved keywords 6. When you declare a function in a block and access it from outside of the block ```javascript if (someCondition) { function f() {} } f(); // ReferenceError: f is not defined ``` Hence, the errors from above cases are helpful to avoid errors in development/production environments. **[⬆ Back to Top](#table-of-contents)** 342. ### Do all objects have prototypes No. All objects have prototypes except two exceptions: * **Object.prototype** itself — This is the base object in the prototype chain, and **its prototype is** `null`. * **Objects created with** `**Object.create(null)**` — These are deliberately created with **no prototype**, so they don’t inherit from `Object.prototype`. All other standard objects do have a prototype. **[⬆ Back to Top](#table-of-contents)** 343. ### 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 ```javascript function myFunction(parameter1, parameter2, parameter3) { console.log(arguments[0]); // "argument1" console.log(arguments[1]); // "argument2" console.log(arguments[2]); // "argument3" } myFunction("argument1", "argument2", "argument3"); ``` **[⬆ Back to Top](#table-of-contents)** 344. ### 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, ```javascript var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; var odd = (element) => element % 2 !== 0; console.log(array.some(odd)); // true (the odd element exists) ``` **[⬆ Back to Top](#table-of-contents)** 345. ### 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, ```javascript array1.concat(array2, array3, ..., arrayX) ``` Let's take an example of array's concatenation with veggies and fruits arrays, ```javascript var veggies = ["Tomato", "Carrot", "Cabbage"]; var fruits = ["Apple", "Orange", "Pears"]; var veggiesAndFruits = veggies.concat(fruits); console.log(veggiesAndFruits); // Tomato, Carrot, Cabbage, Apple, Orange, Pears ``` **[⬆ Back to Top](#table-of-contents)** 346. ### 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** ```javascript var empDetails = { name: "John", age: 25, expertise: "Software Developer", }; ``` to create a duplicate ```javascript var empDetailsShallowCopy = empDetails; //Shallow copying! ``` if we change some property value in the duplicate one like this: ```javascript empDetailsShallowCopy.name = "Johnson"; ``` The above statement will also change the name of `empDetails`, 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** ```javascript var empDetails = { name: "John", age: 25, expertise: "Software Developer", }; ``` Create a deep copy by using the properties from the original object into new variable ```javascript var empDetailsDeepCopy = { name: empDetails.name, age: empDetails.age, expertise: empDetails.expertise, }; ``` Now if you change `empDetailsDeepCopy.name`, it will only affect `empDetailsDeepCopy` & not `empDetails` **[⬆ Back to Top](#table-of-contents)** 347. ### How do you create specific number of copies of a string The `repeat()` 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, ```javascript "Hello".repeat(4); // 'HelloHelloHelloHello' ``` 348. ### How do you return all matching strings against a regular expression The `matchAll()` 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, ```javascript let regexp = /Hello(\d?)/g; let greeting = "Hello1Hello2Hello3"; let greetingList = [...greeting.matchAll(regexp)]; console.log(greetingList[0][0]); //Hello1 console.log(greetingList[1][0]); //Hello2 console.log(greetingList[2][0]); //Hello3 ``` **[⬆ Back to Top](#table-of-contents)** 349. ### How do you trim a string at the beginning or ending The `trim` 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 `trimStart/trimLeft` and `trimEnd/trimRight` methods. Let's see an example of these methods on a greeting message, ```javascript var greeting = " Hello, Goodmorning! "; console.log(greeting); // " Hello, Goodmorning! " console.log(greeting.trimStart()); // "Hello, Goodmorning! " console.log(greeting.trimLeft()); // "Hello, Goodmorning! " console.log(greeting.trimEnd()); // " Hello, Goodmorning!" console.log(greeting.trimRight()); // " Hello, Goodmorning!" ``` **[⬆ Back to Top](#table-of-contents)** 350. ### What is the output of below console statement with unary operator Let's take console statement with unary operator as given below, ```javascript console.log(+"Hello"); // NaN ``` 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. **[⬆ Back to Top](#table-of-contents)** 351. ### Does javascript uses mixins JavaScript does not have built-in support for mixins as a formal language feature. However, developers commonly implement mixins using various patterns to enable code reuse and composition. A mixin is a way to add reusable functionality from one or more objects into a class or another object, without using classical inheritance. It promotes object composition by combining behaviors or properties from different sources into a single destination. 352. ### Mixin Example using Object composition ```javascript // Define a mixin const canEat = { eat() { console.log("Eating..."); } }; const canWalk = { walk() { console.log("Walking..."); } }; const canRead = { read() { console.log("Reading..."); } }; // Create a class class Person { constructor(name) { this.name = name; } } // Apply mixins Object.assign(Person.prototype, canEat, canWalk, canRead); // Use it const person = new Person("Sudheer"); person.eat(); // Output: Eating... person.walk(); // Output: Walking... person.read(); // Output: Reading... ``` 353. ### Benefits - Avoids deep inheritance hierarchies - Encourages composition over inheritance - Promotes reusable and modular code Modern JavaScript favors mixin alternatives like composition, delegation, higher-order functions, and class mixins to promote reusable and modular code. Libraries like Lodash offer utilities for object composition, while frameworks like Vue.js provide built-in mixin features to promote reusable and modular code. **[⬆ Back to Top](#table-of-contents)** 354. ### 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, ```javascript const add = (x, y) => x + y; const thunk = () => add(2, 3); thunk(); // 5 ``` **[⬆ Back to Top](#table-of-contents)** 355. ### What are asynchronous thunks The asynchronous thunks are useful to make network requests. Let's see an example of network requests, ```javascript function fetchData(fn) { fetch("https://jsonplaceholder.typicode.com/todos/1") .then((response) => response.json()) .then((json) => fn(json)); } const asyncThunk = function () { return fetchData(function getData(data) { console.log(data); }); }; asyncThunk(); ``` The `getData` 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. **[⬆ Back to Top](#table-of-contents)** 356. ### What is the output of below function calls **Code snippet:** ```javascript const circle = { radius: 20, diameter() { return this.radius * 2; }, perimeter: () => 2 * Math.PI * this?.radius, }; ``` ```javascript console.log(circle.diameter()); console.log(circle.perimeter()); ``` **Output:** The output is 40 and NaN. Remember that diameter is a regular function, whereas the value of perimeter is an arrow function. The `this` 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. **[⬆ Back to Top](#table-of-contents)** 357. ### 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. ```javascript function remove_linebreaks( var message ) { return message.replace( /[\r\n]+/gm, "" ); } ``` In the above expression, g and m are for global and multiline flags. **[⬆ Back to Top](#table-of-contents)** 358. ### 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. **[⬆ Back to Top](#table-of-contents)** 359. ### What happens with negating an array Negating an array with `!` character will coerce the array into a boolean. Since Arrays are considered to be truthy So negating it will return `false`. ```javascript console.log(![]); // false ``` **[⬆ Back to Top](#table-of-contents)** 360. ### 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, ```javascript console.log(["a"] + ["b"]); // "ab" console.log([] + []); // "" console.log(![] + []); // "false", because ![] returns false. ``` **[⬆ Back to Top](#table-of-contents)** 361. ### 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, ```javascript console.log(+null); // 0 console.log(+undefined); // NaN console.log(+false); // 0 console.log(+NaN); // NaN console.log(+""); // 0 ``` **[⬆ Back to Top](#table-of-contents)** 362. ### How do you create self string using special characters The self string can be formed with the combination of `[]()!+` 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 ```javascript (![] + [] === "false" + !+[]) === 1; ``` Now the character pattern would be created as below, ```javascript s e l f ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ (![] + [])[3] + (![] + [])[4] + (![] + [])[2] + (![] + [])[0] ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ (![] + [])[+!+[]+!+[]+!+[]] + (![] + [])[+!+[]+!+[]+!+[]+!+[]] + (![] + [])[+!+[]+!+[]] + (![] + [])[+[]] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (![]+[])[+!+[]+!+[]+!+[]]+(![]+[])[+!+[]+!+[]+!+[]+!+[]]+(![]+[])[+!+[]+!+[]]+(![]+[])[+[]] ``` **[⬆ Back to Top](#table-of-contents)** 363. ### 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. ```javascript const myArray = [false, null, 1, 5, undefined]; myArray.filter(Boolean); // [1, 5] // is same as myArray.filter(x => x); ``` **[⬆ Back to Top](#table-of-contents)** 364. ### How do you get unique values of an array You can get unique values of an array with the combination of `Set` and rest expression/spread(...) syntax. ```javascript console.log([...new Set([1, 2, 4, 4, 3])]); // [1, 2, 4, 3] ``` **[⬆ Back to Top](#table-of-contents)** 365. ### 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 `: newName` to specify a name for the variable. This process is called destructuring aliases. ```javascript const obj = { x: 1 }; // Grabs obj.x as { otherName } const { x: otherName } = obj; ``` **[⬆ Back to Top](#table-of-contents)** 366. ### How do you map the array values without using map method You can map the array values without using the `map` method by just using the `from` method of Array. Let's map city names from Countries array, ```javascript const countries = [ { name: "India", capital: "Delhi" }, { name: "US", capital: "Washington" }, { name: "Russia", capital: "Moscow" }, { name: "Singapore", capital: "Singapore" }, { name: "China", capital: "Beijing" }, { name: "France", capital: "Paris" }, ]; const cityNames = Array.from(countries, ({ capital }) => capital); console.log(cityNames); // ['Delhi, 'Washington', 'Moscow', 'Singapore', 'Beijing', 'Paris'] ``` **[⬆ Back to Top](#table-of-contents)** 367. ### How do you empty an array You can empty an array quickly by setting the array length to zero. ```javascript let cities = ["Singapore", "Delhi", "London"]; cities.length = 0; // cities becomes [] ``` **[⬆ Back to Top](#table-of-contents)** 368. ### How do you round numbers to certain decimals You can round numbers to a certain number of decimals using `toFixed` method from native javascript. ```javascript let pie = 3.141592653; pie = pie.toFixed(3); // 3.142 ``` **[⬆ Back to Top](#table-of-contents)** 369. ### 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. ```javascript var fruits = ["banana", "apple", "orange", "watermelon"]; var fruitsObject = { ...fruits }; console.log(fruitsObject); // {0: "banana", 1: "apple", 2: "orange", 3: "watermelon"} ``` **[⬆ Back to Top](#table-of-contents)** 370. ### 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 `fill` method. ```javascript var newArray = new Array(5).fill("0"); console.log(newArray); // ["0", "0", "0", "0", "0"] ``` **[⬆ Back to Top](#table-of-contents)** 371. ### 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 ```javascript const user = { name: "John", id: 1, city: "Delhi" }; console.log( "Hello %s, your details %o are available in the object form", "John", user ); // Hello John, your details {name: "John", id: 1, city: "Delhi"} are available in object ``` **[⬆ Back to Top](#table-of-contents)** 372. ### 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. ```javascript console.log( "%c The text has blue color, with large font and red background", "color: blue; font-size: x-large; background: red" ); ``` The text will be displayed as below, ![Screenshot](images/console-css.png) **Note:** All CSS styles can be applied to console messages. **[⬆ Back to Top](#table-of-contents)** 373. ### What is the purpose of dir method of console object The `console.dir()` is used to display an interactive list of the properties of the specified JavaScript object as JSON. ```javascript const user = { name: "John", id: 1, city: "Delhi" }; console.dir(user); ``` The user object displayed in JSON representation ![Screenshot](images/console-dir.png) **[⬆ Back to Top](#table-of-contents)** 374. ### 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. ```javascript const element = document.getElementsByTagName("body")[0]; console.log(element); ``` It prints the HTML element in the console, ![Screenshot](images/console-html.png) **[⬆ Back to Top](#table-of-contents)** 375. ### How do you display data in a tabular format using console object The `console.table()` is used to display data in the console in a tabular format to visualize complex arrays or objects. ```js const users = [ { name: "John", id: 1, city: "Delhi" }, { name: "Max", id: 2, city: "London" }, { name: "Rod", id: 3, city: "Paris" }, ]; console.table(users); ``` The data visualized in a table format, ![Screenshot](images/console-table.png) **Not:** Remember that `console.table()` is not supported in IE. **[⬆ Back to Top](#table-of-contents)** 376. ### 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. ```javascript function isNumber(n) { return !isNaN(parseFloat(n)) && isFinite(n); } ``` **[⬆ Back to Top](#table-of-contents)** 377. ### 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. ```javascript document.querySelector("#copy-button").onclick = function () { // Select the content document.querySelector("#copy-input").select(); // Copy to the clipboard document.execCommand("copy"); }; ``` **[⬆ Back to Top](#table-of-contents)** 378. ### What is the shortcut to get timestamp You can use `new Date().getTime()` to get the current timestamp. There is an alternative shortcut to get the value. ```javascript console.log(+new Date()); console.log(Date.now()); ``` **[⬆ Back to Top](#table-of-contents)** 379. ### How do you flattening multi dimensional arrays Flattening bi-dimensional arrays is trivial with Spread operator. ```javascript const biDimensionalArr = [11, [22, 33], [44, 55], [66, 77], 88, 99]; const flattenArr = [].concat(...biDimensionalArr); // [11, 22, 33, 44, 55, 66, 77, 88, 99] ``` But you can make it work with multi-dimensional arrays by recursive calls, ```javascript function flattenMultiArray(arr) { const flattened = [].concat(...arr); return flattened.some((item) => Array.isArray(item)) ? flattenMultiArray(flattened) : flattened; } const multiDimensionalArr = [ 11, [22, 33], [44, [55, 66, [77, [88]], 99]], ]; const flatArr = flattenMultiArray(multiDimensionalArr); // [11, 22, 33, 44, 55, 66, 77, 88, 99] ``` Also you can use the `flat` method of Array. ```javascript const arr = [1, [2, 3], 4, 5, [6, 7]]; const fllattenArr = arr.flat(); // [1, 2, 3, 4, 5, 6, 7] // And for multiDimensional arrays const multiDimensionalArr = [ 11, [22, 33], [44, [55, 66, [77, [88]], 99]], ]; const oneStepFlat = multiDimensionalArr.flat(1); // [11, 22, 33, 44, [55, 66, [77, [88]], 99]] const towStep = multiDimensionalArr.flat(2); // [11, 22, 33, 44, 55, 66, [77, [88]], 99] const fullyFlatArray = multiDimensionalArr.flat(Infinity); // [11, 22, 33, 44, 55, 66, 77, 88, 99] ``` **[⬆ Back to Top](#table-of-contents)** 380. ### What is the easiest multi condition checking You can use `indexOf` to compare input with multiple values instead of checking each value as one condition. ```javascript // Verbose approach if ( input === "first" || input === 1 || input === "second" || input === 2 ) { someFunction(); } // Shortcut if (["first", 1, "second", 2].indexOf(input) !== -1) { someFunction(); } ``` **[⬆ Back to Top](#table-of-contents)** 381. ### How do you capture browser back button The `beforeunload` event is triggered when the window, the document and its resources are about to be unloaded. This event is helpful to warn users about losing the current data and detect back button event. ```javascript window.addEventListener("beforeunload", () => { console.log("Clicked browser back button"); }); ``` You can also use `popstate` event to detect the browser back button. **Note:** The history entry has been activated using `history.pushState` method. ```javascript window.addEventListener("popstate", () => { console.log("Clicked browser back button"); box.style.backgroundColor = "white"; }); const box = document.getElementById("div"); box.addEventListener("click", () => { box.style.backgroundColor = "blue"; window.history.pushState({}, null, null); }); ``` In the preceeding code, When the box element clicked, its background color appears in blue color and changed to while color upon clicking the browser back button using `popstate` event handler. The `state` property of `popstate` contains the copy of history entry's state object. **[⬆ Back to Top](#table-of-contents)** 382. ### How do you disable right click in the web page The right click on the page can be disabled by returning false from the `oncontextmenu` attribute on the body element. ```html <body oncontextmenu="return false;"></body> ``` **[⬆ Back to Top](#table-of-contents)** 383. ### 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. ```javascript let name = "john"; console.log(name.toUpperCase()); // Behind the scenes treated as console.log(new String(name).toUpperCase()); ``` i.e, Every primitive except null and undefined have Wrapper Objects and the list of wrapper objects are String,Number,Boolean,Symbol and BigInt. **[⬆ Back to Top](#table-of-contents)** 384. ### 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. **[⬆ Back to Top](#table-of-contents)** 385. ### 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 **[⬆ Back to Top](#table-of-contents)** 386. ### 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 `AbortController` 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 `AbortController` 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, passing the same signal to multiple fetch calls will cancel all requests with that signal, ```javascript const controller = new AbortController(); const { signal } = controller; fetch("http://localhost:8000", { signal }) .then((response) => { console.log(`Request 1 is complete!`); }) .catch((e) => { if (e.name === "AbortError") { // We know it's been canceled! } }); fetch("http://localhost:8000", { signal }) .then((response) => { console.log(`Request 2 is complete!`); }) .catch((e) => { if (e.name === "AbortError") { // We know it's been canceled! } }); // Wait 2 seconds to abort both requests setTimeout(() => controller.abort(), 2000); ``` **[⬆ Back to Top](#table-of-contents)** 387. ### 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 was 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 `SpeechRecognition` interface. The example below shows how to use this API to get text from speech, ```javascript window.SpeechRecognition = window.webkitSpeechRecognition || window.SpeechRecognition; // webkitSpeechRecognition for Chrome and SpeechRecognition for FF const recognition = new window.SpeechRecognition(); recognition.onresult = (event) => { // SpeechRecognitionEvent type const speechToText = event.results[0][0].transcript; console.log(speechToText); }; recognition.start(); ``` In this API, browser is going to ask you for permission to use your microphone 2. **SpeechSynthesis (Text-to-Speech):** It provides the ability to recognize voice context from an audio input and respond. This is accessed by the `SpeechSynthesis` interface. For example, the below code is used to get voice/speech from text, ```javascript if ("speechSynthesis" in window) { var speech = new SpeechSynthesisUtterance("Hello World!"); speech.lang = "en-US"; window.speechSynthesis.speak(speech); } ``` 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) **[⬆ Back to Top](#table-of-contents)** 388. ### 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. ```javascript function runMeFirst() { console.log("My script is initialized"); } setTimeout(runMeFirst, 0); console.log("Script loaded"); ``` and the output would be in ```cmd Script loaded My script is initialized ``` If you don't use `setTimeout`, the order of logs will be sequential. ```javascript function runMeFirst() { console.log("My script is initialized"); } runMeFirst(); console.log("Script loaded"); ``` and the output is, ```cmd My script is initialized Script loaded ``` **[⬆ Back to Top](#table-of-contents)** 389. ### 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. **[⬆ Back to Top](#table-of-contents)** 390. ### 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 `<script>` 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 **[⬆ Back to Top](#table-of-contents)** 391. ### What is microtask A microtask is a type of JavaScript callback that is scheduled to run immediately after the currently executing script and before the next event loop tick. Microtasks are executed after the current task completes and before any new tasks (macrotasks) are run. This ensures a fast and predictable update cycle. Common sources of microtasks stored in the microtask queue include: 1. **Promises:** When a Promise is resolved or rejected, its `.then()`, `.catch()`, and `.finally()` callbacks are placed in the microtask queue. ```javascript Promise.resolve().then(() => { console.log('Microtask from a Promise'); }); ``` 2. **queueMicrotask():** A method that explicitly schedules a function to be run in the microtask queue. ```javascript queueMicrotask(() => { console.log('Microtask from queueMicrotask'); }); ``` 3. **MutationObserver callbacks:** Observers changes in the DOM and triggers a callback as a microtask. ```javascript const observer = new MutationObserver(() => { console.log('Microtask from MutationObserver'); }) observer.observe(document.body, {childList: true}); ``` 4. **await:** Await internally uses Promises, so the code after `await` is scheduled as a microtask. ```javascript async function asyncFunction() { await null; console.log('Microtask from Await'); // Schedule this code as microtask } ``` **Note:** All of these microtasks are processed in the same turn of the event loop. **[⬆ Back to Top](#table-of-contents)** 392. ### What are different event loops In JavaScript, there are multiple event loops that can be used depending on the context of your application. The most common event loops are: 1. The Browser Event Loop 2. The Node.js Event Loop - Browser Event Loop: The Browser Event Loop is used in client-side JavaScript applications and is responsible for handling events that occur within the browser environment, such as user interactions (clicks, keypresses, etc.), HTTP requests, and other asynchronous actions. - The Node.js Event Loop is used in server-side JavaScript applications and is responsible for handling events that occur within the Node.js runtime environment, such as file I/O, network I/O, and other asynchronous actions. **[⬆ Back to Top](#table-of-contents)** 393. ### What is the purpose of queueMicrotask The `queueMicrotask` function is used to schedule a microtask, which is a function that will be executed asynchronously in the microtask queue. The purpose of `queueMicrotask` is to ensure that a function is executed after the current task has finished, but before the browser performs any rendering or handles user events. Example: ```javascript console.log("Start"); //1 queueMicrotask(() => { console.log("Inside microtask"); // 3 }); console.log("End"); //2 ``` By using queueMicrotask, you can ensure that certain tasks or callbacks are executed at the earliest opportunity during the JavaScript event loop, making it useful for performing work that needs to be done asynchronously but with higher priority than regular `setTimeout` or `setInterval` callbacks. **[⬆ Back to Top](#table-of-contents)** 394. ### 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 your TypeScript files without getting compilation errors, the only solution is `declare` keyword along with a variable declaration. For example, let's imagine you have a library called `customLibrary` that doesn’t have a TypeScript declaration and have a namespace called `customLibrary` in the global namespace. You can use this library in typescript code as below, ```javascript declare var customLibrary; ``` In the runtime, typescript will provide the type to the `customLibrary` variable as `any` type. The another alternative without using declare keyword is below ```javascript var customLibrary: any; ``` **[⬆ Back to Top](#table-of-contents)** 395. ### What are the differences between promises and observables Some of the major difference in a tabular form | Promises | Observables | | ------------------------------------------------------------------ | ---------------------------------------------------------------------------------------- | | Emits only a single value at a time | Emits multiple values over a period of time(stream of values ranging from 0 to multiple) | | Eager in nature; they are going to be called immediately | Lazy in nature; they require subscription to be invoked | | Promise is always asynchronous even though it resolved immediately | Observable can be either synchronous or asynchronous | | Doesn't provide any operators | Provides operators such as map, forEach, filter, reduce, retry, and retryWhen etc | | Cannot be canceled | Canceled by using unsubscribe() method | **[⬆ Back to Top](#table-of-contents)** 396. ### 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. ![Screenshot](images/heap.png) **[⬆ Back to Top](#table-of-contents)** 397. ### 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. ![Screenshot](images/event-table.png) **[⬆ Back to Top](#table-of-contents)** 398. ### 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. **[⬆ Back to Top](#table-of-contents)** 399. ### 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. **[⬆ Back to Top](#table-of-contents)** 400. ### 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, ```javascript var myPrimitive = 30; var myNonPrimitive = {}; function isPrimitive(val) { return Object(val) !== val; } isPrimitive(myPrimitive); isPrimitive(myNonPrimitive); ``` 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. **[⬆ Back to Top](#table-of-contents)** 401. ### 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) **[⬆ Back to Top](#table-of-contents)** 402. ### 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. **[⬆ Back to Top](#table-of-contents)** 403. ### 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 **[⬆ Back to Top](#table-of-contents)** 404. ### 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. **[⬆ Back to Top](#table-of-contents)** 405. ### What is the difference between Function constructor and function declaration The functions which are created with `Function constructor` 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:** ```javascript var a = 100; function createFunction() { var a = 200; return new Function("return a;"); } console.log(createFunction()()); // 100 ``` **Function declaration:** ```javascript var a = 100; function createFunction() { var a = 200; return function func() { return a; }; } console.log(createFunction()()); // 200 ``` **[⬆ Back to Top](#table-of-contents)** 406. ### 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, ```javascript if (authenticate) { loginToPorta(); } ``` Since the javascript logical operators evaluated from left to right, the above expression can be simplified using && logical operator ```javascript authenticate && loginToPorta(); ``` **[⬆ Back to Top](#table-of-contents)** 407. ### 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, ```javascript var array = [1, 2, 3, 4, 5]; console.log(array.length); // 5 array.length = 2; console.log(array.length); // 2 console.log(array); // [1,2] ``` and the array can be emptied too ```javascript var array = [1, 2, 3, 4, 5]; array.length = 0; console.log(array.length); // 0 console.log(array); // [] ``` **[⬆ Back to Top](#table-of-contents)** 408. ### 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 `subscribe()` method. Let's look at a simple example of an Observable ```javascript import { Observable } from "rxjs"; const observable = new Observable((observer) => { setTimeout(() => { observer.next("Message from a Observable!"); }, 3000); }); observable.subscribe((value) => console.log(value)); ``` ![Screenshot](images/observables.png) **Note:** Observables are not part of the JavaScript language yet but they are being proposed to be added to the language **[⬆ Back to Top](#table-of-contents)** 409. ### What is the difference between function and class declarations The main difference between function declarations and class declarations is `hoisting`. The function declarations are hoisted but not class declarations. **Classes:** ```javascript const user = new User(); // ReferenceError class User {} ``` **Constructor Function:** ```javascript const user = new User(); // No error function User() {} ``` **[⬆ Back to Top](#table-of-contents)** 410. ### What is an async function An async function is a function declared with the `async` 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 `await` expressions. Let's take a below async function example, ```javascript async function logger() { let data = await fetch("http://someapi.com/users"); // pause until fetch returns console.log(data); } logger(); ``` It is basically syntax sugar over ES2015 promises and generators. **[⬆ Back to Top](#table-of-contents)** 411. ### 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, ```javascript Promise.resolve("promised value").then(function () { throw new Error("error"); }); Promise.reject("error value").catch(function () { throw new Error("error"); }); new Promise(function (resolve, reject) { throw new Error("error"); }); ``` 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 ```javascript Promise.resolve("promised value") .then(function () { throw new Error("error"); }) .catch(function (error) { console.error(error.stack); }); ``` 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 ```javascript Promise.resolve("promised value").done(function () { throw new Error("error"); }); ``` Let's say you want to fetch data using HTTP and later perform processing on the resulting data asynchronously. You can write `done` block as below, ```javascript getDataFromHttp() .then(function (result) { return processDataAsync(result); }) .done(function (processed) { displayData(processed); }); ``` In future, if the processing library API changed to synchronous then you can remove `done` block as below, ```javascript getDataFromHttp().then(function (result) { return displayData(processDataAsync(result)); }); ``` and then you forgot to add `done` block to `then` 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 ```javascript Promise.onPossiblyUnhandledRejection(function (error) { throw error; }); ``` and discard a rejection, just handle it with an empty catch ```javascript Promise.reject("error value").catch(function () {}); ``` **[⬆ Back to Top](#table-of-contents)** 412. ### 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. It solves the inherent problems of Node.Js and has been officially released in May 2018. Unlike Node.JS, by default Deno executes the code in a sandbox, which means that runtime has no access to below areas: 1. The file system 2. The network 3. Execution of other scripts 4. The environment variables **[⬆ Back to Top](#table-of-contents)** 413. ### 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 `Symbol.iterator` property on it. Let's demonstrate this with an example, ```javascript const collection = { one: 1, two: 2, three: 3, [Symbol.iterator]() { const values = Object.keys(this); let i = 0; return { next: () => { return { value: this[values[i++]], done: i > values.length, }; }, }; }, }; const iterator = collection[Symbol.iterator](); console.log(iterator.next()); // → {value: 1, done: false} console.log(iterator.next()); // → {value: 2, done: false} console.log(iterator.next()); // → {value: 3, done: false} console.log(iterator.next()); // → {value: undefined, done: true} ``` The above process can be simplified using a generator function, ```javascript const collection = { one: 1, two: 2, three: 3, [Symbol.iterator]: function* () { for (let key in this) { yield this[key]; } }, }; const iterator = collection[Symbol.iterator](); console.log(iterator.next()); // {value: 1, done: false} console.log(iterator.next()); // {value: 2, done: false} console.log(iterator.next()); // {value: 3, done: false} console.log(iterator.next()); // {value: undefined, done: true} ``` **[⬆ Back to Top](#table-of-contents)** 414. ### 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 `n * factorial(n - 1)` ```javascript function factorial(n) { if (n === 0) { return 1; } return n * factorial(n - 1); } console.log(factorial(5)); //120 ``` But if you use Tail recursion functions, they keep passing all the necessary data it needs down the recursion without relying on the stack. ```javascript function factorial(n, acc = 1) { if (n === 0) { return acc; } return factorial(n - 1, n * acc); } console.log(factorial(5)); //120 ``` 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. **[⬆ Back to Top](#table-of-contents)** 415. ### 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 `Promise.resolve(value)` which returns a promise ```javascript function isPromise(object) { if (Promise && Promise.resolve) { return Promise.resolve(object) == object; } else { throw "Promise not supported in your environment"; } } var i = 1; var promise = new Promise(function (resolve, reject) { resolve(); }); console.log(isPromise(i)); // false console.log(isPromise(promise)); // true ``` Another way is to check for `.then()` handler type ```javascript function isPromise(value) { return Boolean(value && typeof value.then === "function"); } var i = 1; var promise = new Promise(function (resolve, reject) { resolve(); }); console.log(isPromise(i)); // false console.log(isPromise(promise)); // true ``` **[⬆ Back to Top](#table-of-contents)** 416. ### How to detect if a function is called as constructor You can use `new.target` 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. ```javascript function Myfunc() { if (new.target) { console.log("called with new"); } else { console.log("not called with new"); } } new Myfunc(); // called with new Myfunc(); // not called with new Myfunc.call({}); // not called with new ``` **[⬆ Back to Top](#table-of-contents)** 417. ### 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 **[⬆ Back to Top](#table-of-contents)** 418. ### 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. **[⬆ Back to Top](#table-of-contents)** 419. ### What are the different kinds of generators There are five kinds of generators, 1. **Generator function declaration:** ```javascript function* myGenFunc() { yield 1; yield 2; yield 3; } const genObj = myGenFunc(); ``` 2. **Generator function expressions:** ```javascript const myGenFunc = function* () { yield 1; yield 2; yield 3; }; const genObj = myGenFunc(); ``` 3. **Generator method definitions in object literals:** ```javascript const myObj = { *myGeneratorMethod() { yield 1; yield 2; yield 3; }, }; const genObj = myObj.myGeneratorMethod(); ``` 4. **Generator method definitions in class:** ```javascript class MyClass { *myGeneratorMethod() { yield 1; yield 2; yield 3; } } const myObject = new MyClass(); const genObj = myObject.myGeneratorMethod(); ``` 5. **Generator as a computed property:** ```javascript const SomeObj = { *[Symbol.iterator]() { yield 1; yield 2; yield 3; }, }; console.log(Array.from(SomeObj)); // [ 1, 2, 3 ] ``` **[⬆ Back to Top](#table-of-contents)** 420. ### 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 **[⬆ Back to Top](#table-of-contents)** 421. ### 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, ```javascript let arr = ["a", "b", "c"]; arr.newProp = "newVlue"; // key are the property keys for (let key in arr) { console.log(key); // 0, 1, 2 & newProp } // value are the property values for (let value of arr) { console.log(value); // a, b, c } ``` 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. **[⬆ Back to Top](#table-of-contents)** 422. ### 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, ```javascript class Person { constructor(name, age) { this.name = name; this.age = age; } } ``` 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, ```javascript Person.staticAge = 30; Person.prototype.prototypeAge = 40; ``` **[⬆ Back to Top](#table-of-contents)** 423. ### What is the difference between isNaN and Number.isNaN? 1. **isNaN**: The global function `isNaN` 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, ```javascript isNaN(‘hello’); // true Number.isNaN('hello'); // false ``` **[⬆ Back to Top](#table-of-contents)** 424. ### 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. ```js (function (dt) { console.log(dt.toLocaleTimeString()); })(new Date()); ``` Since both IIFE and void operator discard the result of an expression, you can avoid the extra brackets using `void operator` for IIFE as below, ```js void (function (dt) { console.log(dt.toLocaleTimeString()); })(new Date()); ``` **[⬆ Back to Top](#table-of-contents)** 425. ### 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 temperature as an example, ```js const weather = (function getWeather(temp) { switch (true) { case temp < 0: return "freezing"; case temp < 10: return "cold"; case temp < 24: return "cool"; default: return "unknown"; } })(10); ``` **[⬆ Back to Top](#table-of-contents)** 426. ### 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. ```js await promise.catch((e) => void e); ``` **[⬆ Back to Top](#table-of-contents)** 427. ### 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 color text using console.log and CSS specifier as below, ```js console.log("%cThis is a red text", "color:red"); ``` It is also possible to add more styles for the content. For example, the font-size can be modified for the above text ```js console.log( "%cThis is a red text with bigger font", "color:red; font-size:20px" ); ``` **[⬆ Back to Top](#table-of-contents)** 428. ### 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. ```js console.log(null ?? true); // true console.log(false ?? true); // false console.log(undefined ?? true); // true ``` **[⬆ Back to Top](#table-of-contents)** 429. ### How do you group and nest console output? The `console.group()` 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: ```js console.group("User Details"); console.log("name: Sudheer Jonna"); console.log("job: Software Developer"); // Nested Group console.group("Address"); console.log("Street: Commonwealth"); console.log("City: Los Angeles"); console.log("State: California"); // Close nested group console.groupEnd(); // Close outer group console.groupEnd(); ``` You can also use `console.groupCollapsed()` instead of `console.group()` if you want the groups to be collapsed by default. **[⬆ Back to Top](#table-of-contents)** 430. ### 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, ```js const avengers = ["Ironman", "Hulk", "CaptainAmerica"]; console.log(avengers[0]); // 'Ironman' console.log(avengers[1]); // 'Hulk' console.log(avengers[2]); // 'CaptainAmerica' console.log(avengers.length); // 3 const justiceLeague = ["Superman", "Aquaman", , "Batman"]; console.log(justiceLeague[0]); // 'Superman' console.log(justiceLeague[1]); // 'Aquaman' console.log(justiceLeague[2]); // undefined console.log(justiceLeague[3]); // 'Batman' console.log(justiceLeague.length); // 4 ``` **[⬆ Back to Top](#table-of-contents)** 431. ### 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 ```js const justiceLeague = ["Superman", "Aquaman", , "Batman"]; console.log(justiceLeague); // ['Superman', 'Aquaman', empty ,'Batman'] ``` 2. **Array() constructor:** Invoking Array(length) or new Array(length) ```js const array = Array(3); console.log(array); // [empty, empty ,empty] ``` 3. **Delete operator:** Using delete array[index] operator on the array ```js const justiceLeague = ["Superman", "Aquaman", "Batman"]; delete justiceLeague[1]; console.log(justiceLeague); // ['Superman', empty, ,'Batman'] ``` 4. **Increase length property:** Increasing length property of an array ```js const justiceLeague = ["Superman", "Aquaman", "Batman"]; justiceLeague.length = 5; console.log(justiceLeague); // ['Superman', 'Aquaman', 'Batman', empty, empty] ``` **[⬆ Back to Top](#table-of-contents)** 432. ### 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. **[⬆ Back to Top](#table-of-contents)** 433. ### How do you reverse an array without modifying original array? The `reverse()` 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, ```javascript const originalArray = [1, 2, 3, 4, 5]; const newArray = originalArray.reverse(); console.log(newArray); // [ 5, 4, 3, 2, 1] console.log(originalArray); // [ 5, 4, 3, 2, 1] ``` 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 `slice()` method on the array to create a shallow copy followed by `reverse()` method call on the copy. ```javascript const originalArray = [1, 2, 3, 4, 5]; const newArray = originalArray.slice().reverse(); //Slice an array gives a new copy console.log(originalArray); // [1, 2, 3, 4, 5] console.log(newArray); // [ 5, 4, 3, 2, 1] ``` 2. **Using spread and reverse methods:** In this case, let's use the spread syntax (...) to create a copy of the array followed by `reverse()` method call on the copy. ```javascript const originalArray = [1, 2, 3, 4, 5]; const newArray = [...originalArray].reverse(); console.log(originalArray); // [1, 2, 3, 4, 5] console.log(newArray); // [ 5, 4, 3, 2, 1] ``` 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 ```javascript const originalArray = [1, 2, 3, 4, 5]; const newArray = originalArray.reduce((accumulator, value) => { return [value, ...accumulator]; }, []); console.log(originalArray); // [1, 2, 3, 4, 5] console.log(newArray); // [ 5, 4, 3, 2, 1] ``` 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 ```javascript const originalArray = [1, 2, 3, 4, 5]; const newArray = originalArray.reduceRight((accumulator, value) => { return [...accumulator, value]; }, []); console.log(originalArray); // [1, 2, 3, 4, 5] console.log(newArray); // [ 5, 4, 3, 2, 1] ``` 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 ```javascript const originalArray = [1, 2, 3, 4, 5]; const newArray = originalArray.reduceRight((accumulator, value) => { accumulator.push(value); return accumulator; }, []); console.log(originalArray); // [1, 2, 3, 4, 5] console.log(newArray); // [ 5, 4, 3, 2, 1] ``` **[⬆ Back to Top](#table-of-contents)** 434. ### 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 `connectedCallback` method. **Note:** The browser exposes a function called `customElements.define` inorder to reuse the element. ```javascript class CustomElement extends HTMLElement { connectedCallback() { this.innerHTML = "This is a custom element"; } } customElements.define("custom-element", CustomElement); ``` 2. **Use custom element just like other HTML element:** Declare your custom element as a HTML tag. ```javascript <body> <custom-element> </body> ``` **[⬆ Back to Top](#table-of-contents)** 435. ### 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. ```javascript var x = 10; function A() { console.log("Start function A"); function B() { console.log("In function B"); } B(); } A(); console.log("GlobalContext"); ``` **[⬆ Back to Top](#table-of-contents)** 436. ### 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. **[⬆ Back to Top](#table-of-contents)** 437. ### What is debouncing? Debouncing is a programming technique used to limit how often a function is executed. Specifically, it ensures that a function is only triggered after a certain amount of time has passed since it was last invoked. This prevents unnecessary or excessive function calls, which can help optimize performance and reduce unnecessary CPU usage or API requests. For example, when a user types in a search box, you typically want to wait until they’ve finished typing before fetching suggestions. Without debouncing, an API call would be triggered on every keystroke, potentially causing performance issues. With debouncing, the function call is postponed until the user stops typing for a specified period (e.g., 300ms). If the user types again before this time elapses, the timer resets. **Typical use cases for debouncing include:** * Search box suggestions (wait until typing pauses before fetching results) * Auto-saving text fields (save only after the user stops typing) * Preventing double-clicks on buttons * Handling window resize or scroll events efficiently **Example Debounce Function:** JavaScript ```css function debounce(func, timeout = 500) { let timer; return function (...args) { clearTimeout(timer); timer = setTimeout(() => { func.apply(this, args); }, timeout); }; } ``` **Usage Example:** JavaScript ```css function fetchResults() { console.log("Fetching input suggestions"); } const processChange = debounce(fetchResults, 300); // Attach to input element <input type="text" onkeyup="processChange()" /> // Attach to button <button onclick="processChange()">Click me</button> // Attach to window event window.addEventListener("scroll", processChange); ``` **How it works:** When `processChange` is invoked (e.g., by typing or clicking), any pending execution is canceled, and the function is scheduled to run after the specified delay. If another event occurs before the delay is up, the timer resets, and the function will only run after events have stopped for the delay duration. Debouncing is an essential tool for improving user experience and application performance, especially when dealing with events that can fire rapidly and repeatedly. **[⬆ Back to Top](#table-of-contents)** 438. ### What is throttling? Throttling is a programming technique used to control the rate at which a function is executed. When an event is triggered continuously—such as during window resizing, scrolling, or mouse movement—throttling ensures that the associated event handler is not called more often than a specified interval. This helps improve performance by reducing the number of expensive function calls and preventing performance bottlenecks. **Common use cases:** * Window resize events * Scroll events * Mouse movement or drag events * API rate limiting **How does throttling work?** Throttling will execute the function at most once every specified time interval, ignoring additional calls until the interval has passed. **Example: Throttle Implementation and Usage** JavaScript ```css // Simple throttle function: allows 'func' to run at most once every 'limit' ms function throttle(func, limit) { let inThrottle = false; return function(...args) { if (!inThrottle) { func.apply(this, args); inThrottle = true; setTimeout(() => (inThrottle = false), limit); } }; } // Usage: throttling a scroll event handler function handleScrollAnimation() { console.log('Scroll event triggered'); } window.addEventListener( "scroll", throttle(handleScrollAnimation, 100) // Will run at most once every 100ms ); ``` **[⬆ Back to Top](#table-of-contents)** 439. ### 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. ```js const adventurer = { name: "Alice", cat: { name: "Dinah", }, }; const dogName = adventurer.dog?.name; console.log(dogName); // expected output: undefined console.log(adventurer.someNonExistentMethod?.()); // expected output: undefined ``` **[⬆ Back to Top](#table-of-contents)** 440. ### What is an environment record? According to ECMAScript specification 262 (9.1): > [Environment Record](https://262.ecma-international.org/12.0/#sec-environment-records) 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. **[⬆ Back to Top](#table-of-contents)** 441. ### 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 `Array.isArray(value)` 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. ```javascript const numbers = [1, 2, 3]; const user = { name: "John" }; Array.isArray(numbers); // true Array.isArray(user); //false ``` 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. ```javascript const numbers = [1, 2, 3]; const user = { name: "John" }; console.log(numbers instanceof Array); // true console.log(user instanceof Array); // false ``` 3. Checking constructor type: The constructor property of the variable is used to determine whether the variable Array type or not. ```javascript const numbers = [1, 2, 3]; const user = { name: "John" }; console.log(numbers.constructor === Array); // true console.log(user.constructor === Array); // false ``` **[⬆ Back to Top](#table-of-contents)** 442. ### 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. ```javascript let a = 5; let b = a; b++; console.log(a, b); //5, 6 ``` In the above code snippet, the value of `a` is assigned to `b` and the variable `b` has been incremented. Since there is a new space created for variable `b`, any update on this variable doesn't impact the variable `a`. 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. ```javascript let user1 = { name: "John", age: 27, }; let user2 = user1; user2.age = 30; console.log(user1.age, user2.age); // 30, 30 ``` In the above code snippet, updating the `age` property of one object will impact the other property due to the same reference. **[⬆ Back to Top](#table-of-contents)** 443. ### 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, | Primitives | Non-primitives | | -------------------------- | -------------------- | | These types are predefined | Created by developer | | These are immutable | Mutable | | Compare by value | Compare by reference | | Stored in Stack | Stored in heap | | Contain certain value | Can contain NULL too | **[⬆ Back to Top](#table-of-contents)** 444. ### 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 `myOwnBind` method act as the attached function(`boundTargetFunction`) and argument as the object for `apply` method call. ```js Function.prototype.myOwnBind = function (whoIsCallingMe) { if (typeof this !== "function") { throw new Error(this + "cannot be bound as it's not callable"); } const boundTargetFunction = this; return function () { boundTargetFunction.apply(whoIsCallingMe, arguments); }; }; ``` **[⬆ Back to Top](#table-of-contents)** 445. ### What are the differences between pure and impure functions? Some of the major differences between pure and impure function are as below, | Pure function | Impure function | | ----------------------------------- | ---------------------------------------------------------------------- | | It has no side effects | It causes side effects | | It is always return the same result | It returns different result on each call | | Easy to read and debug | Difficult to read and debug because they are affected by external code | **[⬆ Back to Top](#table-of-contents)** 446. ### What is referential transparency? An expression in javascript that can be replaced by its value without affecting the behaviour of the program is called referential transparency. Pure functions are referentially transparent. ```javascript const add = (x, y) => x + y; const multiplyBy2 = (x) => x * 2; //Now add (2, 3) can be replaced by 5. multiplyBy2(add(2, 3)); ``` **[⬆ Back to Top](#table-of-contents)** 447. ### What are the possible side-effects in javascript? A side effect is the modification of the state through the invocation of a function or expression. These side effects make our function impure by default. Below are some side effects which make function impure, - Making an HTTP request. Asynchronous functions such as fetch and promise are impure. - DOM manipulations - Mutating the input data - Printing to a screen or console: For example, console.log() and alert() - Fetching the current time - Math.random() calls: Modifies the internal state of Math object **[⬆ Back to Top](#table-of-contents)** 448. ### What are compose and pipe functions? The "compose" and "pipe" are two techniques commonly used in functional programming to simplify complex operations and make code more readable. They are not native to JavaScript and higher-order functions. the `compose()` applies right to left any number of functions to the output of the previous function. **[⬆ Back to Top](#table-of-contents)** 449. ### What is module pattern? Module pattern is a designed pattern used to wrap a set of variables and functions together in a single scope returned as an object. JavaScript doesn't have access specifiers similar to other languages(Java, Python, etc) to provide private scope. It uses IIFE (Immediately invoked function expression) to allow for private scopes. i.e., a closure that protect variables and methods. The module pattern looks like below, ```javascript (function () { // Private variables or functions goes here. return { // Return public variables or functions here. }; })(); ``` Let's see an example of a module pattern for an employee with private and public access, ```javascript const createEmployee = (function () { // Private const name = "John"; const department = "Sales"; const getEmployeeName = () => name; const getDepartmentName = () => department; // Public return { name, department, getName: () => getEmployeeName(), getDepartment: () => getDepartmentName(), }; })(); console.log(createEmployee.name); console.log(createEmployee.department); console.log(createEmployee.getName()); console.log(createEmployee.getDepartment()); ``` **Note:** It mimic the concepts of classes with private variables and methods. **[⬆ Back to Top](#table-of-contents)** 450. ### What is Function Composition? It is an approach where the result of one function is passed on to the next function, which is passed to another until the final function is executed for the final result. ```javascript //example const double = (x) => x * 2; const square = (x) => x * x; var output1 = double(2); var output2 = square(output1); console.log(output2); var output_final = square(double(2)); console.log(output_final); ``` **[⬆ Back to Top](#table-of-contents)** 451. ### How to use await outside of async function prior to ES2022? Prior to ES2022, if you attempted to use an await outside of an async function resulted in a SyntaxError. ```javascript await Promise.resolve(console.log("Hello await")); // SyntaxError: await is only valid in async function ``` But you can fix this issue with an alternative IIFE (Immediately Invoked Function Expression) to get access to the feature. ```javascript (async function () { await Promise.resolve(console.log("Hello await")); // Hello await })(); ``` In ES2022, you can write top-level await without writing any hacks. ```javascript await Promise.resolve(console.log("Hello await")); //Hello await ``` **[⬆ Back to Top](#table-of-contents)** 452. ### What is the purpose of the this keyword in JavaScript? The `this` keyword in JavaScript refers to **the object that is executing the current function**. Its value is determined by **how a function is called**, not where it is defined. `this` is essential for writing object-oriented and event-driven code, as it allows methods to interact with the data of the object they belong to. **Example 1: this in a Global Context** ```javascript console.log(this); ``` - In a global context, this refers to the global object (e.g., window in a browser). **Example 2: this in a Function** ```javascript function displayThis() { console.log(this); } displayThis(); ``` - In a regular function, this refers to the global object(window in browser and global in nodejs) for non-strict mode. In strict mode, it's value is undefined. **Example 3: this in a Method** ```javascript const person = { name: "John", greet: function () { console.log("Hello, " + this.name); }, }; person.greet(); ``` - In a method, this refers to the object that owns the method (person in the case). **Example 4: this in an Event Handler** ```javascript document.getElementById("myButton").addEventListener("click", function () { console.log(this); }); ``` - In an event handler, this refers to the element that triggered the event (the button in this case). **Example 5: `this` with Arrow Functions** ```javascript const obj = { age: 42, regular: function() { console.log(this.age); }, arrow: () => { console.log(this.age); } }; obj.regular(); // 42 (this refers to obj) obj.arrow(); // undefined (this refers to the outer scope, not obj) ``` - Arrow functions do not have their own `this` binding; they inherit it from their surrounding (lexical) context. **Example 6: this in Constructor Functions / Classes** ```javascript function Person(name) { this.name = name; } const p1 = new Person('Sudheer'); console.log(p1.name); // Sudheer ``` - When used with new, this refers to the newly created object. **[⬆ Back to Top](#table-of-contents)** 453. ### What are the uses of closures? Closures are a powerful feature in programming languages like JavaScript. They allow functions to retain access to variables from their containing (enclosing) scope even after the outer function has finished executing. This means that a function defined within another function can access variables from the outer function, even if the outer function has already returned. Here are some common use cases of closures: - Data Privacy: Closures can be used to create private variables and methods. By defining variables within a function's scope and returning inner functions that have access to those variables, you can create a form of encapsulation, limiting access to certain data or functionality. - Function Factories: Closures are often used to create functions with pre-set parameters. This is useful when you need to create multiple functions with similar behavior but different configurations. - Callback Functions: Closures are frequently used in asynchronous programming, such as handling event listeners or AJAX requests. The inner function captures variables from the outer scope and can access them when the callback is invoked. - Memoization: Closures can be used for memoization, a technique to optimize performance by caching the results of expensive function calls. The inner function can remember the results of previous calls and return the cached result if the same input is provided again. - iterators and Generators: Closures can be used to create iterators and generators, which are essential for working with collections of data in modern JavaScript. **[⬆ Back to Top](#table-of-contents)** 454. ### What are the phases of execution context? The execution context in JavaScript is a data structure that stores the information necessary for executing a piece of code. It includes the code itself, the values of the variables used in the code, and the scope chain. The scope chain is a list of objects that are used to resolve variable names. The execution context has two phases: - Creation phase: In this phase, the JavaScript engine creates the execution context and sets up the script's environment. This includes creating the variable object and the scope chain. - Execution phase: In this phase, the JavaScript engine executes the code in the execution context. This includes evaluating expressions, assigning values to variables, and calling functions. The execution context is created when a function is called. The function's code is then executed in the execution context. When the function returns, the execution context is destroyed. **[⬆ Back to Top](#table-of-contents)** 455. ### What are the possible reasons for memory leaks? Memory leaks can lead to poor performance, slow loading times and even crashes in web applications. Some of the common causes of memory leaks are listed below, 1. The execessive usage of global variables or omitting the `var` keyword in local scope. 2. Forgetting to clear the timers set up by `setTimeout` or `setInterval`. 3. Closures retain references to variables from their parent scope, which leads to variables might not garbage collected even they are no longer used. 456. ### What are the optimization techniques of V8 engine? V8 engine uses the below optimization techniques. 1. **Inline expansion:** It is a compiler optimization by replacing the function calls with the corresponding function blocks. 2. **Copy elision:** This is a compiler optimization method to prevent expensive extra objects from being duplicated or copied. 3. **Inline caching:** It is a runtime optimization technique where it caches the execution of older tasks those can be lookup while executing the same task in the future. **[⬆ Back to Top](#table-of-contents)** 457. ### What are the examples of built-in higher order functions? There are several built-in higher order functions exists on arrays, strings, DOM and promise methods in javascript. These higher order functions provides significant level of abstraction. The list of functions on these categories are listed below, 1. **arrays:** map, filter, reduce, sort, forEach, some etc. 2. **DOM**: The DOM method `element.addEventListener(type, handler)` also accepts the function handler as a second argument. 3. **Strings:** replace() method. **[⬆ Back to Top](#table-of-contents)** 458. ### What are the benefits higher order functions? The main benefits of higher order functions are: 1. Abstraction 2. Reusability 3. Immutability 4. Modularity **[⬆ Back to Top](#table-of-contents)** 459. ### How do you create polyfills for map, filter and reduce methods? The polyfills for array methods such as map, filter and reduce methods can be created using array prototype. 1. **map:** The built-in `Array.map` method syntax will be helpful to write polyfill. The map method takes the callback function as an argument and that callback function can have below three arguments passed into it. i. Current value ii. Index of current value(optional) iii. array(optional) The syntax would like below, ```js let newArray = arr.map(callback(currentValue[, index, arr) { // return new array after executing the code }) ``` Let's build our map polyfill based on the above syntax, ```js Array.prototype.myMap = function (cb) { let newArr = []; for (let i = 0; i < this.length; i++) { newArr.push(cb(this[i], i, this)); } return newArr; }; const nums = [1, 2, 3, 4, 5]; const multiplyByTwo = nums.myMap((x) => x * 2); console.log(multiplyByTwo); // [2, 4, 6, 8, 10] ``` In the above code, custom method name 'myMap' has been used to avoid conflicts with built-in method. 2. **filter:** Similar to map method, `Array.filter` method takes callback function as an argument and the callback function can have three agurguments passed into it. i. Current value ii. Index of current value(optional) iii. array(optional) The syntax looks like below, ```js let newArray = arr.filter(callback(currentValue[, index, arr) { // return new array whose elements satisfy the callback conditions }) ``` Let's build our filter polyfill based on the above syntax, ```js Array.prototype.myFilter = function (cb) { let newArr = []; for (let i = 0; i < this.length; i++) { if (cb(this[i], i, this)) { newArr.push(this[i]); } } return newArr; }; const nums = [1, 2, 3, 4, 5, 6]; const evenNums = nums.myFilter((x) => x % 2); console.log(evenNums); // [2, 4, 6] ``` 3. **reduce:** The built-in `Array.reduce` method syntax will be helpful to write our own polyfill. The reduce method takes the callback function as first argument and the initial value as second argument. The callback function can have four arguments passed into it. i. Accumulator ii. Current value iii. Index of current value(optional) iv. array(optional) The syntax would like below, ```js arr.reduce(callback((acc, curr, i, arr) => {}), initValue); ``` Let's build our reduce polyfill based on the above syntax, ```js Array.prototype.myReduce = function(cb, initialValue) { let accumulator = initialValue; for(let i=0; i< this.length; i++) { accumulator = accumulator ? cb(accumulator, this[i], i, this) : this[i]; } return accumulator; } const nums = [1, 2, 3, 4, 5, 6]; const sum = nums.myReduce((acc, curr, i, arr) => { return acc += curr }, 0); console.log(sum); // 21 ``` **[⬆ Back to Top](#table-of-contents)** 460. ### What is the difference between map and forEach functions? Both map and forEach functions are used to iterate over an arrays but there are some differences in their functionality. 1. **Returning values:** The `map` method returns a new array with transformed elements whereas `forEach` method returns `undefined` even though both of them are doing the same job. ```javascript const arr = [1, 2, 3, 4, 5]; arr.map(x => x * x); // [1, 4, 9, 16, 25] arr.forEach(x => x * x); // The `forEach()` method in JavaScript always returns undefined. This is because forEach() is used to iterate over arrays and perform side effects on each element, rather than returning a `new array or transforming the original array` ``` 2. **Chaining methods:** The `map` method is chainable. i.e, It can be attached with `reduce`, `filter`, `sort` and other methods as well. Whereas `forEach` cannot be attached with any other methods because it returns `undefined` value. ```javascript const arr = [1, 2, 3, 4, 5]; arr.map((x) => x * x).reduce((total, cur) => total + cur); // 55 arr.forEach((x) => x * x).reduce((total, cur) => total + cur); //Uncaught TypeError: Cannot read properties of undefine(reading 'reduce') ``` 3. **Mutation:** The `map` method doesn't mutate the original array by returning new array. Whereas `forEach` method also doesn't mutate the original array but it's callback is allowed to mutate the original array. **Note:** Both these methods existed since ES5 onwards. **[⬆ Back to Top](#table-of-contents)** 461. ### Give an example of statements affected by automatic semicolon insertion? The javascript parser will automatically add a semicolon while parsing the source code. For example, the below common statements affected by Automatic Semicolon Insertion(ASI). 1. An empty statement 2. var statement 3. An expression statement 4. do-while statement 5. continue statement 6. break statement 7. return statement 8. throw statement **[⬆ Back to Top](#table-of-contents)** 462. ### What are the event phases of a browser? There are 3 phases in the lifecycle of an event propagation in JavaScript, 1. **Capturing phase:** This phase goes down gradually from the top of the DOM tree to the target element when a nested element clicked. Before the click event reaching the final destination element, the click event of each parent's element must be triggered. 2. **Target phase:** This is the phase where the event originally occurred reached the target element . 3. **Bubbling phase:** This is reverse of the capturing phase. In this pase, the event bubbles up from the target element through it's parent element, an ancestor and goes all the way to the global window object. The pictorial representation of these 3 event phases in DOM looks like below, ![Screenshot](images/event-flow.png) **[⬆ Back to Top](#table-of-contents)** 463. ### What are the real world use cases of proxy? Proxies are not used in regular day to day JavaScript work but they enabled many exciting programming patterns. Some of the real world use cases are listed below, 1. Vue3 used proxy concept to implement reactive state 2. SolidJS implemented reactive stores 3. Immerjs built upon proxy to track updates to immutable updates 4. ZenStack improved Prisma ORM for access control layer **[⬆ Back to Top](#table-of-contents)** 464. ### What are hidden classes? Since JavaScript is a dynamic programming language, you can add or remove properties and methods from objects on the fly at runtime. This nature of JavaScript increases the dynamic dictionary lookups(because objects implemented as HashTables in memory) for retrieving a property on an object. Let's consider the following example to see how the additional properties `age` and `gender` added at runtime. ```javascript function Person(name) { this.name = name; } var person1 = new Person("John"); var person2 = new Person("Randy"); person1.age = 40; person1.gender = "Male"; person2.gender = "Female"; person2.age = 50; ``` As a result, this behavior leads to lower JavaScript performance compared to the contiguous buffer method used in non-dynamic languages. The V8 engine provided a solution named **hidden classes** to optimize the access time when retrieving a property on an object. This optimization is achieved by sharing hidden classes among objects created in a similar fashion. These hidden classes are attached to each and every object to track its shape. When V8 engine sees the constructor function(e.g, Person) is declared, it creates a hidden class (let's say Class01) without any offsets. Once the first property assignment statement (`this.name = name`) is executed, V8 engine will create a new hidden class (let's say Class02), inheriting all properties from the previous hidden class (Class01), and assign the property to offset 0. This process enables compiler to skip dictionary lookup when you try to retrieve the same property(i.e, name). Instead, V8 will directly point to Class02. The same procedure happens when you add new properties to the object. For example, adding `age` and `gender` properties to `Person` constructor leads to transition of hidden classes(Class02 -> Class03 -> Class04). If you create a second object(Person2) based on the same Person object, both Class01 and Class02 hidden classes are going to be shared. However, the hidden classes Class03 and Class04 cannot be shared because second object has been modified with a different order of properties assignment. Since both the objects(person1 and person2) do not share the hidden classes, now V8 engine cannot use **Inline Caching** technique for the faster access of properties. **[⬆ Back to Top](#table-of-contents)** 465. ### What is inline caching? Inline caching is an optimization technique based on the observation that repeated calls to same function tends to occur on same type of objects. The V8 compiler stores a cache of the type of objects that were passed as a parameter in recent method calls. Upon next time when same function is called, compiler can directly search for the type in cache. Let's consider an example where the compiler stores the shape type in cache for repeated calls in the loop. ```js let shape = { width: 30, height: 20 }; // Compiler store the type in cache as { width: <int>, height: <int>} after repeated calls function area(obj) { //Calculate area } for (let i = 0; i < 100; i++) { area(shape); } ``` After few successful calls of the same area method to its same hidden class, V8 engine omits the hidden class lookup and simply adds the offset of the property to the object pointer itself. As a result, it increases the execution speed. There are mainly 3 types of inline caching possible: 1. Monomorphic: This is a optimized caching technique in which there can be always same type of objects passed. 2. Polymorphic: This ia slightly optimized caching technique in which limited number of different types of objects can be passed. 3. Megamorphic: It is an unoptimized caching in which any number of different objects can be passed. **[⬆ Back to Top](#table-of-contents)** 466. ### What are the different ways to execute external scripts? There are three different ways to execute external scripts, 1. async: The script is downloaded in parallel to parsing the page, and executed as soon as it is available even before parsing completes. The parsing of the page is going to be interuppted once the script is downloaded completely and then the script is executed. Thereafter, the parsing of the remaining page will continue. The syntax for async usage is as shown below, ```html <script src="demo.js" async></script> ``` 2. defer: The script is downloaded in parallel to parsing the page, and executed after the page has finished parsing. The syntax for defer usage is as shown below, ```html <script src="demo.js" defer></script> ``` 3. Neither async or defer: The script is downloaded and executed immediately by blocking parsing of the page until the script execution is completed. **Note:** You should only use either async or defer attribute if the `src` attribute is present. **[⬆ Back to Top](#table-of-contents)** 467. ### What is Lexical Scope? Lexical scope is the ability for a function scope to access variables from the parent scope. ```js <script> function x(){ var a=10; function y(){ console.log(a); // will print a , because of lexical scope, it will first look 'a' in //its local memory space and then in its parent functions memory space } y(); } x(); </script> ``` **[⬆ Back to Top](#table-of-contents)** 468. ### How to detect system dark mode in javascript? The combination of `Window.matchMedia()` utility method along with media query is used to check if the user has selected a dark color scheme in their operating system settings or not. The CSS media query `prefers-color-scheme` needs to be passed to identify system color theme. The following javascript code describes the usage, ```javascript const hasDarkColorScheme = () => window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches; ``` You can also watch changes to system color scheme using `addEventListener`, ```javascript window .matchMedia("(prefers-color-scheme: dark)") .addEventListener("change", (event) => { const theme = event.matches ? "dark" : "light"; }); ``` **Note:** The matchMedia method returns **MediaQueryList** object stores information from a media query. **[⬆ Back to Top](#table-of-contents)** 469. ### What is the purpose of requestAnimationFrame method? The requestAnimationFrame() method in JavaScript is used to schedule a function to be called before the next repaint of the browser window, allowing you to create smooth, efficient animations. It's primarily used for animations and visual updates, making it an essential tool for improving performance when you're animating elements on the web. ```javascript const element = document.getElementById("myElement"); function animate() { let currentPosition = parseInt(window.getComputedStyle(element).left, 10); // Move the element 2px per frame currentPosition += 2; element.style.left = currentPosition + "px"; // If the element hasn't moved off-screen, request the next frame if (currentPosition < window.innerWidth) { requestAnimationFrame(animate); } } // Start the animation requestAnimationFrame(animate); ``` **[⬆ Back to Top](#table-of-contents)** 470. ### What is the difference between substring and substr methods? Both `substring` and `substr` are used to extract parts of a string, but there are subtle differences between the substring() and substr() methods in terms of **syntax** and **behavior**. 1. `substring(start, end)` - **Parameters:** - `start`: The index to start extracting (inclusive). - `end`: The index to stop extracting (exclusive). - **Behavior:** - If `start > end`, it **swaps the arguments**. - Negative values are treated as `0`. ```javascript let str = "Hello World"; console.log(str.substring(0, 5)); // "Hello" console.log(str.substring(5, 0)); // "Hello" (swapped) console.log(str.substring(-3, 4)); // "Hell" (negative = 0) ``` 2. `substr(start, length)` _(Deprecated)_ - **Parameters:** - `start`: The index to start extracting. - `length`: The number of characters to extract. - **Behavior:** - If `start` is negative, it counts from the **end** of the string. - If `length` is omitted, it extracts to the end of the string. ```javascript let str = "Hello World"; console.log(str.substr(0, 5)); // "Hello" console.log(str.substr(-5, 3)); // "Wor" (starts from 'W')` ``` **Note:** substr() is considered a legacy feature in ECMAScript, so it is best to avoid using it if possible. **[⬆ Back to Top](#table-of-contents)** 471. ### How to find the number of parameters expected by a function? The function's object has a **length** property which tells you how many formal parameters expected by a function. This is a static value defined by the function, not the number of arguments the function is called with(**arguments.length**). The basic usage of length propery is, ```javascript function multiply(x, y) { return x * y; } function sum(a, b, c) { return a + b + c; } console.log(multiply.length); //2 console.log(sum.length); //3 ``` But there are few important rules which needs to be noted while using length property. 1. **Default values:** Only the parameters which exists before a default value are considered. ```javascript function sum(a, b = 2, c = 3) { return a + b + c; } console.log(sum.length); // 1 ``` 2. **Rest params:** The rest parameters are excluded with in length property. ```javascript function sum(a, b, ...moreArgs) { let total = a + b; for (const arg of moreArgs) { total += arg; } return total; } console.log(sum.length); // 2 ``` 3. **Destructuring patterns:** Each destructuring pattern counted as a single parameter. ```javascript function func([a, b], { x, y }) { console.log(a + b, x, y); } console.log(func.length); // 2 ``` **Note:** The Function constructor is itself a function object and it has a length property of 1. **[⬆ Back to Top](#table-of-contents)** 472. ### What is globalThis, and what is the importance of it? Nowadays JavaScript language is used in a wide variety of environments and each environment has its own object model. Due to this fact, there are different ways(syntax) to access the global object. 1. In web browser, the global object is accessible via `window`, `self`, or `frames`. 2. In Node environment, you have to use `global`. 3. In Web workers, the global object is available through `self`. The `globalThis` property provides a standard way of accessing the global object without writing various code snippet to support multiple environments. For example, the global object retuned from multiple environments as shown below, ```javascript //1. browser environment console.log(globalThis); // => Window {...} //2. node.js environment console.log(globalThis); // => Object [global] {...} //3. web worker environment console.log(globalThis); // => DedicatedWorkerGlobalScope {...} ``` **[⬆ Back to Top](#table-of-contents)** 473. ### What are the array mutation methods? JavaScript array methods can be categorized into two groups: 1. Mutating methods: These are the methods that directly modify the original array. 1. Non-mutating methods: These methods return a new array without altering the original one. There are 9 methods in total that mutate the arrays, 1. **push:** Adds one or more elements to the end of the array and returns the new length. 2. **pop:** Removes the last element from the array and returns that element. 3. **unshift:** Adds one or more elements to the beginning of the array and returns the new length.. 4. **shift:** Removes the first element from the array and returns that element. 5. **splice:** Adds or removes elements from the array at a specific index position. 6. **sort:** Sorts the elements of the array in-place based on a given sorting criteria. 7. **reverse:** Reverses the order of elements in the given array. 8. **fill:** Fills all elements of the array with a specific value. 9. **copyWithIn:** Copies a sequence of elements within the array to a specified target index in the same array. **[⬆ Back to Top](#table-of-contents)** 474. ### What is module scope in JavaScript? Module scope is a feature introduced with ES6 (ES2015) modules that creates a scope specific to a module file, isolating variables and functions declared within it from the global scope and other modules. Variables and functions declared in a module are private by default and can only be accessed by other modules if they are explicitly exported. Key characteristics of module scope: 1. Variables declared in a module are scoped to that module only. 2. Each module has its own top-level scope 3. Variables and functions need to be explicitly exported to be used in other modules 4. The global scope cannot access module variables unless they are explicitly exported and imported 5. Modules are always executed in strict mode ```javascript // moduleA.js // This variable is PRIVATE to moduleA. It's like a tool inside a closed box. const privateVariable = "I am private"; // This variable is PUBLIC because it's exported. Others can use it when they import moduleA. export const publicVariable = "I am public"; // PUBLIC function because it's exported. But it can still access privateVariable inside moduleA. export function publicFunction() { console.log(privateVariable); // ✅ This works because we're inside the same module. return "Hello from publicFunction!"; } // moduleB.js // Importing PUBLIC items from moduleA. import { publicVariable, publicFunction } from "./moduleA.js"; console.log(publicVariable); // ✅ "I am public" - Works because it's exported. console.log(publicFunction()); // ✅ "Hello from publicFunction!" - Works as well. // ❌ This will cause an ERROR because privateVariable was NOT exported from moduleA. // console.log(privateVariable); // ❌ ReferenceError: privateVariable is not defined ``` Common use cases and benefits: - Encapsulation of module-specific code - Prevention of global scope pollution - Better code organization and maintenance - Explicit dependency management - Protection of private implementation details **[⬆ Back to Top](#table-of-contents)** 475. ### What are shadowing and illegal shadowing? Both **shadowing** and **illegal shadowing** refer to how variable names can "hide" or override others within nested scopes. **Shadowing** occurs when a variable declared within a certain scope (like a function or block) has the same name as a variable declared in an outer scope. The inner variable shadows the outer one — meaning, the inner variable takes precedence in its own scope. Let's take an example where the inner `a` inside `func()` shadows the outer variable `a`. ```javascript let a = 10; function func() { let a = 20; // Shadows the outer 'a' console.log(a); // 20 } func(); console.log(a); // 10 ``` **Illegal shadowing** in JavaScript refers to a syntax error that happens when you try to declare a block-scoped variable (`let` or `const`) with the same name as a variable declared using `var` in the same or an overlapping scope. For example, if you declare both block-scoped variable and function scoped variable using the same name inside a function causes an illegal shadowing. ```javascript function test() { var a = 10; let a = 20; // SyntaxError: Identifier 'a' has already been declared } ``` As an another example, if you declare a variable with `let` or `const` in an outer scope, and then try to redeclare it with `var` inside a nested block, JavaScript throws an error — even though `var` is supposed to be function-scoped. Since the var appears in a block, it ends up trying to overwrite the `let` in the outer scope, which causes a conflict. ```javascript let a = 10; { var a = 20; // SyntaxError: Identifier 'a' has already been declared console.log(a); } ``` **[⬆ Back to Top](#table-of-contents)** 476. ### Why is it important to remove event listeners after use? In JavaScript, you need to be mindful of removing event listeners to avoid memory leaks — especially in long-lived apps like single-page applications (SPAs) or when working with frameworks/libraries. Eventhough JavaScript has automatic garbage collection, memory leaks can still happen if: 1. A DOM element is removed, but a listener still references it. 2. A callback (event listener) holds a reference to a large object or closure that can't be cleaned up. 3. Global objects like window, document etc retain listeners indefinitely unless manually removed. So if you add any event listeners to DOM element, it is a good practice to remove it after its usage as shown below, ```javascript const button = document.getElementById("btn"); function handleClick() { console.log("Clicked!"); } button.addEventListener("click", handleClick); // Always remove when done button.removeEventListener("click", handleClick); ``` **[⬆ Back to Top](#table-of-contents)** 477. ### What is structuredClone and how is it used for deep copying objects? In JavaScript, `structuredClone()` is a built-in method used to create a **deep copy** of a value. It safely clones nested objects, arrays, Maps, Sets, Dates, TypedArrays, and even circular references — without sharing references to the original value. This prevents accidental mutations and makes it useful for state management and data processing. For example, the below snippet demonstrates deep cloning of a nested object, ```javascript const originalObject = { name: "Deep Copy Test", nested: { value: 10, list: [1, 2, 3] }, }; const deepCopy = structuredClone(originalObject); // Modify cloned value deepCopy.nested.value = 99; deepCopy.nested.list.push(4); console.log(originalObject.nested.value); // 10 console.log(deepCopy.nested.value); // 99 console.log(originalObject.nested.list); // [1, 2, 3] console.log(deepCopy.nested.list); // [1, 2, 3, 4] **[⬆ Back to Top](#table-of-contents)** 478. ### What is the difference between const and Object.freeze The main difference is that `const` applies to **variables** (bindings), while `Object.freeze()` applies to **values** (objects). 1. **`const`**: Prevents the reassignment of a variable identifier. It ensures that the variable name always points to the same memory reference. However, if the variable holds an object or array, the *contents* of that object can still be modified. 2. **`Object.freeze()`**: Prevents the modification of an object's properties. It makes the object immutable (you cannot add, remove, or change properties), but it does not affect the variable assignment itself (unless the variable is also declared with `const`). **Example:** ```javascript // Case 1: Using const (Reassignment prevented, Mutation allowed) const person = { name: "John" }; person.name = "Doe"; // ✅ Allowed: The object is mutable console.log(person.name); // "Doe" // person = { name: "Jane" }; // ❌ Error: Assignment to constant variable // Case 2: Using Object.freeze (Reassignment allowed, Mutation prevented) let profile = { name: "John" }; Object.freeze(profile); profile.name = "Doe"; // ❌ Ignored (or throws TypeError in strict mode) console.log(profile.name); // "John" profile = { name: "Jane" }; // ✅ Allowed: 'profile' is declared with 'let' console.log(profile.name); // "Jane" **[⬆ Back to Top](#table-of-contents)** <!-- QUESTIONS_END --> ### Coding Exercise #### 1. What is the output of below code ```javascript var car = new Vehicle("Honda", "white", "2010", "UK"); console.log(car); function Vehicle(model, color, year, country) { this.model = model; this.color = color; this.year = year; this.country = country; } ``` - 1: Undefined - 2: ReferenceError - 3: null - 4: {model: "Honda", color: "white", year: "2010", country: "UK"} <details><summary><b>Answer</b></summary> <p> ##### Answer: 4 The function declarations are hoisted similar to any variables. So the placement for `Vehicle` function declaration doesn't make any difference. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 2. What is the output of below code ```javascript function foo() { let x = (y = 0); x++; y++; return x; } console.log(foo(), typeof x, typeof y); ``` - 1: 1, undefined and undefined - 2: ReferenceError: X is not defined - 3: 1, undefined and number - 4: 1, number and number <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 Of course the return value of `foo()` is 1 due to the increment operator. But the statement `let x = y = 0` declares a local variable x. Whereas y declared as a global variable accidentally. This statement is equivalent to, ```javascript let x; window.y = 0; x = window.y; ``` Since the block scoped variable x is undefined outside of the function, the type will be undefined too. Whereas the global variable `y` is available outside the function, the value is 0 and type is number. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 3. What is the output of below code ```javascript function main() { console.log("A"); setTimeout(function print() { console.log("B"); }, 0); console.log("C"); } main(); ``` - 1: A, B and C - 2: B, A and C - 3: A and C - 4: A, C and B <details><summary><b>Answer</b></summary> <p> ##### 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 `setTimeout` 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 `setTimeout` moved from Browser API to message queue. 6. The `main` 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 4. What is the output of below equality check ```javascript console.log(0.1 + 0.2 === 0.3); ``` - 1: false - 2: true <details><summary><b>Answer</b></summary> <p> ##### 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/](https://0.30000000000000004.com/) </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 5. What is the output of below code ```javascript var y = 1; if (function f() {}) { y += typeof f; } console.log(y); ``` - 1: 1function - 2: 1object - 3: ReferenceError - 4: 1undefined <details><summary><b>Answer</b></summary> <p> ##### 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 ```javascript var y = 1; if ("foo") { y += typeof f; } console.log(y); ``` **Note:** It returns 1object for MS Edge browser </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 6. What is the output of below code ```javascript function foo() { return; { message: "Hello World"; } } console.log(foo()); ``` - 1: Hello World - 2: Object {message: "Hello World"} - 3: Undefined - 4: SyntaxError <details><summary><b>Answer</b></summary> <p> ##### 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. ```javascript function foo() { return { message: "Hello World", }; } console.log(foo()); // {message: "Hello World"} ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 7. What is the output of below code ```javascript var myChars = ["a", "b", "c", "d"]; delete myChars[0]; console.log(myChars); console.log(myChars[0]); console.log(myChars.length); ``` - 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 <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 The `delete` 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 `empty` instead of `undefined` to make the difference a bit clearer. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 8. What is the output of below code in latest Chrome ```javascript var array1 = new Array(3); console.log(array1); var array2 = []; array2[2] = 100; console.log(array2); var array3 = [, , ,]; console.log(array3); ``` - 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], [] <details><summary><b>Answer</b></summary> <p> ##### Answer: 2 The latest chrome versions display `sparse array`(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 `n empty slots` notation. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 9. What is the output of below code ```javascript const obj = { prop1: function () { return 0; }, prop2() { return 1; }, ["prop" + 3]() { return 2; }, }; console.log(obj.prop1()); console.log(obj.prop2()); console.log(obj.prop3()); ``` - 1: 0, 1, 2 - 2: 0, { return 1 }, 2 - 3: 0, { return 1 }, { return 2 } - 4: 0, 1, undefined <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 ES6 provides method definitions and property shorthands for objects. So both prop2 and prop3 are treated as regular function values. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 10. What is the output of below code ```javascript console.log(1 < 2 < 3); console.log(3 > 2 > 1); ``` - 1: true, true - 2: true, false - 3: SyntaxError, SyntaxError, - 4: false, false <details><summary><b>Answer</b></summary> <p> ##### 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 `1` 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 `0` during comparison 4. False </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 11. What is the output of below code in non-strict mode ```javascript function printNumbers(first, second, first) { console.log(first, second, first); } printNumbers(1, 2, 3); ``` - 1: 1, 2, 3 - 2: 3, 2, 3 - 3: SyntaxError: Duplicate parameter name not allowed in this context - 4: 1, 2, 1 <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 12. What is the output of below code ```javascript const printNumbersArrow = (first, second, first) => { console.log(first, second, first); }; printNumbersArrow(1, 2, 3); ``` - 1: 1, 2, 3 - 2: 3, 2, 3 - 3: SyntaxError: Duplicate parameter name not allowed in this context - 4: 1, 2, 1 <details><summary><b>Answer</b></summary> <p> ##### 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 `SyntaxError` in the console. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 13. What is the output of below code ```javascript const arrowFunc = () => arguments.length; console.log(arrowFunc(1, 2, 3)); ``` - 1: ReferenceError: arguments is not defined - 2: 3 - 3: undefined - 4: null <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 Arrow functions do not have an `arguments, super, this, or new.target` bindings. So any reference to `arguments` 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 ```javascript const func = function () { return arguments.length; }; console.log(func(1, 2, 3)); ``` But If you still want to use an arrow function then rest operator on arguments provides the expected arguments ```javascript const arrowFunc = (...args) => args.length; console.log(arrowFunc(1, 2, 3)); ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 14. What is the output of below code ```javascript console.log(String.prototype.trimLeft.name === "trimLeft"); console.log(String.prototype.trimLeft.name === "trimStart"); ``` - 1: True, False - 2: False, True <details><summary><b>Answer</b></summary> <p> ##### Answer: 2 In order to be consistent with functions like `String.prototype.padStart`, the standard method name for trimming the whitespaces is considered as `trimStart`. 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' </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 15. What is the output of below code ```javascript console.log(Math.max()); ``` - 1: undefined - 2: Infinity - 3: 0 - 4: -Infinity <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 16. What is the output of below code ```javascript console.log(10 == [10]); console.log(10 == [[[[[[[10]]]]]]]); ``` - 1: True, True - 2: True, False - 3: False, False - 4: False, True <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 As per the comparison algorithm in the ECMAScript specification(ECMA-262), the above expression converted into JS as below ```javascript 10 === Number([10].valueOf().toString()); // 10 ``` So it doesn't matter about number brackets([]) around the number, it is always converted to a number in the expression. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 17. What is the output of below code ```javascript console.log(10 + "10"); console.log(10 - "10"); ``` - 1: 20, 0 - 2: 1010, 0 - 3: 1010, 10-10 - 4: NaN, NaN <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 18. What is the output of below code ```javascript console.log([0] == false); if ([0]) { console.log("I'm True"); } else { console.log("I'm False"); } ``` - 1: True, I'm True - 2: True, I'm False - 3: False, I'm True - 4: False, I'm False <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 In comparison operators, the expression `[0]` converted to Number([0].valueOf().toString()) which is resolved to false. Whereas `[0]` just becomes a truthy value without any conversion because there is no comparison operator. </p> </details> #### 19. What is the output of below code ```javascript console.log([1, 2] + [3, 4]); ``` - 1: [1,2,3,4] - 2: [1,2][3,4] - 3: SyntaxError - 4: 1,23,4 <details><summary><b>Answer</b></summary> <p> ##### Answer: 4 The + operator is not meant or defined for arrays. So it converts arrays into strings and concatenates them. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 20. What is the output of below code ```javascript const numbers = new Set([1, 1, 2, 3, 4]); console.log(numbers); const browser = new Set("Firefox"); console.log(browser); ``` - 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"} <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 Since `Set` 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 21. What is the output of below code ```javascript console.log(NaN === NaN); ``` - 1: True - 2: False <details><summary><b>Answer</b></summary> <p> ##### Answer: 2 JavaScript follows IEEE 754 spec standards. As per this spec, NaNs are never equal for floating-point numbers. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 22. What is the output of below code ```javascript let numbers = [1, 2, 3, 4, NaN]; console.log(numbers.indexOf(NaN)); ``` - 1: 4 - 2: NaN - 3: SyntaxError - 4: -1 <details><summary><b>Answer</b></summary> <p> ##### Answer: 4 The `indexOf` uses strict equality operator(===) internally and `NaN === NaN` evaluates to false. Since indexOf won't be able to find NaN inside an array, it returns -1 always. But you can use `Array.prototype.findIndex` method to find out the index of NaN in an array or You can use `Array.prototype.includes` to check if NaN is present in an array or not. ```javascript let numbers = [1, 2, 3, 4, NaN]; console.log(numbers.findIndex(Number.isNaN)); // 4 console.log(numbers.includes(NaN)); // true ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 23. What is the output of below code ```javascript let [a, ...b, c] = [1, 2, 3, 4, 5]; console.log(a, b, c); ``` - 1: 1, [2, 3, 4, 5] - 2: 1, {2, 3, 4, 5} - 3: SyntaxError - 4: 1, [2, 3, 4] <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 When using rest parameters, trailing commas are not allowed and will throw a SyntaxError. If you remove the trailing comma and last element then it displays 1st answer ```javascript let [a, ...b] = [1, 2, 3, 4, 5]; console.log(a, b); // 1, [2, 3, 4, 5] ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 25. What is the output of below code ```javascript async function func() { return 10; } console.log(func()); ``` - 1: Promise {\<fulfilled\>: 10} - 2: 10 - 3: SyntaxError - 4: Promise {\<rejected\>: 10} <details><summary><b>Answer</b></summary> <p> ##### 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, ```javascript function func() { return Promise.resolve(10); } ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 26. What is the output of below code ```javascript async function func() { await 10; } console.log(func()); ``` - 1: Promise {\<fulfilled\>: 10} - 2: 10 - 3: SyntaxError - 4: Promise {\<resolved\>: undefined} <details><summary><b>Answer</b></summary> <p> ##### 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 `.then` callback. In this case, there is no return expression at the end of the function. Hence, the default return value of `undefined` is returned as the resolution of the promise. The above async function is equivalent to below expression, ```javascript function func() { return Promise.resolve(10).then(() => undefined); } ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 27. What is the output of below code ```javascript function delay() { return new Promise(resolve => setTimeout(resolve, 2000)); } async function delayedLog(item) { await delay(); console.log(item); } async function processArray(array) { array.forEach(item => { await delayedLog(item); }) } processArray([1, 2, 3, 4]); ``` - 1: SyntaxError - 2: 1, 2, 3, 4 - 3: 4, 4, 4, 4 - 4: 4, 3, 2, 1 <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 Even though “processArray” is an async function, the anonymous function that we use for `forEach` is synchronous. If you use await inside a synchronous function then it throws a syntax error. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 28. What is the output of below code ```javascript function delay() { return new Promise((resolve) => setTimeout(resolve, 2000)); } async function delayedLog(item) { await delay(); console.log(item); } async function process(array) { array.forEach(async (item) => { await delayedLog(item); }); console.log("Process completed!"); } process([1, 2, 3, 5]); ``` - 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 <details><summary><b>Answer</b></summary> <p> ##### 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, ```javascript async function processArray(array) { for (const item of array) { await delayedLog(item); } console.log("Process completed!"); } ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 29. What is the output of below code ```javascript var set = new Set(); set.add("+0").add("-0").add(NaN).add(undefined).add(NaN); console.log(set); ``` - 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} <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 Set has few exceptions from equality check, 1. All NaN values are equal 2. Both +0 and -0 considered as different values </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 30. What is the output of below code ```javascript const sym1 = Symbol("one"); const sym2 = Symbol("one"); const sym3 = Symbol.for("two"); const sym4 = Symbol.for("two"); console.log(sym1 === sym2, sym3 === sym4); ``` - 1: true, true - 2: true, false - 3: false, true - 4: false, false <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 Symbol follows below conventions, 1. Every symbol value returned from Symbol() is unique irrespective of the optional string. 2. `Symbol.for()` 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 31. What is the output of below code ```javascript const sym1 = new Symbol("one"); console.log(sym1); ``` - 1: SyntaxError - 2: one - 3: Symbol('one') - 4: Symbol <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 `Symbol` 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 </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 32. What is the output of below code ```javascript let myNumber = 100; let myString = "100"; if (!typeof myNumber === "string") { console.log("It is not a string!"); } else { console.log("It is a string!"); } if (!typeof myString === "number") { console.log("It is not a number!"); } else { console.log("It is a number!"); } ``` - 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! <details><summary><b>Answer</b></summary> <p> ##### Answer: 4 The return value of `typeof myNumber` or `typeof myString` is always a truthy value (either "number" or "string"). The ! operator operates on either `typeof myNumber` or `typeof myString`, converting them to boolean values. Since the value of both `!typeof myNumber` and `!typeof myString` 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: ``` if (!(typeof myNumber === "string")) ``` Or simply use the inequality operator: ``` if (typeof myNumber !== "string") ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 33. What is the output of below code ```javascript console.log( JSON.stringify({ myArray: ["one", undefined, function () {}, Symbol("")] }) ); console.log( JSON.stringify({ [Symbol.for("one")]: "one" }, [Symbol.for("one")]) ); ``` - 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('')]}, {} <details><summary><b>Answer</b></summary> <p> ##### 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({}). </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 34. What is the output of below code ```javascript class A { constructor() { console.log(new.target.name); } } class B extends A { constructor() { super(); } } new A(); new B(); ``` - 1: A, A - 2: A, B <details><summary><b>Answer</b></summary> <p> ##### Answer: 2 Using constructors, `new.target` 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 35. What is the output of below code ```javascript const [x, ...y, z] = [1, 2, 3, 4]; console.log(x, y, z); ``` - 1: 1, [2, 3], 4 - 2: 1, [2, 3, 4], undefined - 3: 1, [2], 3 - 4: SyntaxError <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 36. What is the output of below code ```javascript const { a: x = 10, b: y = 20 } = { a: 30 }; console.log(x); console.log(y); ``` - 1: 30, 20 - 2: 10, 20 - 3: 10, undefined - 4: 30, undefined <details><summary><b>Answer</b></summary> <p> ##### 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 `undefined` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 37. What is the output of below code ```javascript function area({ length = 10, width = 20 }) { console.log(length * width); } area(); ``` - 1: 200 - 2: Error - 3: undefined - 4: 0 <details><summary><b>Answer</b></summary> <p> ##### 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 `Error: Cannot read property 'length' of undefined` as mentioned above. You can avoid the error with either of the below changes, 1. **Pass at least an empty object:** ```javascript function area({ length = 10, width = 20 }) { console.log(length * width); } area({}); ``` 2. **Assign default empty object:** ```javascript function area({ length = 10, width = 20 } = {}) { console.log(length * width); } area(); ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 38. What is the output of below code ```javascript const props = [ { id: 1, name: "John" }, { id: 2, name: "Jack" }, { id: 3, name: "Tom" }, ]; const [, , { name }] = props; console.log(name); ``` - 1: Tom - 2: Error - 3: undefined - 4: John <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 39. What is the output of below code ```javascript function checkType(num = 1) { console.log(typeof num); } checkType(); checkType(undefined); checkType(""); checkType(null); ``` - 1: number, undefined, string, object - 2: undefined, undefined, string, object - 3: number, number, string, object - 4: number, number, number, number <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 40. What is the output of below code ```javascript function add(item, items = []) { items.push(item); return items; } console.log(add("Orange")); console.log(add("Apple")); ``` - 1: ['Orange'], ['Orange', 'Apple'] - 2: ['Orange'], ['Apple'] <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 41. What is the output of below code ```javascript function greet(greeting, name, message = greeting + " " + name) { console.log([greeting, name, message]); } greet("Hello", "John"); greet("Hello", "John", "Good morning!"); ``` - 1: SyntaxError - 2: ['Hello', 'John', 'Hello John'], ['Hello', 'John', 'Good morning!'] <details><summary><b>Answer</b></summary> <p> ##### Answer: 2 Since parameters defined earlier are available to later default parameters, this code snippet doesn't throw any error. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 42. What is the output of below code ```javascript function outer(f = inner()) { function inner() { return "Inner"; } } outer(); ``` - 1: ReferenceError - 2: Inner <details><summary><b>Answer</b></summary> <p> ##### 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, `inner` is not defined). </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 43. What is the output of below code ```javascript function myFun(x, y, ...manyMoreArgs) { console.log(manyMoreArgs); } myFun(1, 2, 3, 4, 5); myFun(1, 2); ``` - 1: [3, 4, 5], undefined - 2: SyntaxError - 3: [3, 4, 5], [] - 4: [3, 4, 5], [undefined] <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 44. What is the output of below code ```javascript const obj = { key: "value" }; const array = [...obj]; console.log(array); ``` - 1: ['key', 'value'] - 2: TypeError - 3: [] - 4: ['key'] <details><summary><b>Answer</b></summary> <p> ##### 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 `map(), reduce(), and assign()`. If you still try to do it, it still throws `TypeError: obj is not iterable`. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 45. What is the output of below code ```javascript function* myGenFunc() { yield 1; yield 2; yield 3; } var myGenObj = new myGenFunc(); console.log(myGenObj.next().value); ``` - 1: 1 - 2: undefined - 3: SyntaxError - 4: TypeError <details><summary><b>Answer</b></summary> <p> ##### 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" </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 46. What is the output of below code ```javascript function* yieldAndReturn() { yield 1; return 2; yield 3; } var myGenObj = yieldAndReturn(); console.log(myGenObj.next()); console.log(myGenObj.next()); console.log(myGenObj.next()); ``` - 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 } <details><summary><b>Answer</b></summary> <p> ##### 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: `{value: undefined, done: true}`. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 47. What is the output of below code ```javascript const myGenerator = (function* () { yield 1; yield 2; yield 3; })(); for (const value of myGenerator) { console.log(value); break; } for (const value of myGenerator) { console.log(value); } ``` - 1: 1,2,3 and 1,2,3 - 2: 1,2,3 and 4,5,6 - 3: 1 and 1 - 4: 1 <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 48. What is the output of below code ```javascript const num = 0o38; console.log(num); ``` - 1: SyntaxError - 2: 38 <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 49. What is the output of below code ```javascript const squareObj = new Square(10); console.log(squareObj.area); class Square { constructor(length) { this.length = length; } get area() { return this.length * this.length; } set area(value) { this.area = value; } } ``` - 1: 100 - 2: ReferenceError <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 50. What is the output of below code ```javascript function Person() {} Person.prototype.walk = function () { return this; }; Person.run = function () { return this; }; let user = new Person(); let walk = user.walk; console.log(walk()); let run = Person.run; console.log(run()); ``` - 1: undefined, undefined - 2: Person, Person - 3: SyntaxError - 4: Window, Window <details><summary><b>Answer</b></summary> <p> ##### 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 `this` value is undefined so both methods return window objects. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 51. What is the output of below code ```javascript class Vehicle { constructor(name) { this.name = name; } start() { console.log(`${this.name} vehicle started`); } } class Car extends Vehicle { start() { console.log(`${this.name} car started`); super.start(); } } const car = new Car("BMW"); console.log(car.start()); ``` - 1: SyntaxError - 2: BMW vehicle started, BMW car started - 3: BMW car started, BMW vehicle started - 4: BMW car started, BMW car started <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 52. What is the output of below code ```javascript const USER = { age: 30 }; USER.age = 25; console.log(USER.age); ``` - 1: 30 - 2: 25 - 3: Uncaught TypeError - 4: SyntaxError <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 53. What is the output of below code ```javascript console.log("🙂" === "🙂"); ``` - 1: false - 2: true <details><summary><b>Answer</b></summary> <p> ##### Answer: 2 Emojis are unicodes and the unicode for smile symbol is "U+1F642". The unicode comparison of same emojies is equivalent to string comparison. Hence, the output is always true. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 54. What is the output of below code? ```javascript console.log(typeof typeof typeof true); ``` - 1: string - 2: boolean - 3: NaN - 4: number <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 55. What is the output of below code? ```javascript let zero = new Number(0); if (zero) { console.log("If"); } else { console.log("Else"); } ``` - 1: If - 2: Else - 3: NaN - 4: SyntaxError <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 55. What is the output of below code in non strict mode? ```javascript let msg = "Good morning!!"; msg.name = "John"; console.log(msg.name); ``` - 1: "" - 2: Error - 3: John - 4: Undefined <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 56. What is the output of below code? ```javascript let count = 10; (function innerFunc() { if (count === 10) { let count = 11; console.log(count); } console.log(count); })(); ``` - 1: 11, 10 - 2: 11, 11 - 3: 10, 11 - 4: 10, 10 <details><summary><b>Answer</b></summary> <p> ##### 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 `count` which overwrites the ourter `count` variable. So the first console.log displays value 11. Whereas the second console.log logs 10 by capturing the count variable from outerscope. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 57. What is the output of below code ? - 1: console.log(true && 'hi'); - 2: console.log(true && 'hi' && 1); - 3: console.log(true && '' && 0); <details><summary><b>Answer</b></summary> - 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 </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 58. What is the output of below code ? ```javascript let arr = [1, 2, 3]; let str = "1,2,3"; console.log(arr == str); ``` - 1: false - 2: Error - 3: true <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 Arrays have their own implementation of `toString` 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 59. What is the output of below code? ```javascript getMessage(); var getMessage = () => { console.log("Good morning"); }; ``` - 1: Good morning - 2: getMessage is not a function - 3: getMessage is not defined - 4: Undefined <details><summary><b>Answer</b></summary> <p> ##### 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 variable due to it's variable declaration or assignment. So the variables will have undefined value in memory phase and throws an error '`getMessage` is not a function' at the code execution phase. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 60. What is the output of below code? ```javascript let quickPromise = Promise.resolve(); quickPromise.then(() => console.log("promise finished")); console.log("program finished"); ``` - 1: program finished - 2: Cannot predict the order - 3: program finished, promise finished - 4: promise finished, program finished <details><summary><b>Answer</b></summary> <p> ##### 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" </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 61. What is the output of below code? ```javascript console .log("First line") [("a", "b", "c")].forEach((element) => console.log(element)); console.log("Third line"); ``` - 1: `First line`, then print `a, b, c` in a new line, and finally print `Third line` as next line - 2: `First line`, then print `a, b, c` in a first line, and print `Third line` as next line - 3: Missing semi-colon error - 4: Cannot read properties of undefined <details><summary><b>Answer</b></summary> <p> ##### 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 `Automatic Semicolon Insertion` 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. ```javascript console .log("First line") [("a", "b", "c")].forEach((element) => console.log(element)); ``` Hence, there will be **cannot read properties of undefined** error while applying the array square bracket on log function. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 62. Write a function that returns a random HEX color <details><summary><b>Solution 1 (Iterative generation)</b></summary> <p> ```javascript const HEX_ALPHABET = [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f", ]; const HEX_PREFIX = "#"; const HEX_LENGTH = 6; function generateRandomHex() { let randomHex = ""; for (let i = 0; i < HEX_LENGTH; i++) { const randomIndex = Math.floor(Math.random() * HEX_ALPHABET.length); randomHex += HEX_ALPHABET[randomIndex]; } return HEX_PREFIX + randomHex; } ``` </p> </details> <details><summary><b>Solution 2 (One-liner)</b></summary> <p> ```javascript const HEX_PREFIX = "#"; const HEX_RADIX = 16; const HEX_LENGTH = 6; function generateRandomHex() { return ( HEX_PREFIX + Math.floor(Math.random() * 0xffffff) .toString(HEX_RADIX) .padStart(HEX_LENGTH, "0") ); } ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 63. What is the output of below code? ```javascript var of = ["of"]; for (var of of of) { console.log(of); } ``` - 1: of - 2: SyntaxError: Unexpected token of - 3: SyntaxError: Identifier 'of' has already been declared - 4: ReferenceError: of is not defined <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 In JavaScript, `of` is not considered as a reserved keyword. So the variable declaration with `of` is accepted and prints the array value `of` using for..of loop. But if you use reserved keyword such as `in` then there will be a syntax error saying `SyntaxError: Unexpected token in`, ```javascript var in = ['in']; for(var in in in) { console.log(in[in]); } ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 64. What is the output of below code? ```javascript const numbers = [11, 25, 31, 23, 33, 18, 200]; numbers.sort(); console.log(numbers); ``` - 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 <details><summary><b>Answer</b></summary> <p> ##### 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. ```javascript const numbers = [11, 25, 31, 23, 33, 18, 200]; numbers.sort((a, b) => a - b); console.log(numbers); ``` **Note:** Sort() method changes the original array. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 65. What is the output order of below code? ```javascript setTimeout(() => { console.log("1"); }, 0); Promise.resolve("hello").then(() => console.log("2")); console.log("3"); ``` - 1: 1, 2, 3 - 2: 1, 3, 2 - 3: 3, 1, 2 - 4: 3, 2, 1 <details><summary><b>Answer</b></summary> <p> ##### Answer: 4 When the JavaScript engine parses the above code, the first two statements are asynchronous which will be executed later and third statement is synchronous statement which will be moved to callstack, executed and prints the number 3 in the console. Next, Promise is native in ES6 and it will be moved to Job queue which has high priority than callback queue in the execution order. At last, since setTimeout is part of WebAPI the callback function moved to callback queue and executed. Hence, you will see number 2 printed first followed by 1. </details> --- **[⬆ Back to Top](#table-of-contents)** #### 66. What is the output of below code? ```javascript console.log(name); console.log(message()); var name = "John"; (function message() { console.log("Hello John: Welcome"); }); ``` - 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 <details><summary><b>Answer</b></summary> <p> ##### 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, ```javascript console.log(name); console.log(message()); var name = 'John'; var message = function () { console.log('Hello John: Welcome'); }); ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 67. What is the output of below code? ```javascript message(); function message() { console.log("Hello"); } function message() { console.log("Bye"); } ``` - 1: Reference error: message is not defined - 2: Hello - 3: Bye - 4: Compile time error <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 68. What is the output of below code? ```javascript var currentCity = "NewYork"; var changeCurrentCity = function () { console.log("Current City:", currentCity); var currentCity = "Singapore"; console.log("Current City:", currentCity); }; changeCurrentCity(); ``` - 1: NewYork, Singapore - 2: NewYork, NewYork - 3: undefined, Singapore - 4: Singapore, Singapore <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 Due to hositing feature, the variables declared with `var` will have `undefined` value in the creation phase so the outer variable `currentCity` will get same `undefined` value. But after few lines of code JavaScript engine found a new function call(`changeCurrentCity()`) to update the current city with `var` re-declaration. Since each function call will create a new execution context, the same variable will have `undefined` value before the declaration and new value(`Singapore`) after the declaration. Hence, the value `undefined` print first followed by new value `Singapore` in the execution phase. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 69. What is the output of below code in an order? ```javascript function second() { var message; console.log(message); } function first() { var message = "first"; second(); console.log(message); } var message = "default"; first(); console.log(message); ``` - 1: undefined, first, default - 2: default, default, default - 3: first, first, default - 4: undefined, undefined, undefined <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 70. What is the output of below code? ```javascript var expressionOne = function functionOne() { console.log("functionOne"); }; functionOne(); ``` - 1: functionOne is not defined - 2: functionOne - 3: console.log("functionOne") - 4: undefined <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 The function call `functionOne` 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 `functionOne is not defined`. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 71. What is the output of below code? ```javascript const user = { name: "John", eat() { console.log(this); var eatFruit = function () { console.log(this); }; eatFruit(); }, }; user.eat(); ``` - 1: {name: "John", eat: f}, {name: "John", eat: f} - 2: Window {...}, Window {...} - 3: {name: "John", eat: f}, undefined - 4: {name: "John", eat: f}, Window {...} <details><summary><b>Answer</b></summary> <p> ##### Answer: 4 `this` keyword is dynamic scoped but not lexically scoped . In other words, it doesn't matter where `this` has been written but how it has been invoked really matter. In the above code snippet, the `user` object invokes `eat` function so `this` keyword refers to `user` object but `eatFruit` has been invoked by `eat` function and `this` will have default `Window` object. The above pit fall fixed by three ways, 1. In ES6, the arrow function will make `this` keyword as lexically scoped. Since the surrounding object of `this` object is `user` object, the `eatFruit` function will contain `user` object for `this` object. ```javascript const user = { name: "John", eat() { console.log(this); var eatFruit = () => { console.log(this); }; eatFruit(); }, }; user.eat(); ``` The next two solutions have been used before ES6 introduced. 2. It is possible create a reference of `this` into a separate variable and use that new variable inplace of `this` keyword inside `eatFruit` function. This is a common practice in jQuery and AngularJS before ES6 introduced. ```javascript const user = { name: "John", eat() { console.log(this); var self = this; var eatFruit = () => { console.log(self); }; eatFruit(); }, }; user.eat(); ``` 3. The `eatFruit` function can bind explicitly with `this` keyword where it refers `Window` object. ```javascript const user = { name: "John", eat() { console.log(this); var eatFruit = function () { console.log(this); }; return eatFruit.bind(this); }, }; user.eat()(); ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 72. What is the output of below code? ```javascript let message = "Hello World!"; message[0] = "J"; console.log(message); let name = "John"; name = name + " Smith"; console.log(name); ``` - 1: Jello World!, John Smith - 2: Jello World!, John - 3: Hello World!, John Smith - 4: Hello World!, John <details><summary><b>Answer</b></summary> <p> ##### 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 `Hello World!`. 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 `John Smith` value and the old memory block value(`John`) will be garbage collected. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 73. What is the output of below code? ```javascript let user1 = { name: "Jacob", age: 28, }; let user2 = { name: "Jacob", age: 28, }; console.log(user1 === user2); ``` - 1: True - 2: False - 3: Compile time error <details><summary><b>Answer</b></summary> <p> ##### 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 74. What is the output of below code? ```javascript function greeting() { setTimeout(function () { console.log(message); }, 5000); const message = "Hello, Good morning"; } greeting(); ``` - 1: Undefined - 2: Reference error: - 3: Hello, Good morning - 4: null <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 The variable `message` 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. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 75. What is the output of below code? ```javascript const a = new Number(10); const b = 10; console.log(a === b); ``` - 1: False - 2: True <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 Eventhough both variables `a` and `b` refer a number value, the first declaration is based on constructor function and the type of the variable is going to be `object` type. Whereas the second declaration is primitive assignment with a number and the type is `number` type. Hence, the equality operator `===` will output `false` value. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 76. What is the type of below function? ```javascript function add(a, b) { console.log("The input arguments are: ", a, b); return a + b; } ``` - 1: Pure function - 2: Impure function <details><summary><b>Answer</b></summary> <p> ##### Answer: 2 Eventhough the above function returns the same result for the same arguments(input) that are passed in the function, the `console.log()` statement causes a function to have side effects because it affects the state of an external code. i.e, the `console` object's state and depends on it to perform the job. Hence, the above function considered as impure function. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 77. What is the output of below code? ```javascript const promiseOne = new Promise((resolve, reject) => setTimeout(resolve, 4000)); const promiseTwo = new Promise((resolve, reject) => setTimeout(reject, 4000)); Promise.all([promiseOne, promiseTwo]).then((data) => console.log(data)); ``` - 1: [{status: "fulfilled", value: undefined}, {status: "rejected", reason: undefined}] - 2: [{status: "fulfilled", value: undefined}, Uncaught(in promise)] - 3: Uncaught (in promise) - 4: [Uncaught(in promise), Uncaught(in promise)] <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 The above promises settled at the same time but one of them resolved and other one rejected. When you use `.all` method on these promises, the result will be short circuted by throwing an error due to rejection in second promise. But If you use `.allSettled` method then result of both the promises will be returned irrespective of resolved or rejected promise status without throwing any error. ```javascript Promise.allSettled([promiseOne, promiseTwo]).then((data) => console.log(data)); ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 78. What is the output of below code? ```javascript try { setTimeout(() => { console.log("try block"); throw new Error(`An exception is thrown`); }, 1000); } catch (err) { console.log("Error: ", err); } ``` - 1: try block, Error: An exception is thrown - 2: Error: An exception is thrown - 3: try block, Uncaught Error: Exception is thrown - 4: Uncaught Error: Exception is thrown <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 If you put `setTimeout` and `setInterval` methods inside the try clause and an exception is thrown, the catch clause will not catch any of them. This is because the try...catch statement works synchronously, and the function in the above code is executed asynchronously after a certain period of time. Hence, you will see runtime exception without catching the error. To resolve this issue, you have to put the try...catch block inside the function as below, ```javascript setTimeout(() => { try { console.log("try block"); throw new Error(`An exception is thrown`); } catch (err) { console.log("Error: ", err); } }, 1000); ``` You can use `.catch()` function in promises to avoid these issues with asynchronous code. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 79. What is the output of below code? ```javascript let a = 10; if (true) { let a = 20; console.log(a, "inside"); } console.log(a, "outside"); ``` - 1: 20, "inside" and 20, "outside" - 2: 20, "inside" and 10, "outside" - 3: 10, "inside" and 10, "outside" - 4: 10, "inside" and 20, "outside" <details><summary><b>Answer</b></summary> <p> ##### Answer: 2 The variable "a" declared inside "if" has block scope and does not affect the value of the outer "a" variable. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 80. What is the output of below code? ```javascript let arr = [1, 2, 3, 4, 5, -6, 7]; arr.length = 0; console.log(arr); ``` - 1: 0 - 2: Undefined - 3: null - 4: [ ] <details><summary><b>Answer</b></summary> <p> ##### Answer: 4 The length of the array 'arr' has been set to 0, so the array becomes empty. </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 81. How do you verify two strings are anagrams or not? An anagram is a word or phrase formed by rearranging all the letters of a different word or phrase exactly once. For example, the anagrams of "eat" word are "tea" and "ate". You can split each word into characters, followed by sort action and later join them back. After that you can compare those two words to verify whether those two words are anagrams or not. ```javascript function verifyAnagrams(word1, word2) { return word1.split("").sort().join("") === word2.split("").sort().join(""); } console.log(verifyAnagrams("eat", "ate")); ``` **[⬆ Back to Top](#table-of-contents)** #### 82. What is the output of below code? ```javascript printHello(); printMessage(); function printHello() { console.log("Hello"); function printMessage() { console.log("Good day"); } } ``` - 1: Hello, Good day - 2: Reference Error: printHello is not defined, Reference Error: printMessage is not defined - 3: Reference Error: printHello is not defined, Good day - 4: Hello, Reference Error: printMessage is not defined <details><summary><b>Answer</b></summary> <p> ##### Answer: 4 The function `printHello` is hoisted to the top of the global scope and prints "Hello" to the console. Even `printMessage` function is hoisted, but it is lifted to the local scope(in "printHello") it was declared in. That is the reason you will endup with reference error for second function call. But if the second function is invoked in the first function itself, there won't be any reference error. ```javascript printHello(); function printHello() { printMessage(); console.log("Hello"); function printMessage() { console.log("Good day"); } } ``` </p> </details> --- **[⬆ Back to Top](#table-of-contents)** #### 83. What is the time taken to execute below timeout callback? ```javascript console.log("Start code"); setTimeout(function () { console.log("Callback code"); }, 5000); console.log("After callback"); let startTime = new Date().getTime(); let endTime = startTime; while (endTime <= startTime + 10000) { endTime = new Date().getTime(); } console.log("End code"); ``` - 1: > 10 sec - 2: Immediately - 3: < 10 sec - 4: <= 5sec <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 Even though there is a timer of 5 seconds supplied to `setTimeout` callback, it won't get executed until the main thread is free and finished executing the remaining part of the code. In this example, the remaining code(while loop) takes 10seconds to finish it's execution. In the mean time, the callback will be stored in callback queue upon completion of its 5 seconds timer. After 10 seconds, the callback will be moved to callstack because the callstack is empty by poping out global execution context. </p> </details> **[⬆ Back to Top](#table-of-contents)** #### 84. What is the output of below code? ```javascript let arr = ["wöchentlich", "Woche", "wäre", "Wann"]; console.log(arr.sort()); ``` - 1: ['wöchentlich','Woche', 'wäre', 'Wann'] - 2: ['Wann', 'wäre', 'Woche', 'wöchentlich'] - 3: ['Wann', 'Woche', 'wäre', 'wöchentlich'] - 4: ['wäre', 'Wann', 'wöchentlich','Woche'] <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 JavaScript has a native method sort that allows sorting an array of elements in-place. It will treat each element as a string and sort it alphabetically. But if you try to sort an array of strings which has non-ASCII characters, you will receive a strange result. This is because characters with an accent have higher character codes. In this case, the sort order of an array is ['Wann', 'Woche', 'wäre', 'wöchentlich']. If you want to sort an array of string values which has non-ASCII characters in an ascending order, there are two possible options like **localeCompare** and **Intl.Collator** provided by ECMAScript Internationalization API. **localeCompare:** ```javascript let arr = ["wöchentlich", "Woche", "wäre", "Wann"]; console.log(arr.sort((a, b) => a.localeCompare(b))); //['Wann', 'wäre', 'Woche', 'wöchentlich'] ``` **Intl.Collator:** ```javascript let arr = ["wöchentlich", "Woche", "wäre", "Wann"]; console.log(arr.sort(Intl.Collator().compare)); //['Wann', 'wäre', 'Woche', 'wöchentlich'] ``` </p> </details> **[⬆ Back to Top](#table-of-contents)** #### 85. What is the output of below code? ```javascript function func(a, b = 2) { console.log(arguments.length); } func(undefined); func(); ``` - 1: 1, 0 - 2: 0, 0 - 3: 0, 1 - 4: 1, 1 <details><summary><b>Answer</b></summary> <p> ##### Answer: 1 If a function is called with `undefined`, the `undefined` value is treated as a parameter. But if the function is not passed with any parameters, the `arguments` object doesn't include any argument eventhough the function has default function parameter. Hence, the function invocation with `undefined` has one argument and function call without any arguments has 0 arguments. </p> </details> #### 86. What is the output of below code? ```javascript const numbers = [1, 2, 3]; // Count how many numbers are odd let xorAccumulator = numbers.reduce((sum, value) => { return sum + (value % 2); }, 0); // IIFE applying XOR of each element shifted by its index (function(arr) { for (let index = 0; index < arr.length; index++) { xorAccumulator ^= (arr[index] << index); } })(numbers); console.log(xorAccumulator); ``` - 1: 5 - 2: 7 - 3: 11 - 4: 1 <details><summary><b>Answer</b></summary> <p> ##### Answer: 3 This question is really showcasing how JavaScript mixes array reduction with low-level bitwise tricks. The code first uses .reduce() to turn the array into a single value by counting how many elements are odd, then an IIFE immediately kicks in and loops through the array again, shifting each number left by its index and XOR-ing it into the accumulator. The whole vibe is about understanding how reduction works for summarizing arrays and how bit shifting plus XOR can transform values in a way that feels mathematical rather than typical JS. </p> </details> **[⬆ Back to Top](#table-of-contents)** ## 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! Good luck with your interview 😊 ---

Education & Learning Documentation
27.5K Github Stars
vuejs-interview-questions
Open Source

vuejs-interview-questions

# vuejs-interview-questions List of 300 VueJS Interview Questions > Click :star:if you like the project. Pull Requests are highly appreciated. Follow me [@SudheerJonna](https://twitter.com/SudheerJonna) for technical updates. --- <div> <p align="center"> <a href=https://zerotomastery.io/?utm_source=github&utm_medium=sponsor&utm_campaign=vue-interview-questions> <img src="./images/collab/ztm.gif" alt="ZTM Logo" width="100%" /> </a> </p> </div> > I recommend this [Vue.js course](https://zerotomastery.io/courses/learn-vue-js/?utm_source=github&utm_medium=sponsor&utm_campaign=vue-interview-questions) to become top 10% at Vue and [this coding interview bootcamp](https://zerotomastery.io/courses/learn-data-structures-and-algorithms/?utm_source=github&utm_medium=sponsor&utm_campaign=vue-interview-questions) to ace your coding interview and actually get hired. --- ### Table of Contents ------------------------------------------------------------------- | No. | Questions | |-----|----------------------------------------------------------------------------------------------------------------------------------------------------------------| | 1 | [What is VueJS](#what-is-vuejs) | | 2 | [What are the major features of VueJS](#what-are-the-major-features-of-vuejs) | | 3 | [What are the lifecycle methods of VueJS](#what-are-the-lifecycle-methods-of-vuejs) | | 4 | [What are the different API styles available](#what-are-the-different-api-styles-available) | | 5 | [What are the conditional directives](#what-are-the-conditional-directives) | | 6 | [What is the difference between v-show and v-if directives](#what-is-the-difference-between-v-show-and-v-if-directives) | | 7 | [What is the purpose of v-for directive?](#what-is-the-purpose-of-v-for-directive) | | 8 | [What is a vue instance?](#what-is-vue-instance) | | 9 | [How do you achieve a conditional group of elements?](#how-do-you-achieve-conditional-group-of-elements) | | 10 | [How do you reuse elements with a key attribute?](#how-do-you-reuse-elements-with-key-attribute) | | 11 | [Why should you not use if and for directives together on the same element?](#why-should-not-use-if-and-for-directives-together-on-the-same-element) | | 12 | [Why do you need to use a key attribute on for directive?](#why-do-you-need-to-use-key-attribute-on-for-directive) | | 13 | [What are the array detection mutation methods?](#what-are-the-array-detection-mutation-methods) | | 14 | [What are the array detection non mutation methods?](#what-are-the-array-detection-non-mutation-methods) | | 15 | [What are the caveats of array changes detection?](#what-are-the-caveats-of-array-changes-detection) | | 16 | [What are the caveats of object changes detection?](#what-are-the-caveats-of-object-changes-detection) | | 17 | [How do you use for directive with a range?](#how-do-you-use-v-for-directive-with-a-range) | | 18 | [How do you use for directive on template?](#how-do-you-use-v-for-directive-on-template) | | 19 | [How do you use event handlers?](#how-do-you-use-event-handlers) | | 20 | [What are the event modifiers provided by vue?](#what-are-the-event-modifiers-provided-by-vue) | | 21 | [What are key modifiers?](#what-are-key-modifiers) | | 22 | [How do you define custom key modifier aliases?](#how-do-you-define-custom-key-modifier-aliases) | | 23 | [What are the supported System Modifier Keys?](#what-are-the-supported-system-modifier-keys) | | 24 | [What are the supported Mouse Button Modifiers?](#what-are-the-supported-mouse-button-modifiers) | | 25 | [How do you implement two way binding?](#how-do-you-implement-two-way-binding) | | 26 | [What are the supported modifiers on model?](#what-are-the-supported-modifiers-on-model) | | 27 | [What are components and give an example?](#what-are-components-and-give-an-example) | | 28 | [What are props?](#what-are-props) | | 29 | [When component needs a single root element?](#when-component-needs-a-single-root-element) | | 30 | [How do you communicate from child to parent using events?](#how-do-you-communicate-from-child-to-parent-using-events) | | 31 | [How do you implement model on custom input components?](#how-do-you-implement-model-on-custom-input-components) | | 32 | [What are slots?](#what-are-slots) | | 33 | [What is global registration in components?](#what-is-global-registration-in-components) | | 34 | [Why do you need local registration?](#why-do-you-need-local-registration) | | 35 | [What is the difference between local and global registration in module system?](#what-is-the-difference-between-local-and-global-registration-in-module-system) | | 36 | [What are possible prop types?](#what-are-possible-prop-types) | | 37 | [What is the data flow followed by props?](#what-is-the-data-flow-followed-by-props) | | 38 | [What are non prop attributes?](#what-are-non-prop-attributes) | | 39 | [Describe about validations available for props?](#describe-about-validations-available-for-props) | | 40 | [How do you customize model directive for a component?](#how-do-you-customize-model-directive-for-a-component) | | 41 | [What are the possible ways to provide transitions?](#What-are-the-possible-ways-to-provide-transitions) | | 42 | [What is vue router and their features?](#what-is-vue-router-and-their-features) | | 43 | [What are the steps to use vue router and give an example?](#what-are-the-steps-to-use-vue-router-and-give-an-example) | | 44 | [What is dynamic route matching?](#what-is-dynamic-route-matching) | | 45 | [How to make router param changes as reactive?](#how-to-make-router-param-changes-as-reactive) | | 46 | [What is route matching priority?](#what-is-route-matching-priority) | | 47 | [What are nested routes?](#what-are-nested-routes) | | 48 | [What are single file components?](#what-are-single-file-components) | | 49 | [Is Single File Components violating separation of concerns?](#is-single-file-components-violating-separation-of-concerns) | | 50 | [What are the problems solved by Single File Components?](#what-are-the-problems-solved-by-single-file-components) | | 51 | [What are filters?](#what-are-filters) | | 52 | [What are the different ways to create filters?](#what-are-the-different-ways-to-create-filters) | | 53 | [How do you chain filters](#how-do-you-chain-filters) | | 54 | [Is it possible to pass parameters for filters?](#is-it-possible-to-pass-parameters-for-filters) | | 55 | [What are plugins and their various services?](#what-are-plugins-and-their-various-services) | | 56 | [ How to create a plugin?](#how-to-create-a-plugin) | | 57 | [How to use a plugin?](#how-to-use-a-plugin) | | 58 | [What are mixins?](#what-are-mixins) | | 59 | [What are global mixins?](#what-are-global-mixins) | | 60 | [How do you use mixins in CLI?](#how-do-you-use-mixins-in-cli) | | 61 | [What are the merging strategies in mixins?](#what-are-the-merging-strategies-in-mixins) | | 62 | [What are custom options merging strategies?](#what-are-custom-options-merging-strategies) | | 63 | [What are custom directives?](#what-are-custom-directives) | | 64 | [How do you register directives locally?](#how-do-you-register-directives-locally) | | 65 | [What are the hook functions provided by directives?](#what-are-the-hook-functions-provided-by-directives) | | 66 | [What are the directive Hook Arguments?](#what-are-the-directive-hook-arguments) | | 67 | [How do you pass multiple values to a directive?](#how-do-you-pass-multiple-values-to-a-directive) | | 68 | [What is function shorthand in directive hooks?](#what-is-function-shorthand-in-directive-hooks) | | 69 | [What is the benefit of render functions over templates?](#what-is-the-benefit-of-render-functions-over-templates) | | 69 | [What is a render function?](#What-is-a-render-function) | | 70 | [Explain the structure of createElement with arguments](#explain-the-structure-of-createelement-with-arguments) | | 71 | [How can you write duplicate virtual nodes in a component?](#how-can-you-write-duplicate-virtual-nodes-in-a-component) | | 72 | [List down the template equivalents in render functions?](#list-down-the-template-equivalents-in-render-functions) | | 73 | [What are functional components?](#what-are-functional-components) | | 74 | [What are the similarities between VueJS and ReactJS?](#what-are-the-similarities-between-vuejs-and-reactjs) | | 75 | [What is the difference between VueJS and ReactJS?](#what-is-the-difference-between-vuejs-and-reactjs) | | 76 | [What are the advantages of VueJS over ReactJS?](#what-are-the-advantages-of-vuejs-over-reactjs) | | 77 | [What are the advantages of ReactJS over VueJS?](#what-are-the-advantages-of-reactjs-over-vuejs) | | 78 | [What are the differences between VueJS and Angular?](#What-are-the-differences-between-vuejs-and-angular) | | 79 | [What are dynamic components?](#what-are-dynamic-components) | | 80 | [What is the purpose of keep alive tag?](#what-is-the-purpose-of-keep-alive-tag) | | 81 | [What are async components?](#what-are-async-components) | | 82 | [What is the structure of async component factory?](#what-is-the-structure-of-async-component-factory) | | 83 | [What are inline templates?](#what-are-inline-templates) | | 84 | [What are X Templates?](#what-are-x-templates) | | 85 | [What are recursive components?](#what-are-recursive-components) | | 86 | [How do you resolve circular dependencies between components?](#how-do-you-resolve-circular-dependencies-between-components) | | 87 | [How do you make sure vue application is CSP complaint?](#how-do-you-make-sure-vue-application-is-csp-complaint) | | 88 | [What is the difference between full and runtime only builds?](#what-is-the-difference-between-full-and-runtime-only-builds) | | 89 | [List down different builds of vuejs?](#list-down-different-builds-of-vuejs) | | 90 | [How do you configure vuejs in webpack?](#how-do-you-configure-vuejs-in-webpack) | | 91 | [What is the purpose of vuejs compiler?](#what-is-the-purpose-of-vuejs-compiler) | | 92 | [What is Dev Tools and its purpose?](#what-is-dev-tools-and-its-purpose) | | 93 | [What is the browser support of VueJS?](#what-is-the-browser-support-of-vuejs) | | 94 | [How do you use various CDNs?](#how-do-you-use-various-cdns?) | | 95 | [How do you force update?](#how-do-you-force-update) | | 96 | [What is the purpose of vuejs once directive?](#what-is-the-purpose-of-vuejs-once-directive) | | 97 | [How do you access the root instance?](#how-do-you-access-the-root-instance) | | 98 | [List out top 10 organizations using Vuejs?](#list-out-top-10-organizations-using-vuejs) | | 99 | [What is the purpose of renderError?](#what-is-the-purpose-of-rendererror) | | 100 | [How do you access parent instance?](#how-do-you-access-parent-instance) | | 101 | [What is vuex?](#what-is-vuex) | | 102 | [What are the major components of State Management Pattern?](#what-are-the-major-components-of-state-management-pattern) | | 103 | [How do you represent one way data flow in vuex?](#how-do-you-represent-one-way-data-flow-in-vuex) | | 104 | [What is a vuejs loader?](#what-is-a-vuejs-loader) | | 105 | [How do you configure vue loader in webpack?](#how-do-you-configure-vue-loader-in-webpack) | | 106 | [What are asset url transform rules?](#what-are-asset-url-transform-rules) | | 107 | [How do you work with preprocessors using vue loader?](#how-do-you-work-with-preprocessors-using-vue-loader) | | 108 | [What is scoped CSS?](#What-is-scoped-CSS) | | 109 | [Is it possible to mix both local and global styles?](#is-it-possible-to-mix-both-local-and-global-styles) | | 110 | [How do you use deep selectors?](#how-do-you-use-deepselectors) | | 111 | [Is parent styles leaked into child components in scoped css?](#is-parent-styles-leaked-into-child-components-in-scoped-css) | | 112 | [How do you style dynamic generated content using scoped css?](#how-do-you-style-dynamic-generated-content-using-scoped-css) | | 113 | [Is CSS modules supported in Vuejs?](#is-css-modules-supported-in-vuejs) | | 114 | [Can I use runtime builds for all templates?](#can-i-use-runtime-builds-for-all-templates) | | 115 | [How to use CSS modules in vuejs?](#how-to-use-css-modules-in-vuejs) | | 116 | [Can I use CSS modules for preprocessors?](#can-i-use-css-modules-for-preprocessors) | | 117 | [Is it possible to use custom inject name for CSS modules?](#is-it-possible-to-use-custom-inject-name-for-css-modules) | | 118 | [What is hot reloading in vue loader?](#what-is-hot-reloading-in-vue-loader) | | 119 | [What is the default behavior of hot reloading?](#what-is-the-default-behavior-of-hot-reloading) | | 120 | [How do you disable hot reloading explicitly?](#how-do-you-disable-hot-reloading-explicitly) | | 121 | [How do you use hot reloading?](#how-do-you-use-hot-reloading) | | 122 | [What are state preservation rules in hot reloading?](#what-are-state-preservation-rules-in-hot-reloading) | | 123 | [How to create functional components using vue loader?](#how-to-create-functional-components-using-vue-loader) | | 124 | [How do you access global properties of functional components?](#how-do-you-access-global-properties-of-functional-components) | | 125 | [How do you perform testing in vuejs?](#how-do-you-perform-testing-in-vuejs) | | 126 | [How do you apply linting for css?](#how-do-you-apply-linting-for-css) | | 127 | [How do you use eslint plugin?](#how-do-you-use-eslint-plugin) | | 128 | [What is the purpose of eslint loader?](#what-is-the-purpose-of-eslint-loader) | | 129 | [What is CSS extraction?](#what-is-css-extraction) | | 130 | [What are custom blocks?](#what-are-custom-blocks) | | 131 | [What are the features of stylelint?](#what-are-the-features-of-stylelint?) | | 132 | [What are the principles for vuex application structure?](#what-are-the-principles-for-vuex-application-structure) | | 133 | [Does Vuex support hot reloading??](#does-vuex-support-hot-reloading) | | 134 | [What is the purpose of hotUpdate API of vuex store?](#what-is-the-purpose-of-hotupdate-api-of-vuex-store) | | 135 | [How do you test mutations?](#how-do-you-test-mutations) | | 136 | [How do you test your getters?](#how-do-you-test-your-getters) | | 137 | [What is the procedure to run tests in node?](#what-is-the-procedure-to-run-tests-in-node) | | 138 | [What is the procedure to run tests in browser?](#what-is-the-procedure-to-run-tests-in-browser) | | 139 | [What is the purpose of strict mode in vuex?](#what-is-the-purpose-of-strict-mode-in-vuex) | | 140 | [Can I use strict mode in production environment?](#can-i-use-strict-mode-in-production-environment) | | 141 | [What is vuex plugin?](#what-is-vuex-plugin) | | 142 | [How do you mutate state in plugins?](#how-do-you-mutate-state-in-plugins) | | 143 | [What is vuex store?](#what-is-vuex-store) | | 144 | [What are the differences of vuex store and plain global object?](#what-are-the-differences-of-vuex-store-and-plain-global-object) | | 145 | [What is the reason not to update the state directly?](#what-is-the-reason-not-to-update-the-state-directly) | | 146 | [What is Single state tree?](#what-is-single-state-tree) | | 147 | [How do you install vuex?](#how-do-you-install-vuex) | | 148 | [Do I need promise for vuex?](#do-i-need-promise-for-vuex) | | 149 | [How do you display store state in vue components?](#how-do-you-display-store-state-in-vue-components) | | 150 | [How do you inject store into child components?](#how-do-you-inject-store-into-child-components) | | 151 | [What is mapState helper?](#what-is-mapstate-helper) | | 152 | [How do you combine local computed properties with mapState helper?](#how-do-you-combine-local-computed-properties-with-mapstate-helper) | | 153 | [Do you need to replace entire local state with vuex?](#do-you-need-to-replace-entire-local-state-with-vuex) | | 154 | [What are vuex getters?](#what-are-vuex-getters?) | | 155 | [What is a property style access?](#what-is-a-property-style-access) | | 156 | [What is a method style access?](#what-is-a-method-style-access) | | 157 | [What is mapGetter helper?](#what-is-mapgetter-helper) | | 158 | [What are mutations?](#what-are-mutations) | | 159 | [How do you commit with payload?](#how-do-you-commit-with-payload) | | 160 | [What is object style commit?](#what-is-object-style-commit) | | 161 | [What are the caveats with vuex mutations?](#what-are-the-caveats-with-vuex-mutations) | | 162 | [Why mutations should be synchronous?](#why-mutations-should-be-synchronous) | | 163 | [How do you perform mutations in components?](#how-do-you-perform-mutations-in-components) | | 164 | [Is it mandatory to use constants for mutation types?](#is-it-mandatory-to-use-constants-for-mutation-types) | | 165 | [How do you perform asynchronous operations?](#how-do-you-perform-asynchronous-operations) | | 166 | [What are differences between mutations and actions?](#what-are-differences-between-mutations-and-actions) | | 167 | [Give an example usage of actions?](#give-an-example-usage-of-actions?) | | 168 | [How do you dispatch actions?](#how-do-you-dispatch-actions) | | 169 | [Can you dispatch an action using payload or object?](#can-you-dispatch-an-action-using-payload-or-object) | | 170 | [Can I use styled components in vuejs?](#can-i-use-styled-components-in-vuejs) | | 171 | [How do you dispatch actions in components?](#how-do-you-dispatch-actions-in-components) | | 172 | [How do you compose actions?](#how-do-you-compose-actions) | | 173 | [What are modules in vuex?](#what-are-modules-in-vuex) | | 174 | [What is module local state?](#what-is-module-local-state) | | 175 | [What is namespacing in vuex](#what-is-namespacing-in-vuex) | | 176 | [What is the default namespace behavior in vuex?](#what-is-the-default-namespace-behavior-in-vuex) | | 177 | [When do you reuse modules?](#when-do-you-reuse-modules) | | 178 | [What are the principles enforced by vuex?](#what-are-the-principles-enforced-by-vuex) | | 179 | [Can I perform mutations directly in strict mode?](#can-i-perform-mutations-directly-in-strict-mode) | | 180 | [How to use model directive with two way computed property?](#how-to-use-model-directive-with-two-way-computed-property) | | 181 | [What is Vue CLI?](#what-is-vue-cli) | | 182 | [What are the features provided by Vue CLI?](#what-are-the-features-provided-by-vue-cli) | | 183 | [What is instant prototyping?](#what-is-instant-prototyping) | | 184 | [How do you create project using Vue CLI?](#how-do-you-create-project-using-vue-cli) | | 185 | [How do you create project using GUI?](#how-do-you-create-project-using-gui) | | 186 | [What are plugins in vue CLI?](#what-are-plugins-in-vue-cli) | | 187 | [How do you install plugins in an existing Vue CLI project?](#how-do-you-install-plugins-in-an-existing-vue-cli-project) | | 188 | [How to access local plugins in a project?](#how-to-access-local-plugins-in-a-project) | | 189 | [How do you create UI plugins kind of behavior?](#how-do-you-create-ui-plugins-kind-of-behavior) | | 190 | [What are presets?](#what-are-presets) | | 191 | [What is the versioning behavior in preset plugins?](#what-is-the-versioning-behavior-in-preset-plugins) | | 192 | [How do you allow plugin prompts?](#how-do-you-allow-plugin-prompts) | | 193 | [What are remote presets?](#what-are-remote-presets) | | 194 | [Can I use local presets?](#can-i-use-local-presets) | | 195 | [What is the purpose of browserslist option?](#what-is-the-purpose-of-browserslist-option) | | 196 | [How do you find VueJS version using API?](#how-do-you-find-vuejs-version-using-api) | | 197 | [How do you create reactive objects](#how-do-you-create-reactive-objects) | | 198 | [What is the purpose new slot directive?](#what-is-the-purpose-new-slot-directive) | | 199 | [What is the use of compile method?](#what-is-the-use-of-compile-method) | | 200 | [What does nextTick do in VueJS?](#what-does-nexttick-do-in-vuejs) | | 201 | [What is async error handling?](#what-is-async-error-handling) | | 202 | [What are Dynamic Directive Arguments?](#what-are-dynamic-directive-arguments) | | 203 | [What are the drawbacks of dynamic directive arguments?](#what-are-the-drawbacks-of-dynamic-directive-arguments) | | 204 | [What is the special handling for null values in dynamic directive arguments?](#what-is-the-special-handling-for-null-values-in-dynamic-directive-arguments) | | 205 | [Can I use dynamic directive null value for slots?](#can-i-use-dynamic-directive-null-value-for-slots) | | 206 | [What is Vue I18n plugin?](#what-is-vue-i-8n--plugin) | | 207 | [#What are the types of formatting?](#what-are-the-types-of-formatting) | | 208 | [What is custom formatting?](#what-is-custom-formatting) | | 209 | [How do you handle Pluralization?](#how-do-you-handle-pluralization) | | 210 | [How to implement DateTime localization?](#how-to-implement-date-time-localization) | | 211 | [How do you implement Number localization?](#how-do-you-implement-number-localization) | | 212 | [How do you perform locale changing](#how-do-you-perform-locale-changing) | | 213 | [What is Lazy loading translations?](#what-is-lazy-loading-translations) | | 214 | [What is the main difference between method and computed property?](#what-is-the-main-difference-between-method-and-computed-property) | | 215 | [What is vuetify?](#what-is-vuetify) | | 216 | [How do you watch for nested data changes?](#how-do-you-watch-for-nested-data-changes) | | 217 | [How to trigger watchers on initialization?](#how-to-trigger-watchers-on-initialization) | | 218 | [What is the purpose of comments option?](#what-is-the-purpose-of-comments-option) | | 219 | [How to identify whether code is running on client or server?](#how-to-identify-whether-code-is-running-on-client-or-server) | | 220 | [How do you watch route object changes?](#how-do-you-watch-route-object-changes) | | 221 | [How do you sync current route in vuex store?](#how-do-you-sync-current-route-in-vuex-store) | | 222 | [What are navigation guards in vue router?](#what-are-navigation-guards-in-vue-router) | | 223 | [Can I use computed property in another computed property?](#can-i-use-computed-property-in-another-computed-property) | | 224 | [How can I use imported constant in template section?](#How-can-i-use-imported-constant-in-template-section) | | 225 | [Is recommended to use async for computed properties?](#is-recommended-to-use-async-for-computed-properties) | | 226 | [What happens if you use duplicate field names?](#what-happens-if-you-use-duplicate-field-names) | | 227 | [Why the component data must be a function?](#why-the-component-data-must-be-a-function) | | 228 | [What is the reason for recommendation for multi-word component names?](#what-is-the-reason-for-recommendation-for-multi-word-component-names) | | 229 | [How to use composition API in Vue2.0?](#how-to-use-composition-api-in-vue2.0) | | 230 | [What is composition API?](#what-is-composition-api) | | 231 | [What is the best way to re-render a component?](#what-is-the-best-way-to-re-render-a-component) | 1. ### What is VueJS? **Vue.js** is an open-source, progressive Javascript framework for building user interfaces that aim to be incrementally adoptable. The core library of VueJS is focused on the `view layer` only, and is easy to pick up and integrate with other libraries or existing projects. **[⬆ Back to Top](#table-of-contents)** 2. ### What are the major features of VueJS? Below are the some of major features available with VueJS 1. **Virtual DOM:** It uses virtual DOM similar to other existing frameworks such as ReactJS, Ember etc. Virtual DOM is a light-weight in-memory tree representation of the original HTML DOM and updated without affecting the original DOM. 2. **Components:** Used to create reusable custom elements in VueJS applications. 3. **Templates:** VueJS provides HTML based templates that bind the DOM with the Vue instance data 4. **Routing:** Navigation between pages is achieved through vue-router 5. **Light weight:** VueJS is light weight library compared to other frameworks. **[⬆ Back to Top](#table-of-contents)** 3. ### What are the lifecycle methods of VueJS? Lifecycle hooks are a window into how the library you're using works behind-the-scenes. By using these hooks, you will know when your component is created, added to the DOM, updated, or destroyed. Let's look at lifecycle diagram before going to each lifecycle hook in detail, <img src="https://github.com/sudheerj/vuejs-interview-questions/blob/master/images/lifecycle.png" width="400" height="800"> 1. **Creation(Initialization):** Creation Hooks allow you to perform actions before your component has even been added to the DOM. You need to use these hooks if you need to set things up in your component both during client rendering and server rendering. Unlike other hooks, creation hooks are also run during server-side rendering. 1. beforeCreate: This hook runs at the very initialization of your component. hook observes data and initialization events in your component. Here, data is still not reactive and events that occur during the component's lifecycle have not been set up yet. ```javascript new Vue({ data: { count: 10 }, beforeCreate: function () { console.log('Nothing gets called at this moment') // `this` points to the view model instance console.log('count is ' + this.count); } }) // count is undefined ``` 2. created: This hook is invoked when Vue has set up events and data observation. Here, events are active and access to reactive data is enabled though templates have not yet been mounted or rendered. ```javascript new Vue({ data: { count: 10 }, created: function () { // `this` points to the view model instance console.log('count is: ' + this.count) } }) // count is: 10 ``` **Note:** Remember that, You will not have access to the DOM or the target mounting element (this.$el) inside of creation hooks 2. **Mounting(DOM Insertion):** Mounting hooks are often the most-used hooks and they allow you to access your component immediately before and after the first render. 1. beforeMount: The beforeMount allows you to access your component immediately before and after the first render. ```javascript new Vue({ beforeMount: function () { // `this` points to the view model instance console.log(`this.$el is yet to be created`); } }) ``` 2. mounted: This is a most used hook and you will have full access to the reactive component, templates, and rendered DOM (via. this.$el). The most frequently used patterns are fetching data for your component. ```javascript <div id="app"> <p>I'm text inside the component.</p> </div> new Vue({ el: '#app', mounted: function() { console.log(this.$el.textContent); // I'm text inside the component. } }) ``` 3. **Updating (Diff & Re-render):** Updating hooks are called whenever a reactive property used by your component changes, or something else causes it to re-render 1. beforeUpdate: The beforeUpdate hook runs after data changes on your component and the update cycle begins, right before the DOM is patched and re-rendered. ```javascript <div id="app"> <p>{{counter}}</p> </div> ...// rest of the code new Vue({ el: '#app', data() { return { counter: 0 } }, created: function() { setInterval(() => { this.counter++ }, 1000) }, beforeUpdate: function() { console.log(this.counter) // Logs the counter value every second, before the DOM updates. } }) ``` 2. updated: This hook runs after data changes on your component and the DOM re-renders. ```javascript <div id="app"> <p ref="dom">{{counter}}</p> </div> ...// new Vue({ el: '#app', data() { return { counter: 0 } }, created: function() { setInterval(() => { this.counter++ }, 1000) }, updated: function() { console.log(+this.$refs['dom'].textContent === this.counter) // Logs true every second } }) ``` 4. **Destruction (Teardown):** Destruction hooks allow you to perform actions when your component is destroyed, such as cleanup or analytics sending. 1. beforeDestroy: `beforeDestroy` is fired right before teardown. If you need to cleanup events or reactive subscriptions, beforeDestroy would probably be the time to do it. Your component will still be fully present and functional. ```javascript new Vue ({ data() { return { message: 'Welcome VueJS developers' } }, beforeDestroy: function() { this.message = null delete this.message } }) ``` 2. destroyed: This hooks is called after your component has been destroyed, its directives have been unbound and its event listeners have been removed. ```javascript new Vue ({ destroyed: function() { console.log(this) // Nothing to show here } }) ``` **[⬆ Back to Top](#table-of-contents)** 4. ### What are the different API styles available? The Vue components can be created in two different API styles 1. **Options API:** The Options API uses component logic using an object of options such as `data`, `props`, `computed`, `methods` and life cycle methods etc. The properties will be accessible inside functions using component instance(i.e, `this`). 2. **Composition API:** The Composition API uses component logic using imported API functions. The Single File Components(SFCs) requires `setup` attribute(`<script setup>`) to use imported variables and functions directly inside template section. 4. ### What are the conditional directives? VueJS provides set of directives to show or hide elements based on conditions. The available directives are: **v-if, v-else, v-else-if and v-show** **1. v-if:** The v-if directive adds or removes DOM elements based on the given expression. For example, the below button will not show if isLoggedIn is set to false. ```javascript <button v-if="isLoggedIn">Logout</button> ``` You can also control multiple elements with a single v-if statement by wrapping all the elements in a `<template>` element with the condition. For example, you can have both label and button together conditionally applied, ```javascript <template v-if="isLoggedIn"> <label> Logout </button> <button> Logout </button> </template> ``` **2. v-else:** This directive is used to display content only when the expression adjacent v-if resolves to false. This is similar to else block in any programming language to display alternative content and it is preceded by v-if or v-else-if block. You don't need to pass any value to this. For example, v-else is used to display LogIn button if isLoggedIn is set to false(not logged in). ```javascript <button v-if="isLoggedIn"> Logout </button> <button v-else> Log In </button> ``` **3. v-else-if:** This directive is used when we need more than two options to be checked. For example, we want to display some text instead of LogIn button when ifLoginDisabled property is set to true. This can be achieved through v-else statement. ```javascript <button v-if="isLoggedIn"> Logout </button> <label v-else-if="isLoginDisabled"> User login disabled </label> <button v-else> Log In </button> ``` **4. v-show:** This directive is similar to v-if but it renders all elements to the DOM and then uses the CSS display property to show/hide elements. This directive is recommended if the elements are switched on and off frequently. ```javascript <span v-show="user.name">Welcome user,{{user.name}}</span> ``` **[⬆ Back to Top](#table-of-contents)** 5. ### What is the difference between v-show and v-if directives? Below are some of the main differences between **v-show** and **v-if** directives, 1. v-if only renders the element to the DOM if the expression passes whereas v-show renders all elements to the DOM and then uses the CSS display property to show/hide elements based on expression. 2. v-if supports v-else and v-else-if directives whereas v-show doesn't support else directives. 3. v-if has higher toggle costs while v-show has higher initial render costs. i.e, v-show has a performance advantage if the elements are switched on and off frequently, while the v-if has the advantage when it comes to initial render time. 4. v-if supports `<template>` tab but v-show doesn't support. **[⬆ Back to Top](#table-of-contents)** 6. ### What is the purpose of v-for directive? The built-in v-for directive allows us to loop through items in an array or object. You can iterate on each element in the array or object. 1. **Array usage:** ```javascript <ul id="list"> <li v-for="(item, index) in items"> {{ index }} - {{ item.message }} </li> </ul> var vm = new Vue({ el: '#list', data: { items: [ { message: 'John' }, { message: 'Locke' } ] } }) ``` You can also use `of` as the delimiter instead of `in`, similar to javascript iterators. 2. **Object usage:** ```javascript <div id="object"> <div v-for="(value, key, index) of user"> {{ index }}. {{ key }}: {{ value }} </div> </div> var vm = new Vue({ el: '#object', data: { user: { firstName: 'John', lastName: 'Locke', age: 30 } } }) ``` **[⬆ Back to Top](#table-of-contents)** 7. ### What is vue instance? Every Vue application works by creating a new Vue instance with the Vue function. Generally the variable vm (short for ViewModel) is used to refer Vue instance. You can create vue instance as below, ```javascript var vm = new Vue({ // options }) ``` As mentioned in the above code snippets, you need to pass options object. You can find the full list of options in the API reference. **[⬆ Back to Top](#table-of-contents)** 8. ### How do you achieve conditional group of elements? You can achieve conditional group of elements(toggle multiple elements at a time) by applying **v-if** directive on `<template>` element which works as invisible wrapper(no rendering) for group of elements. For example, you can conditionally group user details based on valid user condition. ```javascript <template v-if="condition"> <h1>Name</h1> <p>Address</p> <p>Contact Details</p> </template> ``` **[⬆ Back to Top](#table-of-contents)** 9. ### How do you reuse elements with key attribute? Vue always tries to render elements as efficient as possible. So it tries to reuse the elements instead of building them from scratch. But this behavior may cause problems in few scenarios. For example, if you try to render the same input element in both `v-if` and `v-else` blocks then it holds the previous value as below, ```javascript <template v-if="loginType === 'Admin'"> <label>Admin</label> <input placeholder="Enter your ID"> </template> <template v-else> <label>Guest</label> <input placeholder="Enter your name"> </template> ``` In this case, it shouldn't reuse. We can make both input elements as separate by applying **key** attribute as below, ```javascript <template v-if="loginType === 'Admin'"> <label>Admin</label> <input placeholder="Enter your ID" key="admin-id"> </template> <template v-else> <label>Guest</label> <input placeholder="Enter your name" key="user-name"> </template> ``` The above code make sure both inputs are independent and doesn't impact each other. **[⬆ Back to Top](#table-of-contents)** 10. ### Why should not use if and for directives together on the same element? It is recommended not to use v-if on the same element as v-for. Because v-if directive has a higher priority than v-for. There are two cases where developers try to use this combination, 1. To filter items in a list For example, if you try to filter the list using v-if tag, ```javascript <ul> <li v-for="user in users" v-if="user.isActive" :key="user.id" > {{ user.name }} <li> </ul> ``` This can be avoided by preparing the filtered list using computed property on the initial list ```javascript computed: { activeUsers: function () { return this.users.filter(function (user) { return user.isActive }) } } ...... // ...... // <ul> <li v-for="user in activeUsers" :key="user.id"> {{ user.name }} <li> </ul> ``` 2. To avoid rendering a list if it should be hidden For example, if you try to conditionally check if the user is to be shown or hidden ```javascript <ul> <li v-for="user in users" v-if="shouldShowUsers" :key="user.id" > {{ user.name }} <li> </ul> ``` This can be solved by moving the condition to a parent by avoiding this check for each user ```javascript <ul v-if="shouldShowUsers"> <li v-for="user in users" :key="user.id" > {{ user.name }} <li> </ul> ``` **[⬆ Back to Top](#table-of-contents)** 11. ### Why do you need to use key attribute on for directive? In order to track each node's identity, and thus reuse and reorder existing elements, you need to provide a unique `key` attribute for each item with in `v-for` iteration. An ideal value for key would be the unique id of each item. Let us take an example usage, ```javascript <div v-for="item in items" :key="item.id"> {{item.name}} </div> ``` Hence, It is always recommended to provide a key with v-for whenever possible, unless the iterated DOM content is simple. **Note:** You shouldn't use non-primitive values like objects and arrays as v-for keys. Use string or numeric values instead. **[⬆ Back to Top](#table-of-contents)** 12. ### What are the array detection mutation methods? As the name suggests, mutation methods modifies the original array. Below are the list of array mutation methods which trigger view updates. 1. push() 2. pop() 3. shift() 4. unshift() 5. splice() 6. sort() 7. reverse() If you perform any of the above mutation method on the list then it triggers view update. For example, push method on array named 'todos' trigger a view update, ```javascript vm.todos.push({ message: 'Baz' }) ``` **[⬆ Back to Top](#table-of-contents)** 13. ### What are the array detection non-mutation methods? The methods which do not mutate the original array but always return a new array are called non-mutation methods. Below are the list of non-mutation methods, 1. filter() 2. concat() 3. slice() 4. map() 5. reduce() 6. find() 7. includes() 8. every() 9. some() 10. indexOf() 11. join() For example, lets take a todo list where it replaces the old array with new one based on status filter, ```javascript vm.todos = vm.todos.filter(function (todo) { return todo.status.match(/Completed/) }) ``` This approach won't re-render the entire list due to VueJS implementation. **[⬆ Back to Top](#table-of-contents)** 14. ### What are the caveats of array changes detection? Vue cannot detect changes for the array in the below two cases, 1. When you directly set an item with the index,For example, ```javascript vm.todos[indexOfTodo] = newTodo ``` 2. When you modify the length of the array, For example, ```javascript vm.todos.length = todosLength ``` You can overcome both the caveats using `set` and `splice` methods, Let's see the solutions with an examples, **First use case solution** ```javascript // Vue.set Vue.set(vm.todos, indexOfTodo, newTodoValue) (or) // Array.prototype.splice vm.todos.splice(indexOfTodo, 1, newTodoValue) ``` **Second use case solution** ```javascript vm.todos.splice(todosLength) ``` **[⬆ Back to Top](#table-of-contents)** 15. ### What are the caveats of object changes detection? Vue cannot detect changes for the object in property addition or deletion. Lets take an example of user data changes, ```javascript var vm = new Vue({ data: { user: { name: 'John' } } }) // `vm.user.name` is now reactive vm.user.email = [email protected] // `vm.user.email` is NOT reactive ``` You can overcome this scenario using the Vue.set(object, key, value) method or Object.assign(), ```javascript Vue.set(vm.user, 'email', '[email protected]'); // (or) vm.user = Object.assign({}, vm.user, { email: [email protected] }) ``` **[⬆ Back to Top](#table-of-contents)** 16. ### How do you use v-for directive with a range? You can also use integer type(say 'n') for `v-for` directive which repeats the element many times. ```javascript <div> <span v-for="n in 20">{{ n }} </span> </div> ``` It displays the number 1 to 20. **[⬆ Back to Top](#table-of-contents)** 17. ### How do you use v-for directive on template? Just similar to v-if directive on template, you can also use a `<template>` tag with v-for directive to render a block of multiple elements. Let's take a todo example, ```javascript <ul> <template v-for="todo in todos"> <li>{{ todo.title }}</li> <li class="divider"></li> </template> </ul> ``` **[⬆ Back to Top](#table-of-contents)** 18. ### How do you use event handlers? You can use event handlers in vue similar to plain javascript. The method calls also support the special $event variable. ```javascript <button v-on:click="show('Welcome to VueJS world', $event)"> Submit </button> methods: { show: function (message, event) { // now we have access to the native event if (event) event.preventDefault() console.log(message); } } ``` **[⬆ Back to Top](#table-of-contents)** 19. ### What are the event modifiers provided by vue? Normally, javascript provides `event.preventDefault() or event.stopPropagation()` inside event handlers. You can use methods provided by vue, but these methods are meant for data logic instead of dealing with DOM events. Vue provides below event modifiers for v-on and these modifiers are directive postfixes denoted by a dot. 1. .stop 2. .prevent 3. .capture 4. .self 5. .once 6. .passive Let's take an example of stop modifier, ```html <!-- the click event's propagation will be stopped --> <a v-on:click.stop="methodCall"></a> ``` You can also chain modifiers as below, ```html <!-- modifiers can be chained --> <a v-on:click.stop.prevent="doThat"></a> ``` **[⬆ Back to Top](#table-of-contents)** 20. ### What are key modifiers? Vue supports key modifiers on `v-on` for handling keyboard events. Let's take an example of keyup event with enter keycode. ```html <!-- only call `vm.show()` when the `keyCode` is 13 --> <input v-on:keyup.13="show"> ``` Remembering all the key codes is really difficult. It supports the full list of key codes aliases 1. .enter 2. .tab 3. .delete (captures both "Delete" and "Backspace" keys) 4. .esc 5. .space 6. .up 7. .down 8. .left 9. .right Now the above keyup code snippet can be written with aliases as follows, ```vue <input v-on:keyup.enter="submit" /> <!-- OR with shorthand notation --> <input @keyup.enter="submit" /> ``` **Note:** The use of keyCode events is deprecated and may not be supported in new browsers. **[⬆ Back to Top](#table-of-contents)** 21. ### How do you define custom key modifier aliases? You can define custom key modifier aliases via the global `config.keyCodes`. There are few guidelines for the properties 1. You can't use camelCase. Instead you can use kebab-case with double quotation marks 2. You can define multiple values in an array format ```javascript Vue.config.keyCodes = { f1: 112, "media-play-pause": 179, down: [40, 87] } ``` **[⬆ Back to Top](#table-of-contents)** 22. ### What are the supported System Modifier Keys? Vue supports below modifiers to trigger mouse or keyboard event listeners when the corresponding key is pressed, 1. .ctrl 2. .alt 3. .shift 4. .meta Lets take an example of control modifier with click event, ```vue <!-- Ctrl + Click --> <div @click.ctrl="doSomething">Do something</div> ``` **[⬆ Back to Top](#table-of-contents)** 23. ### What are the supported Mouse Button Modifiers? Vue supports below mouse button modifiers 1. .left 2. .right 3. .middle For example, the usage of `.right` modifier as below ```vue <button v-if="button === 'right'" v-on:mousedown.right="increment" v-on:mousedown.left="decrement" /> ``` **[⬆ Back to Top](#table-of-contents)** 24. ### How do you implement two-way binding? You can use the `v-model` directive to create two-way data bindings on form input, textarea, and select elements. Lets take an example of it using input component, ```vue <input v-model="message" placeholder="Enter input here"> <p>The message is: {{ message }}</p> ``` Remember, v-model will ignore the initial `value`, `checked` or `selected` attributes found on any form elements. So it always use the Vue instance data as the source of truth. **[⬆ Back to Top](#table-of-contents)** 25. ### What are the supported modifiers on model? There are three modifiers supported for v-model directive. **1. lazy:** By default, v-model syncs the input with the data after each input event. You can add the lazy modifier to instead sync after change events. ```vue <!-- synced after "change" instead of "input" --> <input v-model.lazy="msg" > ``` **2. number:** If you want user input to be automatically typecast as a number, you can add the number modifier to your v-model. Even with type="number", the value of HTML input elements always returns a string. So, this typecast modifier is required. ```vue <input v-model.number="age" type="number"> ``` **3. trim:** If you want whitespace from user input to be trimmed automatically, you can add the trim modifier to your v-model. ```vue <input v-model.trim="msg"> ``` **[⬆ Back to Top](#table-of-contents)** 26. ### What are components and give an example? Components are reusable Vue instances with a name. They accept the same options as new Vue, such as data, computed, watch, methods, and lifecycle hooks(except few root-specific options like el). Lets take an example of counter component, ```javascript // Define a new component called button-counter Vue.component('button-counter', { template: '<button v-on:click="count++">You clicked me {{ count }} times.</button>' data: function () { return { count: 0 } }, }) ``` Let's use this component inside a root Vue instance created with new Vue ```javascript <div id="app"> <button-counter></button-counter> </div> var vm = new Vue({ el: '#app' }); ``` **[⬆ Back to Top](#table-of-contents)** 27. ### What are props? Props are custom attributes you can register on a component. When a value is passed to a prop attribute, it becomes a property on that component instance. You can pass those list of values as props option and use them as similar to data variables in template. ```javascript Vue.component('todo-item', { props: ['title'], template: '<h2>{{ title }}</h2>' }) ``` Once the props are registered, you can pass them as custom attributes. ```vue <todo-item title="Learn Vue conceptsnfirst"></todo-item> ``` **[⬆ Back to Top](#table-of-contents)** 28. ### When component needs a single root element? In VueJS 2.x, every component must have a single root element **when template has more than one element**. In this case, you need to wrap the elements with a parent element. ```vue <template> <div class="todo-item"> <h2>{{ title }}</h2> <div v-html="content"></div> </div> </template> ``` Otherwise there will an error throwing, saying that "Component template should contain exactly one root element...". Whereas in 3.x, components now can have multiple root nodes. This way of adding multiple root nodes is called as fragments. ```vue <template> <h2>{{ title }}</h2> <div v-html="content"></div> </template> ``` **[⬆ Back to Top](#table-of-contents)** 29. ### How do you communicate from child to parent using events? If you want child wants to communicate back up to the parent, then emit an event from child using `$emit` object to parent, ```javascript Vue.component('todo-item', { props: ['todo'], template: ` <div class="todo-item"> <h3>{{ todo.title }}</h3> <button v-on:click="$emit('increment-count', 1)"> Add </button> <div v-html="todo.description"></div> </div> ` }) ``` Now you can use this todo-item in parent component to access the count value. ```vue <ul v-for="todo in todos"> <li> <todo-item v-bind:key="todo.id" v-bind:todo="todo" v-on:increment-count="total += 1" /></todo-item> </li> </ul> <span> Total todos count is {{total}}</span> ``` **[⬆ Back to Top](#table-of-contents)** 30. ### How do you implement model on custom input components? The custom events can also be used to create custom inputs that work with v-model. The `<input>` inside the component must follow below rules, 1. Bind the value attribute to a value prop 2. On input, emit its own custom input event with the new value. Let's take a custom-input component as an example, ```javascript Vue.component('custom-input', { props: ['value'], template: ` <input v-bind:value="value" v-on:input="$emit('input', $event.target.value)" /> ` }) ``` Now you can use `v-model` with this component, ```vue <custom-input v-model="searchInput"></custom-input> ``` **[⬆ Back to Top](#table-of-contents)** 31. ### What are slots? Vue implements a content distribution API using the <slot> element to serve as distribution outlets for content created after the current Web Components spec draft. Let's create an alert component with slots for content insertion, ```javascript Vue.component('alert', { template: ` <div class="alert-box"> <strong>Error!</strong> <slot></slot> </div> ` }) ``` Now you can insert dynamic content as below, ```vue <alert> There is an issue with in application. </alert> ``` **[⬆ Back to Top](#table-of-contents)** 32. ### What is global registration in components? The components which are globally registered can be used in the template of any root Vue instance (new Vue) created after registration. In the global registration, the components created using Vue.component as below, ```javascript Vue.component('my-component-name', { // ... options ... }) ``` Let's take multiple components which are globally registered in the vue instance, ```javascript Vue.component('component-a', { /* ... */ }) Vue.component('component-b', { /* ... */ }) Vue.component('component-c', { /* ... */ }) new Vue({ el: '#app' }) ``` The above components can be used in the vue instance, ```vue <div id="app"> <component-a></component-a> <component-b></component-b> <component-c></component-c> </div> ``` Remember that the components can be used in subcomponents as well. **[⬆ Back to Top](#table-of-contents)** 33. ### Why do you need local registration? Due to global registration, even if you don't use the component it could still be included in your final build. So it will create unnecessary javascript in the application. This can be avoided using local registration with the below steps, 1. First you need to define your components as plain JavaScript objects ```javascript var ComponentA = { /* ... */ } var ComponentB = { /* ... */ } var ComponentC = { /* ... */ } ``` Locally registered components will not be available in sub components. In this case, you need to add them in components section ```javascript var ComponentA = { /* ... */ } var ComponentB = { components: { 'component-a': ComponentA }, // ... } ``` 2. You can use the components in the components section of the vue instance, ```javascript new Vue({ el: '#app', components: { 'component-a': ComponentA, 'component-b': ComponentB } }) ``` **[⬆ Back to Top](#table-of-contents)** 34. ### What is the difference between local and global registration in module system? In **local registration**, you need to create each component in components folder(optional but it is recommended) and import them in another component file components section. Let's say you want to register component A and B in component C, the configuration seems as below, ```javascript import ComponentA from './ComponentA' import ComponentB from './ComponentB' export default { components: { ComponentA, ComponentB }, // ... } ``` Now both ComponentA and ComponentB can be used inside ComponentC's template. In **global registration**, you need to export all common or base components in a separate file. But some of the popular bundlers like `webpack` make this process simpler by using `require.context` to globally register base components in the below entry file(one-time). ```javascript import Vue from 'vue' import upperFirst from 'lodash/upperFirst' import camelCase from 'lodash/camelCase' const requireComponent = require.context( // The relative path of the components folder './components', // Whether or not to look in subfolders false, // The regular expression used to match base component filenames /Base[A-Z]\w+\.(vue|js)$/ ) requireComponent.keys().forEach(fileName => { // Get component config const componentConfig = requireComponent(fileName) // Get PascalCase name of component const componentName = upperFirst( camelCase( // Strip the leading `./` and extension from the filename fileName.replace(/^\.\/(.*)\.\w+$/, '$1') ) ) // Register component globally Vue.component( componentName, // Look for the component options on `.default`, which will // exist if the component was exported with `export default`, // otherwise fall back to module's root. componentConfig.default || componentConfig ) }) ``` **[⬆ Back to Top](#table-of-contents)** 35. ### What are possible prop types? You can declare props with type or without type. But it is recommended to have prop types because it provides the documentation for the component and warns the developer for any incorrect data type being assigned. ```javascript props: { name: String, age: Number, isAuthenticated: Boolean, phoneNumbers: Array, address: Object } ``` As mentioned in the above code snippet, you can list props as an object, where the properties' names and values contain the prop names and types, respectively. **[⬆ Back to Top](#table-of-contents)** 36. ### What is the data flow followed by props? All props follows a one-way-down binding between the child property and the parent one. i.e, When the parent property is updated then that latest prop value will be passed down to the child, but not the otherway(child to parent) around. The child component should not mutate the prop otherwise it throws a warning in the console. The possible mutation cases can be solved as below, 1. When you try to use parent prop as initial value for child property: In this case you can define a local property in child component and assign parent value as initial value ```javascript props: ['defaultUser'], data: function () { return { username: this.defaultUser } } ``` 2. When you try to transform the parent prop: You can define a computed property using the prop's value, ```javascript props: ['environment'], computed: { localEnvironment: function () { return this.environment.trim().toUpperCase() } } ``` **[⬆ Back to Top](#table-of-contents)** 37. ### What are non prop attributes? A non-prop attribute is an attribute that is passed to a component, but does not have a corresponding prop defined. For example, If you are using a 3rd-party custom-input component that requires a `data-tooltip` attribute on the input then you can add this attribute to component instance, ```vue <custom-input data-tooltip="Enter your input" /> ``` If you try to pass the props from parent component the child props with the same names will be overridden. But props like `class` and `style` are exception to this, these values will be merged in the child component. ```vue <!-- Child component --> <input type="date" class="date-control"> <!-- Parent component --> <custom-input class="custom-class" /> ``` **[⬆ Back to Top](#table-of-contents)** 38. ### Describe about validations available for props? Vue provides validations such as types, required fields, default values along with customized validations. You can provide an object with validation requirements to the value of props as below, Let's take an example of user profile Vue component with possible validations, ```javascript Vue.component('user-profile', { props: { // Basic type check (`null` matches any type) age: Number, // Multiple possible types identityNumber: [String, Number], // Required string email: { type: String, required: true }, // Number with a default value minBalance: { type: Number, default: 10000 }, // Object with a default value message: { type: Object, // Object or array defaults must be returned from // a factory function default: function () { return { message: 'Welcome to Vue' } } }, // Custom validator function location: { validator: function (value) { // The value must match one of these strings return ['India', 'Singapore', 'Australia'].indexOf(value) !== -1 } } } }) ``` **[⬆ Back to Top](#table-of-contents)** 39. ### How do you customize model directive for a component? The v-model directive on a component uses **value** as the prop and **input** as the event, but some input types such as `checkboxes` and `radio buttons` may need to use the value attribute for a server side value. In this case, it is preferred to customize model directive. Let's take an example of checkbox component, ```javascript Vue.component('custom-checkbox', { model: { prop: 'checked', event: 'change' }, props: { checked: Boolean }, template: ` <input type="checkbox" v-bind:checked="checked" v-on:change="$emit('change', $event.target.checked)" > ` }) ``` Now you can use v-model on this customized component as below, ```vue <custom-checkbox v-model="selectFramework"></custom-checkbox> ``` The selectFramework property will be passed to the checked prop and same property will be updated when custom checkbox component emits a change event with a new value. **[⬆ Back to Top](#table-of-contents)** 40. ### What are the possible ways to provide transitions? There are many ways Vue provides transition effects when items are inserted, updated, or removed from the DOM. Below are the possible ways, 1. Automatically apply classes for CSS transitions and animations 2. Integrate 3rd-party CSS animation libraries. For example, Animate.css 3. Use JavaScript to directly manipulate the DOM during transition hooks 4. Integrate 3rd-party JavaScript animation libraries. For example, Velocity.js **[⬆ Back to Top](#table-of-contents)** 41. ### What is vue router and their features? Vue Router is a official routing library for single-page applications designed for use with the Vue.js framework. Below are their features, 1. Nested route/view mapping 2. Modular, component-based router configuration 3. Route params, query, wildcards 4. View transition effects powered by Vue.js' transition system 5. Fine-grained navigation control 6. Links with automatic active CSS classes 7. HTML5 history mode or hash mode, with auto-fallback in IE9 8. Restore scroll position when going back in history mode **[⬆ Back to Top](#table-of-contents)** 42. ### What are the steps to use vue router and give an example? It is easy to integrate vue router in the vue application. Let us see the example with step by step instructions. **Step 1:** Configure router link and router view in the template ```vue <script src="https://unpkg.com/vue/dist/vue.js"></script> <script src="https://unpkg.com/vue-router/dist/vue-router.js"></script> <div id="app"> <h1>Welcome to Vue routing app!</h1> <p> <!-- use router-link component for navigation using `to` prop. It rendered as an `<a>` tag --> <router-link to="/home">Home</router-link> <router-link to="/services">Services</router-link> </p> <!-- route outlet in which component matched by the route will render here --> <router-view></router-view> </div> ``` **Step 2:** Import Vue and VueRouter packages and then apply router ```javascript import Vue from 'vue'; import VueRouter from 'vue-router'; Vue.use(VueRouter) ``` **Step 3:** Define or import route components. ```javascript const Home = { template: '<div>Home</div>' } const Services = { template: '<div>Services</div>' } ``` **Step 4:** Define your route where each one maps to a component ```javascript const routes = [ { path: '/home', component: Home }, { path: '/services', component: Services } ] ``` **Step 5:** Create the router instance and pass the `routes` option ```javascript const router = new VueRouter({ routes // short for `routes: routes` }) ``` **Step 6:** Create and mount the root instance. ```javascript const app = new Vue({ router }).$mount('#app') ``` Now you are able to navigate different pages(Home, Services) with in Vue application. **[⬆ Back to Top](#table-of-contents)** 43. ### What is dynamic route matching? Sometimes it may be required to map routes to the same component based on a pattern. Let's take a user component with the mapped URLs like `/user/john/post/123` and `/user/jack/post/235` using dynamic segments, ```javascript const User = { template: '<div>User {{ $route.params.name }}, PostId: {{ $route.params.postid }}</div>' } const router = new VueRouter({ routes: [ // dynamic segments start with a colon { path: '/user/:name/post/:postid', component: User } ] }) ``` **[⬆ Back to Top](#table-of-contents)** 44. ### How to make router param changes as reactive? When you navigate from one URL to other(mapped with a single component) using routes with params then the same component instance will be reused. Even though it is more efficient than destroying the old instance and then creating a new one, the lifecycle hooks of the component will not be called. This problem can be solved using either of the below approaches, 1. **Watch the $route object:** ```javascript const User = { template: '<div>User {{ $route.params.name }} </div>', watch: { '$route' (to, from) { // react to route changes... } } } ``` 2. **Use beforeRouteUpdate navigation guard:** This is only available since 2.2 version. ```javascript const User = { template: '<div>User {{ $route.params.name }} </div>', beforeRouteUpdate (to, from, next) { // react to route changes and then call next() } } ``` Note that the beforeRouteEnter guard does NOT have access to `this`. Instead you can pass a callback to `next` to access the vm instance. **[⬆ Back to Top](#table-of-contents)** 45. ### What is route matching priority? Sometimes the URL might be matched by multiple routes and the confusion of which route need to be mapped is resolved by route matching priority. The priority is based on order of routes configuration. i.e, The route which declared first has higher priority. ```javascript const router = new VueRouter({ routes: [ // dynamic segments start with a colon { path: '/user/:name', component: User } // This route gets higher priority { path: '/user/:name', component: Admin } { path: '/user/:name', component: Customer } ] }) ``` **[⬆ Back to Top](#table-of-contents)** 46. ### What are nested routes? Generally, the app is composed of nested components which are nested multiple levels deep. The segments of a URL corresponds to a certain structure of these nested components. To render components into the nested outlet, you need to use the `children` option in `VueRouter` constructor config. Let's take a user app composed of profile and posts nested components with respective routes. You can also define a default route configuration when there is no matching nested route. ```javascript const router = new VueRouter({ routes: [ { path: '/user/:id', component: User, children: [ { // UserProfile will be rendered inside User's <router-view> when /user/:id/profile is matched path: 'profile', component: UserProfile }, { // UserPosts will be rendered inside User's <router-view> when /user/:id/posts is matched path: 'posts', component: UserPosts }, // UserHome will be rendered inside User's <router-view> when /user/:id is matched { path: '', component: UserHome }, ] } ] }) ``` **[⬆ Back to Top](#table-of-contents)** 47. ### What are single file components? Single File Components are an easy concept to understand. Earlier you might heard about all three parts(HTML, JavaScript and CSS) of your application kept in different components. But Single File Components encapsulate the structure, styling and behaviour into one file. In the beginning, it seems strange to have all three parts in one file, but it actually makes a lot more sense. Let's take an example of Singile File Components ```vue <template> <div> <h1>Welcome {{ name }}!</h1> </div> </template> <script> module.exports = { data: function() { return { name: 'John' } } } </script> <style scoped> h1 { color: #34c779; padding: 3px; } </style> ``` **[⬆ Back to Top](#table-of-contents)** 48. ### Is Single File Components violating separation of concerns? As for the latest modern UI development, separation of concerns is not equal to separation of file types. So it is preferred to divide codebase layers into loosely-coupled components and compose them instead of dividing the codebase into three huge layers that interweave with one another. This way makes Single File Components more cohesive and maintainable by combining template, logic and styles together inside a component. You can also still maintain javascript and CSS files separately with hot-reloading and pre-compilation features. For example, ```vue <template> <div>This section will be pre-compiled and hot reloaded</div> </template> <script src="./my-component.js"></script> <style src="./my-component.css"></style> ``` **[⬆ Back to Top](#table-of-contents)** 49. ### What are the problems solved by Single File Components? The Single File Components solve the common problems occurred in a javascript driven application with a .vue extension. The list of issues are, 1. Global definitions force unique names for every component 2. String templates lack syntax highlighting and require ugly slashes for multiline HTML 3. No CSS support means that while HTML and JavaScript are modularized into components, CSS is conspicuously left out 4. No build step restricts us to HTML and ES5 JavaScript, rather than preprocessors like Pug (formerly Jade) and Babel. **[⬆ Back to Top](#table-of-contents)** 50. ### What are filters? Filters can be used to apply common text formatting. These Filters should be appended to the end of the JavaScript expression, denoted by the "pipe" symbol. You can use them in two specific cases: 1. mustache interpolations 2. v-bind expressions For example, Let's define a local filter named capitalize in a component's options ```javascript filters: { capitalize: function (value) { if (!value) return '' value = value.toString() return value.charAt(0).toUpperCase() + value.slice(1) } } ``` Now you can use the filter in either mustache interpolation or v-bind expression, ```vue <!-- in mustaches --> {{ username | capitalize }} <!-- in v-bind --> <div v-bind:id="username | capitalize"></div> ``` **[⬆ Back to Top](#table-of-contents)** 51. ### What are the different ways to create filters? You can define filters in two ways, 1. **Local filters:** You can define local filters in a component's options. In this case, filter is applicable to that specific component. ```javascript filters: { capitalize: function (value) { if (!value) return '' value = value.toString() return value.charAt(0).toUpperCase() + value.slice(1) } } ``` 2. **Global filters:** You can also define a filter globally before creating the Vue instance. In this case, filter is applicable to all the components with in the vue instance, ```javascript Vue.filter('capitalize', function (value) { if (!value) return '' value = value.toString() return value.charAt(0).toUpperCase() + value.slice(1) }) new Vue({ // ... }) ``` **[⬆ Back to Top](#table-of-contents)** 52. ### How do you chain filters? You can chain filters one after the other to perform multiple manipulations on the expression. The generic structure of filter chain would be as below, ```vue {{ message | filterA | filterB | filterB ... }} ``` In the above chain stack, you can observe that message expression applied with three filters, each separated by a pipe(|) symbol. The first filter(filterA) takes the expression as a single argument and the result of the expression becomes an argument for second filter(filterB) and the chain continue for remaining filters. For example, if you want to transform date expression with a full date format and uppercase then you can apply dateFormat and uppercase filters as below, ```vue {{ birthday | dateFormat | uppercase }} ``` **[⬆ Back to Top](#table-of-contents)** 53. ### Is it possible to pass parameters for filters? Yes, you can pass arguments for a filter similar to a javascript function. The generic structure of filter parameters would be as follows, ```vue {{ message | filterA('arg1', arg2) }} ``` In this case, filterA takes message expression as first argument and the explicit parameters mentioned in the filter as second and third arguments. For example, you can find the exponential strength of a particular value ```vue {{ 2 | exponentialStrength(10) }} <!-- prints 2 power 10 = 1024 --> ``` **[⬆ Back to Top](#table-of-contents)** 54. ### What are plugins and their various services? Plugins provides global-level functionality to Vue application. The plugins provide various services, 1. Add some global methods or properties. For example, vue-custom-element 2. Add one or more global assets (directives, filters and transitions). For example, vue-touch 3. Add some component options by global mixin. For example, vue-router 4. Add some Vue instance methods by attaching them to Vue.prototype. 5. A library that provides an API of its own, while at the same time injecting some combination of the above. For example, vue-router **[⬆ Back to Top](#table-of-contents)** 55. ### How to create a plugin? The Plugin is created by exposing an `install` method which takes Vue constructor as a first argument along with options. The structure of VueJS plugin with possible functionality would be as follows, ```javascript MyPlugin.install = function (Vue, options) { // 1. add global method or property Vue.myGlobalMethod = function () { // some logic ... } // 2. add a global asset Vue.directive('my-directive', { bind (el, binding, vnode, oldVnode) { // some logic ... } // ... }) // 3. inject some component options Vue.mixin({ created: function () { // some logic ... } // ... }) // 4. add an instance method Vue.prototype.$myMethod = function (methodOptions) { // some logic ... } } ``` **[⬆ Back to Top](#table-of-contents)** 56. ### How to use a plugin? You can use plugin by passing your plugin to Vue's **use** global method. You need to apply this method before start your app by calling new Vue(). ```javascript // calls `MyPlugin.install(Vue, { someOption: true })` Vue.use(MyPlugin) new Vue({ //... options }) ``` **[⬆ Back to Top](#table-of-contents)** 57. ### What are mixins? Mixin gives us a way to distribute reusable functionalities in Vue components. These reusable functions are merged with existing functions. A mixin object can contain any component options. Let us take an example of mixin with `created` lifecycle which can be shared across components, ```javascript const myMixin = { created(){ console.log("Welcome to Mixins!") } } var app = new Vue({ el: '#root', mixins: [myMixin] }) ``` **Note:** Multiple mixins can be specified in the mixin array of the component. **[⬆ Back to Top](#table-of-contents)** 58. ### What are global mixins? Sometimes there is a need to extend the functionality of Vue or apply an option to all Vue components available in our application. In this case, mixins can be applied globally to affect all components in Vue. These mixins are called as global mixins. Let's take an example of global mixin, ```javascript Vue.mixin({ created(){ console.log("Write global mixins") } }) new Vue({ el: '#app' }) ``` In the above global mixin, the mixin options spread across all components with the console running during the instance creation. These are useful during test, and debugging or third party libraries. At the same time, You need to use these global mixins sparsely and carefully, because it affects every single Vue instance created, including third party components. **[⬆ Back to Top](#table-of-contents)** 59. ### How do you use mixins in CLI? Using Vue CLI, mixins can be specified anywhere in the project folder but preferably within `/src/mixins` for ease of access. Once these mixins are created in a `.js` file and exposed with the `export` keyword, they can be imported in any component with the `import` keyword and their file paths. **[⬆ Back to Top](#table-of-contents)** 60. ### What are the merging strategies in mixins? When a mixin and the component itself contain overlapping options, the options will be merged based on some strategies. 1. The data objects undergo a recursive merge, with the component's data taking priority over mixins in cases of overlapping or conflicts. ```javascript var mixin = { data: function () { return { message: 'Hello, this is a Mixin' } } } new Vue({ mixins: [mixin], data: function () { return { message: 'Hello, this is a Component' } }, created: function () { console.log(this.$data); // => { message: "Hello, this is a Component'" } } }) ``` 2. The Hook functions which are overlapping merged into an array so that all of them will be called. Mixin hooks will be called before the component's own hooks. ```javascript const myMixin = { created(){ console.log("Called from Mixin") } } new Vue({ el: '#root', mixins: [myMixin], created(){ console.log("Called from Component") } }) // Called from Mixin // Called from Component ``` 3. The options that expect object values(such as methods, components and directives) will be merged into the same object. In this case, the component's options will take priority when there are conflicting keys in these objects. ```javascript var mixin = { methods: { firstName: function () { console.log('John') }, contact: function () { console.log('+65 99898987') } } } var vm = new Vue({ mixins: [mixin], methods: { lastName: function () { console.log('Murray') }, contact: function () { console.log('+91 893839389') } } }) vm.firstName() // "John" vm.lastName() // "Murray" vm.contact() // "+91 893839389" ``` **[⬆ Back to Top](#table-of-contents)** 61. ### What are custom options merging strategies? Vue uses the default strategy which overwrites the existing value while custom options are merged. But if you want a custom option merged using custom login then you need to attach a function to `Vue.config.optionMergeStrategies` For the example, the structure of `myOptions` custom option would be as below, ```javascript Vue.config.optionMergeStrategies.myOption = function (toVal, fromVal) { // return mergedVal } ``` Let's take below Vuex 1.0 merging strategy as an advanced example, ```javascript const merge = Vue.config.optionMergeStrategies.computed Vue.config.optionMergeStrategies.vuex = function (toVal, fromVal) { if (!toVal) return fromVal if (!fromVal) return toVal return { getters: merge(toVal.getters, fromVal.getters), state: merge(toVal.state, fromVal.state), actions: merge(toVal.actions, fromVal.actions) } } ``` **[⬆ Back to Top](#table-of-contents)** 62. ### What are custom directives? Custom Directives are tiny commands that you can attach to DOM elements. They are prefixed with v- to let the library know you're using a special bit of markup and to keep syntax consistent. They are typically useful if you need low-level access to an HTML element to control a bit of behavior. Let's create a custom focus directive to provide focus on specific form element during page load time, ```javascript // Register a global custom directive called `v-focus` Vue.directive('focus', { // When the bound element is inserted into the DOM... inserted: function (el) { // Focus the element el.focus() } }) ``` Now you can use v-focus directive on any element as below, ```vue <input v-focus> ``` **[⬆ Back to Top](#table-of-contents)** 63. ### How do you register directives locally? You can also register directives locally(apart from globally) using directives option in component as below, ```javascript directives: { focus: { // directive definition inserted: function (el) { el.focus() } } } ``` Now you can use v-focus directive on any element as below, ```vue <input v-focus> ``` **[⬆ Back to Top](#table-of-contents)** 64. ### What are the hook functions provided by directives? A directive object can provide several hook functions, 1. bind: This occurs once the directive is attached to the element. 2. inserted: This hook occurs once the element is inserted into the parent DOM. 3. update: This hook is called when the element updates, but children haven't been updated yet. 4. componentUpdated: This hook is called once the component and the children have been updated. 5. unbind: This hook is called only once when the directive is removed. **Note:** There are several arguments that can be passed to the above hooks. **[⬆ Back to Top](#table-of-contents)** 65. ### What are the directive Hook Arguments? All the hooks have `el`, `binding`, and `vnode` as arguments. Along with that, **update** and **componentUpdated** hooks expose `oldVnode`, to differentiate between the older value passed and the newer value. Below are the arguments passed to the hooks, 1. `el`: The element the directive is bound to and it can be used to directly manipulate the DOM. 2. `binding`: An object containing the following properties. 1. `name`: The name of the directive, without the `v-` prefix. 2. `value`: The value passed to the directive. For example in `v-my-directive="1 + 1"`, the value would be 2. 3. `oldValue`: The previous value, only available in update and componentUpdated. It is available whether or not the value has changed. 4. `expression`: The expression of the binding as a string. For example in `v-my-directive="1 + 1"`, the expression would be "1 + 1". 5. `arg`: The argument passed to the directive, if any. For example in v-my-directive:foo, the arg would be " foo". 6. `modifiers`: An object containing modifiers, if any. For example in v-my-directive.foo.bar, the modifiers object would be `{ foo: true, bar: true }`. 3. `vnode`: The virtual node produced by Vue's compiler. 4. `oldVnode`: The previous virtual node, only available in the update and componentUpdated hooks. The arguments can be represented diagrammatically across the hooks as below, ![custom-directives](images/custom-directives.svg) **[⬆ Back to Top](#table-of-contents)** 66. ### How do you pass multiple values to a directive? A directive can take any valid javascript expression. So if you want to pass multiple values then you can pass in a JavaScript object literal. Let's pass object literal to an avatar directive as below ```vue <div v-avatar="{ width: 500, height: 400, url: 'path/logo', text: 'Iron Man' }"></div> ``` Now let us configure avatar directive globally, ```javascript Vue.directive('avatar', function (el, binding) { console.log(binding.value.width) // 500 console.log(binding.value.height) // 400 console.log(binding.value.url) // path/logo console.log(binding.value.text) // "Iron Man" }) ``` **[⬆ Back to Top](#table-of-contents)** 67. ### What is function shorthand in directive hooks? In few cases, you may want the same behavior on `bind` and `update` hooks irrespective of other hooks. In this situation you can use function shorthand, ```javascript Vue.directive('theme-switcher', function (el, binding) { el.style.backgroundColor = binding.value }) ``` **[⬆ Back to Top](#table-of-contents)** 68. ### What is the benefit of render functions over templates? In VueJS, the templates are very powerful and recommended to build HTML as part of your application. However, some of the special cases like dynamic component creation based on input or slot value can be achieved through render functions. Also, these functions gives the full programmatic power of javascript eco system. **[⬆ Back to Top](#table-of-contents)** 69. ### What is a render function? Render function is a normal function which receives a `createElement` method as it's first argument used to create virtual nodes. Internally Vue.js' templates actually compile down to render functions at build time. Hence templates are just syntactic sugar of render functions. Let's take an example of simple Div markup and corresponding render function. The HTML markup can be written in template tag as below, ```vue <template> <div :class="{'is-rounded': isRounded}"> <p>Welcome to Vue render functions</p> </div> </template> ``` and the compiled down or explicit render function would appear as below, ```javascript render: function (createElement) { return createElement('div', { 'class': { 'is-rounded': this.isRounded } }, [ createElement('p', 'Welcome to Vue render functions') ]); } ``` **Note:** The react components are built with render functions in JSX. **[⬆ Back to Top](#table-of-contents)** 70. ### Explain the structure of createElement with arguments? The createElement accepts few arguments to use all the template features. Let us see the basic structure of createElement with possible arguments, ```javascript // @returns {VNode} createElement( // An HTML tag name, component options, or async function resolving to one of these. // Type is {String | Object | Function} // Required. 'div', // A data object corresponding to the attributes you would use in a template. // Type is {Object} // Optional. { // Normal HTML attributes attrs: { id: 'someId' }, // Component props props: { myProp: 'somePropValue' }, // DOM properties domProps: { innerHTML: 'This is some text' }, // Event handlers are nested under `on` on: { click: this.clickHandler }, // Similar to `v-bind:style`, accepting either a string, object, or array of objects. style: { color: 'red', fontSize: '14px' }, // Similar to `v-bind:class`, accepting either a string, object, or array of strings and objects. class: { className1: true, className2: false } // .... }, // Children VNodes, built using `createElement()`, or using strings to get 'text VNodes'. // Type is {String | Array} // Optional. [ 'Learn about createElement arguments.', createElement('h1', 'Headline as a child virtual node'), createElement(MyComponent, { props: { someProp: 'This is a prop value' } }) ] ) ``` See details of the date object in official [doc](https://vuejs.org/v2/guide/render-function.html#The-Data-Object-In-Depth). **[⬆ Back to Top](#table-of-contents)** 71. ### How can you write duplicate virtual nodes in a component? All virtual nodes(VNodes) in the component tree must be unique.i.e, You can't write duplicated nodes in a straightforward way. If you want to duplicate the same element/component many times then you should use factory function. The below render function is invalid where you are trying to duplicate h1 element 3 times, ```javascript render: function (createElement) { var myHeadingVNode = createElement('h1', 'This is a Virtual Node') return createElement('div', [ myHeadingVNode, myHeadingVNode, myHeadingVNode ]) } ``` You can make duplicates with factory function, ```javascript render: function (createElement) { return createElement('div', Array.apply(null, { length: 3 }).map(function () { return createElement('h1', 'This is a Virtual Node') }) ) } ``` **[⬆ Back to Top](#table-of-contents)** 72. ### List down the template equivalents in render functions? VueJS provides proprietary alternatives and plain javascript usage for the template features. Let's list down them in a table for comparison, | Templates | Render function | | ----------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Conditional and looping directives: v-if and v-for | Use JavaScript's if/else and map concepts | | Two-way binding: v-model | Apply own JS logic with value binding and event binding | | Capture Event modifiers: .passive, .capture, .once and .capture.once or .once.capture | &, !, ~ and ~! | | Event and key modifiers: .stop, .prevent, .self, keys(.enter, .13) and Modifiers Keys(.ctrl, .alt, .shift, .meta) | Use javascript solutions: event.stopPropagation(), event.preventDefault(), if (event.target !== event.currentTarget) return, if (event.keyCode !== 13) return and if (!event.ctrlKey) return | | Slots: slot attributes | Render functions provide this.$slots and this.$scopedSlots instance properties | **[⬆ Back to Top](#table-of-contents)** 73. ### What are functional components? The functional components are just simple functions to create simple components just by passing a context. Every functional component follows two rules, 1. **Stateless:** It doesn't keep any state by itself 2. **Instanceless:** It has no instance, thus no this You need to define `functional: true` to make it functional. Let's take an example of functional components, ```javascript Vue.component('my-component', { functional: true, // Props are optional props: { // ... }, // To compensate for the lack of an instance, // we are now provided a 2nd context argument. render: function (createElement, context) { // ... } }) ``` **Note:** The functional components are quite popular in React community too. **[⬆ Back to Top](#table-of-contents)** 74. ### What are the similarities between VueJS and ReactJS? Even though ReactJS and VueJS are two different frameworks there are few similarities(apart from the common goal of utilized in interface design) between them. 1. Both frameworks are based on the **Virtual DOM** model 2. They provide features such Component-based structure and reactivity 3. They are intended for working with the root library, while all the additional tasks are transferred to other libraries(routing, state management etc). **[⬆ Back to Top](#table-of-contents)** 75. ### What is the difference between VueJS and ReactJS? Even though VueJS and ReactJS share few common features there are many difference between them. Let's list down them in a table format. | Feature | VueJS | ReactJS | | --------------------- | ------------------------------------ | -------------------------------------------------- | | Type | JavaScript MVVM Framework | JavaScript Library | | Platform | Primarily focused on web development | Both Web and Native | | Learning Curve | Easy to learn the framework | A steep learning curve and requires deep knowledge | | Simplicity | Vue is simpler than React | React is more complex than Vue | | Bootstrap Application | Vue-cli | CRA (Create React App) | **[⬆ Back to Top](#table-of-contents)** 76. ### What are the advantages of VueJS over ReactJS? Vue has the following advantages over React 1. Vue is smaller and faster 2. The convenient templates ease the process of developing 3. It has simpler javascript syntax without learning JSX **[⬆ Back to Top](#table-of-contents)** 77. ### What are the advantages of ReactJS over VueJS? React has the following advantages over Vue 1. ReactJS gives more flexibility in large apps developing 2. Easy to test 3. Well-suited for mobile apps creation 4. The eco system is quite big and well matured. **[⬆ Back to Top](#table-of-contents)** 78. ### What are the differences between VueJS and Angular? The the syntax of Vue and Angular is common at some points because Angular is the basis for VueJS development in the beginning. But there are many differences between VueJS and Angular as listed, | Feature | VueJS | Angular | | --------------- | ------------------------------------------- | ------------------------------------------------------------------------ | | Complexity | Easy to learn, simple API and design | The framework is bit huge and need some learning curve on typescript etc | | Binding of Data | One-way binding | Two-way binding | | Learning Curve | Easy to learn the framework | A steep learning curve and requires deep knowledge | | Founders | Created by Former Google Employee | Powered by Google | | Initial Release | February 2014 | September 2016 | | Model | Based on Virtual DOM(Document Object Model) | Based on MVC(Model-View-Controller) | **[⬆ Back to Top](#table-of-contents)** 79. ### What are dynamic components? The dynamic component will allow you to dynamically switch between multiple components without updating the route of the application and even retaining the state of the component when switching back to the initial component. It works by using `<component>` tag with `v-bind:is` attribute which accept dynamic component. Let's create a dynamic component vue instance to switch between different pages of a website, ```javascript new Vue({ el: '#app', data: { currentPage: 'home' }, components: { home: { template: "<p>Home</p>" }, about: { template: "<p>About</p>" }, contact: { template: "<p>Contact</p>" } } }) ``` Now you can use the dynamic component which holds the current page, ```html <div id="app"> <component v-bind:is="currentPage"> <!-- component changes when currentPage changes! --> <!-- output: Home --> </component> </div> ``` The component will be unmounted when it is switched away but it is possible to force the inactive component alive using `<keep-alive>` component **Note:** The value of `:is` attribute can be either name of the registered component or the actual imported object itself. **[⬆ Back to Top](#table-of-contents)** 80. ### What is the purpose of keep alive tag? Keep-alive tag is an abstract component used to preserve component state or avoid re-rendering. When you wrapped < keep-alive> tag around a dynamic component, it caches the inactive component instances without destroying them. Let's see the example usage of it, ```javascript <!-- Inactive components will be cached! --> <keep-alive> <component v-bind:is="currentTabComponent"></component> </keep-alive> ``` When there are multiple conditional children, it requires that only one child is rendered at a time. ```javascript <!-- multiple conditional children --> <keep-alive> <comp-a v-if="a > 1"></comp-a> <comp-b v-else></comp-b> </keep-alive> ``` **Note:** Remember that keep-alive tag doesn't render a DOM element itself, and doesn't show up in the component parent chain. **[⬆ Back to Top](#table-of-contents)** 81. ### What are async components? In large applications, we may need to divide the app into smaller chunks and only load a component from the server when it's needed. To make this happen, Vue allows you to define your component as a factory function that asynchronously resolves your component definition. These components are known as async component. Let's see an example of async component using webpack code-splitting feature, ```javascript Vue.component('async-webpack-example', function (resolve, reject) { // Webpack automatically split your built code into bundles which are loaded over Ajax requests. require(['./my-async-component'], resolve) }) ``` Vue will only trigger the factory function when the component needs to be rendered and will cache the result for future re-renders. **[⬆ Back to Top](#table-of-contents)** 82. ### What is the structure of async component factory? Async component factory is useful to resolve the component asynchronously. The async component factory can return an object of the below format. ```javascript const AsyncComponent = () => ({ // The component to load (should be a Promise) component: import('./MyComponent.vue'), // A component to use while the async component is loading loading: LoadingComponent, // A component to use if the load fails error: ErrorComponent, // Delay before showing the loading component. Default: 200ms. delay: 200, // The error component will be displayed if a timeout is // provided and exceeded. Default: Infinity. timeout: 3000 }) ``` **[⬆ Back to Top](#table-of-contents)** 83. ### What are inline templates? If you keep an `inline-template` on a child component then it will use its inner content as a template instead of treating as reusable independent content. ```javascript <my-component inline-template> <div> <h1>Inline templates</h1> <p>Treated as component component owne content</p> </div> </my-component> ``` **Note:** Even though this inline-templates gives more flexibility for template authoring, it is recommended to define template using template property or <template> tag inside .vue component. **[⬆ Back to Top](#table-of-contents)** 84. ### What are X Templates? Apart from regular templates and inline templates, you can also define templates using a script element with the type `text/x-template` and then referencing the template by an id. Let's create a x-template for simple use case as below, ```javascript <script type="text/x-template" id="script-template"> <p>Welcome to X-Template feature</p> </script> ``` Now you can define the template using reference id, ```javascript Vue.component('x-template-example', { template: '#script-template' }) ``` **[⬆ Back to Top](#table-of-contents)** 85. ### What are recursive components? The Components that can recursively invoke themselves in their own template are known as recursive components. ```javascript Vue.component('recursive-component', { template: `<!--Invoking myself!--> <recursive-component></recursive-component>` }); ``` Recursive components are useful for displaying comments on a blog, nested menus, or basically anything where the parent and child are the same, eventhough with different content. **Note:** Remember that recursive component can lead infinite loops with `max stack size exceeded` error, so make sure recursive invocation is conditional(for example, v-if directive). **[⬆ Back to Top](#table-of-contents)** 86. ### How do you resolve circular dependencies between components? In complex applications, vue components will actually be each other's descendent and ancestor in the render tree. Let's say componentA and componentB included in their respective templates which makes circular dependency, ```javascript //ComponentA <div> <component-b > </div> ``` ```javascript //ComponentB <div> <component-a > </div> ``` This can be solved by either registering(or wait until) the child component in `beforeCreate` hook or using webpack's asynchronous import while registering the component, **Solution1:** ```javascript beforeCreate: function () { this.$options.components.componentB = require('./component-b.vue').default } ``` **Solution2:** ```javascript components: { componentB: () => import('./component-b.vue') } ``` **[⬆ Back to Top](#table-of-contents)** 87. ### How do you make sure vue application is CSP complaint? Some environments(Google Chrome Apps) prohibits the usage of `new Function()` for evaluating expressions and the full builds of vue applications depends on this feature to compile templates. Due to this reason, the full builds of VueJS application are not CSP complaint. In this case you can use **runtime-only** builds with Webpack + vue-loader or Browserify + vueify technology stack through which templates will be precompiled into render functions. This way you can make sure VueJS applications are 100% CSP complaint. **[⬆ Back to Top](#table-of-contents)** 88. ### What is the difference between full and runtime only builds? There are two types of builds provided by VueJS, **1. Full:** These are the builds that contain both the compiler and the runtime. **2. Runtime Only:** These builds doesn't include compiler but the code is responsible for creating Vue instances, rendering and patching virtual DOM. These are about 6KB lighter min+gzip. **[⬆ Back to Top](#table-of-contents)** 89. ### List down different builds of vuejs? Below are the list of different builds of VueJS based on type of build, | Type | UMD | CommonJS | ES Module (for bundlers) | ES Module (for browsers) | | ------------------------- | ------------------ | --------------------- | ------------------------ | ------------------------ | | Full | vue.js | vue.common.js | vue.esm.js | vue.esm.browser.js | | Runtime only | vue.runtime.js | vue.runtime.common.js | vue.runtime.esm.js | NA | | Full (production) | vue.min.js | NA | NA | vue.esm.browser.min.js | | Runtime-only (production) | vue.runtime.min.js | NA | NA | NA | **[⬆ Back to Top](#table-of-contents)** 90. ### How do you configure vuejs in webpack? You can configure vueJS in webpack using alias as below, ```javascript module.exports = { // ... resolve: { alias: { 'vue$': 'vue/dist/vue.esm.js' // 'vue/dist/vue.common.js' for webpack 1 } } } ``` **[⬆ Back to Top](#table-of-contents)** 91. ### What is the purpose of vuejs compiler? The compiler is is responsible for compiling template strings into JavaScript render functions. For example, the below code snippet shows the difference of templates which need compiler and not, ```javascript // this requires the compiler new Vue({ template: '<div>{{ message }}</div>' }) // this does not new Vue({ render (h) { return h('div', this.message) } }) ``` **[⬆ Back to Top](#table-of-contents)** 92. ### What is Dev Tools and its purpose? DevTools is a browser extension allowing you to inspect and debug your Vue applications in a more user-friendly interface. You can find the below extensions for different browsers or environments, 1. Chrome Extension 2. Firefox Addon 3. Standalone Electron app (works with any environment) The DevTools plugins can be used as shown in the below snapshot, <img src="https://github.com/sudheerj/vuejs-interview-questions/blob/master/images/DevTools.png" width="700" height="500"> **Note:** 1. If the page uses a production/minified build of Vue.js, devtools inspection is disabled by default so the Vue pane won't show up. 2. To make it work for pages opened via `file://` protocol, you need to check "Allow access to file URLs" for this extension in Chrome's extension management panel. **[⬆ Back to Top](#table-of-contents)** 93. ### What is the browser support of VueJS? It supports all ECMAScript5 complaint browsers as mentioned in this [url](https://caniuse.com/#feat=es5). VueJS doesn't support IE8 browser and below, because it uses ECMAScript 5 features that are un-shimmable(require support from the underlying JS engine) in IE8. **[⬆ Back to Top](#table-of-contents)** 94. ### How do you use various CDNs? VueJS is available in jsdelivr, unpkg and cdnjs etc CDNs. Normally you can use them for prototyping or learning purposes. For example, you can use them using jsdelivr with latest versions as below, ```javascript <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script> ``` You can use it for native ES modules as below, ```javascript <script type="module"> import Vue from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.esm.browser.js' </script> ``` **Note:** You can remove version number to get latest version. **[⬆ Back to Top](#table-of-contents)** 95. ### How do you force update? It is extremely rare situation of having to manually force an update despite the fact that no reactive data has changed. i.e, To force the Vue instance to re-render manually. You can do it force update using **vm.$forceUpdate() ** API method. **Note:** It does not affect all child components but only the instance itself and child components with inserted slot content. **[⬆ Back to Top](#table-of-contents)** 96. ### What is the purpose of vuejs once directive? If you want to render `a lot of static content` then you need to make sure it only evaluated once and then cached thereafter. In this case, you can use `v-once` directive by wrapping at the root level. The example usage of v-once directive would be as below, ```javascript Vue.component('legal-terms', { template: ` <div v-once> <h1>Legal Terms</h1> ... a lot of static content goes here... </div> ` }) ``` **Note:** It is recommended not to overuse unless there is slow rendering due to lot of static content. **[⬆ Back to Top](#table-of-contents)** 97. ### How do you access the root instance? The root instance(new Vue()) can be accessed with the `$root` property. Let's see the usage of root instance with an example. First let's create a root instance with properties and methods as below, ```javascript // The root Vue instance new Vue({ data: { age: 26 }, computed: { fullName: function () { /* ... */ } }, methods: { interest: function () { /* ... */ } } }) ``` Now you can access root instance data and it's methods with in subcomponents as below, ```javascript // Get root data this.$root.age // Set root data this.$root.age = 29 // Access root computed properties this.$root.fullName // Call root methods this.$root.interest() ``` It is recommend using Vuex to manage state instead of using root instance as a global store. **[⬆ Back to Top](#table-of-contents)** 98. ### List out top 10 organizations using Vuejs? Below are the top 10 organizations using VueJS for their applications or products, 1. Facebook - Used on marketing side of its Newsfeed 2. Netflix - Used in two internal apps for building movie streaming interfaces 3. Adobe - Used for Portfolio, a custom website builder designed to help users showcase their creative work 4. Xiaomi - Used for products where it sells from consumer electronics to software 5. Alibaba - Provide their apps an excellent experience to its customers 6. WizzAir - A budget airline WizzAir used for their customers user interface 7. EuroNews 8. Laracasts 9. GitLab 10. BMW **[⬆ Back to Top](#table-of-contents)** 99. ### What is the purpose of renderError? When the default render function encounters an error then you can use rennderError as an alternative render output. The error will be passed to renderError as the second argument. The example usage of renderError is as below, ```javascript new Vue({ render (h) { throw new Error('An error') }, renderError (h, err) { return h('div', { style: { color: 'red' }}, err.stack) } }).$mount('#app') ``` **[⬆ Back to Top](#table-of-contents)** 100. ### How do you access parent instance? The $parent object refers to the **immediate outer scope**. The parent will be accessible as `this.$parent` for the child, and the child will be pushed into the parent's $children array. It establishes a parent-child relationship between the two instances(parent and child). You can access parent data and properties similar to $root. **[⬆ Back to Top](#table-of-contents)** 101. ### What is vuex? Vuex is a state management pattern + library (Flux-inspired Application Architecture) for Vue.js applications. It serves as a centralized store for all the components in an application, with rules ensuring that the state can only be mutated in a predictable fashion. **[⬆ Back to Top](#table-of-contents)** 102. ### What are the major components of State Management Pattern? The state management has state, view and actions as major components. The pattern followed by these components in a application is known as State Management Pattern. Below are the components in a detail, 1. The **state**, which is the source of truth that drives our app 2. The **view**, which is just a declarative mapping of the state 3. The **actions**, which are the possible ways the state could change in reaction to user inputs from the view. Let us take a counter example which follows state management pattern with the above 3 components, ```javascript new Vue({ // state data () { return { count: 0 } }, // view template: ` <div>{{ count }}</div> `, // actions methods: { increment () { this.count++ } } }) ``` **[⬆ Back to Top](#table-of-contents)** 103. ### How do you represent one way data flow in vuex? Vue.js has a one-way data flow model, through the props property. The same concept can be represented in vuex has below, <img src="https://github.com/sudheerj/vuejs-interview-questions/blob/master/images/flow.png" width="400" height="500"> **[⬆ Back to Top](#table-of-contents)** 104. ### What is a vuejs loader? Vue loader is a loader for webpack that allows you to author Vue components in a format called Single-File Components (SFCs). For example, it authors HelloWorld component in a SFC, ```javascript <template> <div class="greeting">{{ message }}</div> </template> <script> export default { data () { return { message: 'Hello world for vueloader!' } } } </script> <style> .greeting { color: blue; } </style> ``` **[⬆ Back to Top](#table-of-contents)** 105. ### How do you configure vue loader in webpack? Vue Loader's configuration is a bit different from other loaders by adding Vue Loader's plugin to your webpack config. The vue loader plugin is required for cloning any other rules(js and css rules) defined and applying them to the corresponding language blocks(<script> and <style>) in .vue files. For example, the simple demonistration of webpack configuration for vue loader would be as below, ```javascript // webpack.config.js const VueLoaderPlugin = require('vue-loader/lib/plugin') module.exports = { mode: 'development', module: { rules: [ { test: /\.vue$/, loader: 'vue-loader' }, // this will apply to both plain `.js` files and `<script>` blocks in `.vue` files { test: /\.js$/, loader: 'babel-loader' }, // this will apply to both plain `.css` files and `<style>` blocks in `.vue` files { test: /\.css$/, use: [ 'vue-style-loader', 'css-loader' ] } ] }, plugins: [ // make sure to include the plugin for cloning and mapping them to respective language blocks new VueLoaderPlugin() ] } ``` **[⬆ Back to Top](#table-of-contents)** 106. ### What are asset url transform rules? Below are the list of Asset URL transform rules 1. **Absolute path**: If the URL is an absolute path (for example, /images/loader.png)then it will be preserved as-is. 2. **Relative path**: If the URL starts with `.` (for example, ./images/loader.png) then it will be interpreted as a relative module request and resolved based on the folder structure on your file system. 3. **URLs starts with ~ symbol**: If the URL starts with `~` symbol(for example, ./some-node-package/loader.png) then it is interpreted as a module request. This way it can reference assets inside node modules too. 4. **URLs starts with @ symbol**: If the URL starts with `@` symbol then it is interpreted as a module request. This is useful if your webpack config has an alias for @, which by default points to `/src` path. **[⬆ Back to Top](#table-of-contents)** 107. ### How do you work with preprocessors using vue loader? `Vue-loader` will automatically infer the proper loaders to use based on the `lang` attribute of a language block and the rules defined in webpack config. You can use pre-processors such as `SASS,LESS, Stylus and PostCSS` using vuejs loader. **[⬆ Back to Top](#table-of-contents)** 108. ### What is scoped CSS? Scoped CSS is a mechanism in VueJS Single File Components(SFC) that prevents styles from leaking out of the current component and affecting other unintended components on your page. i.e, When a <style> tag has the scoped attribute, its CSS will apply to elements of the current component only. It uses PostCSS to transform scoped css to plain CSS. Let's take an example usage of scoped css, ```javascript <style scoped> .greeting { color: green; } </style> <template> <div class="greeting">Let's start Scoped CSS</div> </template> ``` The above code will be converted to plain CSS, ```javascript <style scoped> .greeting[data-v-f3f3eg9] { color: green; } </style> <template> <div class="greeting" data-v-f3f3eg9>Let's start Scoped CSS</div> </template> ``` **[⬆ Back to Top](#table-of-contents)** 109. ### Is it possible to mix both local and global styles? Yes, you can include both scoped and non-scoped styles in the same component. If you don't mention scoped attribute then it will become global style. ```javascript <style> /* global styles */ </style> <style scoped> /* local styles */ </style> ``` **[⬆ Back to Top](#table-of-contents)** 110. ### How do you use deep selectors? In scoped css, if you need to modify the styles of a child component using deep selectors(i,e from parent scoped css) then you need to use **>>>** combinator. For example, the scoped deep selector on parent scoped css would be as below, ```javascript <style scoped> .class1 >>> .class2 { /* ... */ } </style> ``` It will be converted as, ```javascript .class1[data-v-f3f3eg9] .class2 { /* ... */ } ``` **Note:** If you preprocessors such as SASS then it may not be able to processs >>> properly. In such cases use the /deep/ or ::v-deep combinator instead >>> combinator. **[⬆ Back to Top](#table-of-contents)** 111. ### Is parent styles leaked into child components in scoped css? The parent component's styles will not leak into child components. But a child component's root node will be affected by both the parent's scoped CSS and the child's scoped CSS. i.e, your child component's root element has a class that also exists in the parent component, the parent component's styles will leak to the child. Anyway this is by design so that the parent can style the child root element for layout purposes. For example, the background color property of parent component leaked into child component as below, //parent.vue ```javascript <template> <div class="wrapper"> <p>parent</p> <ChildMessageComponent/> </div> </template> <script> import ChildMessageComponent from "./components/child"; export default { name: "App", components: { ChildMessageComponent } }; </script> <style scoped> .wrapper { background: blue; } </style> ``` //child.vue ```javascript <template> <div class="wrapper"> <p>child</p> </div> </template> <script> export default { name: "Hello, Scoped CSS", }; </script> <style scoped> .wrapper { background: red; } </style> ``` Now the background color of child wrapper is going to be blue instead red. **[⬆ Back to Top](#table-of-contents)** 112. ### How do you style dynamic generated content using scoped css? The scoped css style doesn't impact v-html directive's dynamically generated content. In this case, you can use deep selectors to solve this styling issue. **[⬆ Back to Top](#table-of-contents)** 113. ### Is CSS modules supported in Vuejs? Yes, vue-loader provides first-class integration with CSS Modules as an alternative for simulated scoped CSS. **[⬆ Back to Top](#table-of-contents)** 114. ### Can I use runtime builds for all templates? No, templates (or any Vue-specific HTML) are ONLY allowed in .vue files and render functions are required in other cases. **[⬆ Back to Top](#table-of-contents)** 115. ### How to use CSS modules in vuejs? Below are the steps to use css modules in VueJS, 1. **Enable CSS modules:** CSS Modules must be enabled by passing modules: true option to css-loader ```javascript // webpack.config.js { module: { rules: [ // ... other rules omitted { test: /\.css$/, use: [ 'vue-style-loader', { loader: 'css-loader', options: { // enable CSS Modules modules: true, // customize generated class names localIdentName: '[local]_[hash:base64:8]' } } ] } ] } } ``` 2. **Add module attribute:** Add the module attribute to your `<style>` ```javascript <style module> .customStyle { background: blue; } </style> ``` 3. **Inject CSS modules:** You can inject CSS modules object with computed property $style ```javascript <template> <div :class="$style.blue"> Background color should be in blue </p> </template> ``` It can work with object/array syntax of :class binding. **[⬆ Back to Top](#table-of-contents)** 116. ### Can I use CSS modules for preprocessors? Yes, you can use preprocessors with CSS Modules. For example, sass-loader can configured in webpack file for sass preprocessor. ```javascript // webpack.config.js -> module.rules { test: /\.scss$/, use: [ 'vue-style-loader', { loader: 'css-loader', options: { modules: true } }, 'sass-loader' ] } ``` **[⬆ Back to Top](#table-of-contents)** 117. ### Is it possible to use custom inject name for CSS modules? You can customize the name of the injected computed property by giving the module attribute a value. This will be helpful to avoid overwriting injected styled if you have more than one <style> tags in a single *.vue component. For example, you can use module attribute as below, ```javascript <style module="a"> /* identifiers injected as a */ </style> <style module="b"> /* identifiers injected as b */ </style> ``` **[⬆ Back to Top](#table-of-contents)** 118. ### What is hot reloading in vue loader? Hot reloading is not about reloading the page when you edit any .vue file. Instead, when you edit a *.vue file, all instances of that component will be swapped in without reloading the page. It improves the development experience when you are tweaking the templates or styling of your components. **[⬆ Back to Top](#table-of-contents)** 119. ### What is the default behavior of hot reloading? Hot Reload is always enabled except below situations: 1. webpack target is node (SSR) 2. webpack minifies the code 3. process.env.NODE_ENV === 'production' **[⬆ Back to Top](#table-of-contents)** 120. ### How do you disable hot reloading explicitly? You can use `hotReload: false` option to disable the Hot Reload explicitly. It can be configured as below, ```javascript module: { rules: [ { test: /\.vue$/, loader: 'vue-loader', options: { hotReload: false // disables Hot Reload } } ] } ``` **[⬆ Back to Top](#table-of-contents)** 121. ### How do you use hot reloading? The vue loader plugin internally uses hot reloading. If you are scaffolding project with `vue-cli`, hot reloading comes out of the box but if you are manually setting up the project then hot reloading is enabled by default with `webpack-dev-server --hot` command. **[⬆ Back to Top](#table-of-contents)** 122. ### What are state preservation rules in hot reloading? Below are the state preservation rules in hot reloading, 1. When editing the `<template>` of a component, instances of the edited component will re-render in place, preserving all current private state. 2. When editing the `<script>` part of a component, instances of the edited component will be destroyed and re-created in place. 3. When editing the `<style>` hot reload operates on its own via vue-style-loader without affecting application state. **[⬆ Back to Top](#table-of-contents)** 123. ### How to create functional components using vue loader? You can create functional components by adding functional attribute to template block, ```javascript <template functional> <div>{{ props.msg }}</div> </template> ``` **[⬆ Back to Top](#table-of-contents)** 124. ### How do you access global properties of functional components? If you need to access properties defined globally on `Vue.prototype` then you can access them on parent, ```javascript <template functional> <div>{{ parent.$someProperty }}</div> </template> ``` **[⬆ Back to Top](#table-of-contents)** 125. ### How do you perform testing in vuejs? You can perform testing in two ways, 1. **Using vue-cli:** It offers pre-configured unit testing and e2e testing setups 2. **Manual setup:** You can manually setting up unit tests for *.vue files using either mocha-webpack or jest **[⬆ Back to Top](#table-of-contents)** 126. ### How do you apply linting for css? The stylelint linter supports linting style parts of Vue single file components. You can run linter on particular vue file as below, ```javascript stylelint MyComponent.vue ``` Other option is configuring stylelint-webpack-plugin in webpack. It can be configured as a dev dependency. ```javascript // webpack.config.js const StyleLintPlugin = require('stylelint-webpack-plugin'); module.exports = { // ... other options plugins: [ new StyleLintPlugin({ files: ['**/*.{vue,htm,html,css,sss,less,scss,sass}'], }) ] } ``` **[⬆ Back to Top](#table-of-contents)** 127. ### How do you use eslint plugin? The official `eslint-plugin-vue` supports linting both the template and script parts of Vue single file components. You can configure plugin in your ESLint config, ```javascript // .eslintrc.js module.exports = { extends: [ "plugin:vue/essential" ] } ``` You can run linter on particular component as below, ```javascript eslint --ext js,vue MyComponent.vue ``` **[⬆ Back to Top](#table-of-contents)** 128. ### What is the purpose of eslint loader? You can use `eslint-loader` for *.vue files in order to automatically linted on save during development. It can be installed as npm module, ```javascript npm install -D eslint eslint-loader ``` After that you need to add it as pre-loader, ```javascript // webpack.config.js module.exports = { // ... other options module: { rules: [ { enforce: 'pre', test: /\.(js|vue)$/, loader: 'eslint-loader', exclude: /node_modules/ } ] } } ``` **[⬆ Back to Top](#table-of-contents)** 129. ### What is CSS extraction? `CSS Extraction` is used to extract all the processed CSS in all Vue components into a single CSS file. For webpack4, you need to install below npm command, ```javascript npm install -D mini-css-extract-plugin ``` You can configure this plugin in webpack as below, ```javascript // webpack.config.js var MiniCssExtractPlugin = require('mini-css-extract-plugin') module.exports = { // other options... module: { rules: [ // ... other rules omitted { test: /\.css$/, use: [ process.env.NODE_ENV !== 'production' ? 'vue-style-loader' : MiniCssExtractPlugin.loader, 'css-loader' ] } ] }, plugins: [ // ... Vue Loader plugin omitted new MiniCssExtractPlugin({ filename: 'style.css' }) ] } ``` **[⬆ Back to Top](#table-of-contents)** 130. ### What are custom blocks? You can define custom language blocks inside *.vue files based on the `lang` attribute of the block, the block's tag name, and the rules in your webpack config. You can also use `resourceQuery` to match a rule against a custom block with no lang. For example, to match against `<message>` custom blocks. ```javascript { module: { rules: [ { resourceQuery: /blockType=message/, loader: 'loader-to-use' } ] } } ``` **[⬆ Back to Top](#table-of-contents)** 131. ### What are the features of stylelint? Below are the list of major stylelint features 1. It has more than **160 built-in rules** to catch errors, apply limits and enforce stylistic conventions 2. Understands **latest CSS syntax** including custom properties and level 4 selectors 3. It **extracts embedded styles** from HTML, markdown and CSS-in-JS object & template literals 4. Parses **CSS-like syntaxes** like SCSS, Sass, Less and SugarSS 5. Supports **Plugins** for reusing community plugins and creating own plugins **[⬆ Back to Top](#table-of-contents)** 132. ### What are the principles for vuex application structure? Vuex enforces below rules to structure any application. 1. Application-level state is centralized in the store. 2. The only way to mutate the state is by committing mutations, which are synchronous transactions. 3. Asynchronous logic should be encapsulated in, and can be composed with actions. The project structure for any non-trivial application would be as below, <img src="https://github.com/sudheerj/vuejs-interview-questions/blob/master/images/vuex-app-structure.png" width="700" height="500"> **[⬆ Back to Top](#table-of-contents)** 133. ### Does Vuex support hot reloading? Yes, vuex supports hot-reloading for mutations, modules, actions and getters during development. You need to use either webpack's hot module replacement API or browserify's hot module replacement plugin. **[⬆ Back to Top](#table-of-contents)** 134. ### What is the purpose of hotUpdate API of vuex store? The store.hotUpdate() API method is used for mutations and modules. For example, you need to configure vuex store as below, ```javascript // store.js import Vue from 'vue' import Vuex from 'vuex' import mutations from './mutations' import myModule from './modules/myModule' Vue.use(Vuex) const state = { message: "Welcome to hot reloading" } const store = new Vuex.Store({ state, mutations, modules: { moduleA: myModule } }) if (module.hot) { // accept actions and mutations as hot modules module.hot.accept(['./mutations', './modules/newMyModule'], () => { // Get the updated modules const newMutations = require('./mutations').default const newMyModule = require('./modules/myModule').default //swap in the new modules and mutations store.hotUpdate({ mutations: newMutations, modules: { moduleA: newMyModule } }) }) } ``` **[⬆ Back to Top](#table-of-contents)** 135. ### How do you test mutations? Since mutations are just functions that completely rely on their arguments it will be easier to test. You need to keep mutations inside your store.js file and should also export the mutations as a named export apart from default export. Let's take an example of increment mutations, ```javascript // mutations.js export const mutations = { increment: state => state.counter++ } ``` And test them using mocha and chai as below, ```javascript // mutations.spec.js import { expect } from 'chai' import { mutations } from './store' // destructure assign `mutations` const { increment } = mutations describe('mutations', () => { it('INCREMENT', () => { // mock state const state = { counter: 10 } // apply mutation increment(state) // assert result expect(state.counter).to.equal(11) }) }) ``` **[⬆ Back to Top](#table-of-contents)** 136. ### How do you test your getters? It is easier to test getters similar to mutations. It is recommended to test these getters if they have complicated computation. Let's take a simple todo filter as a getter ```javascript // getters.js export const getters = { filterTodos (state, status) { return state.todos.filter(todo => { return todo.status === status }) } } ``` And the test case for above getter as follows, ```javascript // getters.spec.js import { expect } from 'chai' import { getters } from './getters' describe('getters', () => { it('filteredTodos', () => { // mock state const state = { todos: [ { id: 1, title: 'design', status: 'Completed' }, { id: 2, title: 'testing', status: 'InProgress' }, { id: 3, title: 'development', status: 'Completed' } ] } // mock getter const filterStatus = 'Completed' // get the result from the getter const result = getters.filterTodos(state, filterStatus) // assert the result expect(result).to.deep.equal([ { id: 1, title: 'design', status: 'Completed' }, { id: 2, title: 'development', status: 'Completed' } ]) }) }) ``` **[⬆ Back to Top](#table-of-contents)** 137. ### What is the procedure to run tests in node? By proper mocking, you can bundle tests with webpack and run them on node without having depenceny on Browser API. It involves 2 steps, 1. **Create webpack config:** Create webpack config with proper .babelrc ```javascript // webpack.config.js module.exports = { entry: './test.js', output: { path: __dirname, filename: 'test-bundle.js' }, module: { loaders: [ { test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ } ] } } ``` 2. **Run testcases:** First you need to bundle and then run them using mocha as below, ```javascript webpack mocha test-bundle.js ``` **[⬆ Back to Top](#table-of-contents)** 138. ### What is the procedure to run tests in browser? Below are the steps to run tests in real browser, 1. Install `mocha-loader`. 2. Configure webpack config entry point to 'mocha-loader!babel-loader!./test.js'. 3. Start webpack-dev-server using the config. 4. Go to `localhost:8080/webpack-dev-server/test-bundle` to see the test result **[⬆ Back to Top](#table-of-contents)** 139. ### What is the purpose of strict mode in vuex? In strict mode, whenever Vuex state is mutated outside of mutation handlers, an error will be thrown. It make sure that all state mutations can be explicitly tracked by debugging tools. You can just enable this by passing `strict: true` while creating the vuex store. ```javascript const store = new Vuex.Store({ // ... strict: true }) ``` **[⬆ Back to Top](#table-of-contents)** 140. ### Can I use strict mode in production environment? No, it is not recommended to use strict mode in production environment. Strict mode runs a synchronous deep watcher on the state tree for detecting inappropriate mutations and it can be quite expensive when you perform large amount of mutations. i.e, It can impact performance if you enable in production mode. Hence, it should be handled through build tools, ```javascript const store = new Vuex.Store({ // ... strict: process.env.NODE_ENV !== 'production' }) ``` **[⬆ Back to Top](#table-of-contents)** 141. ### What is vuex plugin? The vuex plugin is an option hat exposes hooks for each mutation. It is a normal function that receives the store as the only argument. You can create your own plugin or use built-in plugins. The plugin skeleton would be as below, ```javascript const myPlugin = store => { // called when the store is initialized store.subscribe((mutation, state) => { // called after every mutation. // The mutation comes in the format of `{ type, payload }`. }) } ``` After that plugin can be configured for plugins options as below, ```javascript const store = new Vuex.Store({ // ... plugins: [myPlugin] }) ``` **[⬆ Back to Top](#table-of-contents)** 142. ### How do you mutate state in plugins? Similar to components you can't mutate state directly but they can trigger changes by by committing mutations. This way a plugin can be used to sync a data source to the store. For example, createWebSocketPlugin plugin is used to sync a websocket data source to the store. ```javascript export default function createWebSocketPlugin (socket) { return store => { socket.on('data', data => { store.commit('receiveData', data) }) store.subscribe(mutation => { if (mutation.type === 'UPDATE_DATA') { socket.emit('update', mutation.payload) } }) } } ``` And then configure plugin in vuex store as below ```javascript const plugin = createWebSocketPlugin(socket) const store = new Vuex.Store({ state, mutations, plugins: [plugin] }) ``` **[⬆ Back to Top](#table-of-contents)** 143. ### What is vuex store? A Vuex "store" is basically a container that holds your application state. The store creation is pretty straightforward. Below are the list of instructions to use vuex in an increment application, 1. Configure vuex in vuejs ecosystem ```javascript import Vuex from "vuex"; Vue.use(Vuex) ``` 2. Provide an initial state object and some mutations ```javascript // Make sure to call Vue.use(Vuex) first if using a module system const store = new Vuex.Store({ state: { count: 0 }, mutations: { increment (state) { state.count++ } } }) ``` 3. Trigger state change with commit and access state variables, ```javascript store.commit('increment') console.log(store.state.count) // -> 1 ``` **[⬆ Back to Top](#table-of-contents)** 144. ### What are the differences of vuex store and plain global object? Below are the two major differences between vuex store and plain global object, 1. **Vuex stores are reactive:** If the store's state changes then vue components will reactively and efficiently get updated 2. **Cannot directly mutate the store's state:** The store's state is changed by explicitly committing mutations to ensure that every state change leaves a track-able record for tooling purpose **[⬆ Back to Top](#table-of-contents)** 145. ### What is the reason not to update the state directly? We want to explicitly track application state in order to implement tools that can log every mutation, take state snapshots, or even perform time travel debugging. So we need to commit a mutation instead of changing store's state directly. **[⬆ Back to Top](#table-of-contents)** 146. ### What is Single state tree? Vuex's single state tree is single object contains all your application level state and serves as the "single source of truth". It does not conflict with modularity when you split state and mutations into sub modules. **[⬆ Back to Top](#table-of-contents)** 147. ### How do you install vuex? You can install vuex using npm or yarn as below, ```javascript npm install vuex --save (or) yarn add vuex ``` In a module system, you must explicitly install Vuex via Vue.use() ```javascript import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) ``` (OR) You can also install it using CDN links such as unpkg.cpm which provides NPM-based CDN links. Just include vuex after Vue and it will install itself automatically. ```javascript <script src="https://unpkg.com/vue.js"></script> <script src="https://unpkg.com/vuex.js"></script> ``` **Note:** You can use a specific version/tag via URLs like https://unpkg.com/[email protected]. If you don't mention any version then it will point to latest version. **[⬆ Back to Top](#table-of-contents)** 148. ### Do I need promise for vuex? Yes, vuex requires Promise. If your supporting browsers do not implement Promise (e.g. IE), you can use a polyfill library, such as es6-promise using npm or yarn. ```javascript npm install es6-promise --save # NPM yarn add es6-promise # Yarn ``` After that import into anywhere in your application, ```javascript import 'es6-promise/auto' ``` **[⬆ Back to Top](#table-of-contents)** 149. ### How do you display store state in vue components? Since Vuex stores are reactive, you can retrieve" state from store by simply returning store's state from within a computed property. i.e, Whenever store state changes, it will cause the computed property to re-evaluate, and trigger associated DOM updates. Let's take a hello word component which display store's state in the template, ```javascript // let's create a hello world component const Greeting = { template: `<div>{{ greet }}</div>`, computed: { greet () { return store.state.msg } } } ``` **[⬆ Back to Top](#table-of-contents)** 150. ### How do you inject store into child components? Vuex provides a mechanism to "inject" the store into all child components from the root component with the store option. It will be enabled by vue.use(vuex). For example, let's inject into our app component as below, ```javascript const app = new Vue({ el: '#app', // provide the store using the "store" option. // this will inject the store instance to all child components. store, components: { Greeting }, template: ` <div class="app"> <greeting></greeting> </div> ` }) ``` Now the store will be injected into all child components of the root and will be available on them as **this.$store ** ```javascript // let's create a hello world component const Greeting = { template: `<div>{{ greet }}</div>`, computed: { greet () { return this.$store.state.msg } } } ``` **[⬆ Back to Top](#table-of-contents)** 151. ### What is mapState helper? In Vuex application, creating a computed property every time whenever we want to access the store's state property or getter is going to be repetitive and verbose, especially if a component needs more than one state property. In this case, we can make use of the mapState helper of vuex which generates computed getter functions for us. Let's take an increment example to demonstrate mapState helper, ```javascript // in full builds helpers are exposed as Vuex.mapState import { mapState } from 'vuex' export default { // ... computed: mapState({ // arrow functions can make the code very succinct! username: state => state.username, // passing the string value 'username' is same as `state => state.username` usernameAlias: 'username', // to access local state with `this`, a normal function must be used greeting (state) { return this.localTitle + state.username } }) } ``` We can also pass a string array to mapState when the name of a mapped computed property is the same as a state sub tree name ```javascript computed: mapState([ // map this.username to store.state.username 'username' ]) ``` **[⬆ Back to Top](#table-of-contents)** 152. ### How do you combine local computed properties with mapState helper? You can use object spread operator syntax in order to combine mapState helper(which returns an object) with other local computed properties. This way it simplify merging techniques using utilities. ```javascript computed: { localComputed () { /* ... */ }, // mix this into the outer object with the object spread operator ...mapState({ // ... }) } ``` **[⬆ Back to Top](#table-of-contents)** 153. ### Do you need to replace entire local state with vuex? No, if a piece of state strictly belongs to a single component, it could be just fine leaving it as local state. i.e, Even though vuex used in the application, it doesn't mean that you need to keep all the local state in vuex store. Other than that the code becomes more verbose and indirect although it makes your state mutations more explicit and debuggable. **[⬆ Back to Top](#table-of-contents)** 154. ### What are vuex getters?? Vuex getters acts as computed properties for stores to compute derived state based on store state. Similar to computed properties, a getter's result is cached based on its dependencies, and will only re-evaluate when some of its dependencies have changed. Let's take a todo example which as completedTodos getter to find all completed todos, ```javascript const store = new Vuex.Store({ state: { todos: [ { id: 1, text: 'Vue course', completed: true }, { id: 2, text: 'Vuex course', completed: false }, { id: 2, text: 'Vue Router course', completed: true } ] }, getters: { completedTodos: state => { return state.todos.filter(todo => todo.completed) } } }) ``` **Note:** Getters receive state as first argument. **[⬆ Back to Top](#table-of-contents)** 155. ### What is a property style access? You can access values of store's getter object(store.getters) as properties. This is known as property style access. For example, you can access todo's status as a property, ```javascript store.getters.todosStatus ``` The getters can be passed as 2nd argument for other getters. For example, you can derive completed todo's count based on their status as below, ```javascript getters: { completedTodosCount: (state, getters) => { return getters.todosStatus === 'completed' } } ``` **Note:** The getters accessed as properties are cached as part of Vue's reactivity system. **[⬆ Back to Top](#table-of-contents)** 156. ### What is a method style access? You can access store's state in a method style by passing arguments. For example, you can pass user id to find user profile information as below, ```javascript getters: { getUserProfileById: (state) => (id) => { return state.users.find(user => user.id === id) } } ``` After that you can access it as a method call, ```javascript store.getters.getUserProfileById(111); {id: '111', name: 'John', age: 33} ``` **[⬆ Back to Top](#table-of-contents)** 157. ### What is mapGetter helper?? The mapGetters is a helper that simply maps store getters to local computed properties. For example, the usage of getters for todo app would be as below, ```javascript import { mapGetters } from 'vuex' export default { computed: { // mix the getters into computed with object spread operator ...mapGetters([ 'completedTodos', 'todosCount', // ... ]) } } ``` **[⬆ Back to Top](#table-of-contents)** 158. ### What are mutations? Vuex mutations are similar to any events with a string `type` and a `handler`. The handler function is where we perform actual state modifications, and it will receive the state as the first argument. For example, the counter example with increment mutation would be as below, ```javascript const store = new Vuex.Store({ state: { count: 0 }, mutations: { increment (state) { // mutate state state.count++ } } }) ``` You can't directly invoke mutation instead you need to call `store.commit` with its type. The above mutation would be triggered as follows ```javascript store.commit('increment') ``` **[⬆ Back to Top](#table-of-contents)** 159. ### How do you commit with payload? You can also pass **payload** for the mutation as an additional argument to `store.commit`. For example, the counter mutation with payload object would be as below, ```javascript mutations: { increment (state, payload) { state.count += payload.increment } } ``` And then you can trigger increment commit ```javascript store.commit('increment', { increment: 20 }) ``` **Note:** You can also pass primitives as payload. **[⬆ Back to Top](#table-of-contents)** 160. ### What is object style commit? You can also commit a mutation is by directly using an object that has a **type** property. ```javascript store.commit({ type: 'increment', value: 20 }) ``` Now the entire object will be passed as the payload to mutation handlers(i.e, without any changes to handler signature). ```javascript mutations: { increment (state, payload) { state.count += payload.value } } ``` **[⬆ Back to Top](#table-of-contents)** 161. ### What are the caveats with vuex mutations? Since a Vuex store's state is made reactive by Vue, the same reactivity caveats of vue will apply to vuex mutations. These are the rules should be followed for vuex mutations, 1. It is recommended to initialize store's initial state with all desired fields upfront 2. Add new properties to state Object either by set method or object spread syntax ```javascript Vue.set(stateObject, 'newProperty', 'John') ``` (OR) ```javascript state.stateObject = { ...state.stateObject, newProperty: 'John' } ``` **[⬆ Back to Top](#table-of-contents)** 162. ### Why mutations should be synchronous? You need to remember that mutation handler functions must be synchronous. This is why because any state mutation performed in the callback is essentially un-trackable. It is going to be problematic when the devtool will need to capture a "before" and "after" snapshots of the state during the mutations. ```javascript mutations: { someMutation (state) { api.callAsyncMethod(() => { state.count++ }) } } ``` **[⬆ Back to Top](#table-of-contents)** 163. ### How do you perform mutations in components? You can commit mutations in components with either **this.$store.commit('mutation name')** or mapMutations helper to map component methods to **store.commit** calls. For example, the usage of mapMutations helper on counter example would be as below, ```javascript import { mapMutations } from 'vuex' export default { methods: { ...mapMutations([ 'increment', // map `this.increment()` to `this.$store.commit('increment')` // `mapMutations` also supports payloads: 'incrementBy' // map `this.incrementBy(amount)` to `this.$store.commit('incrementBy', amount)` ]), ...mapMutations({ add: 'increment' // map `this.add()` to `this.$store.commit('increment')` }) } } ``` **[⬆ Back to Top](#table-of-contents)** 164. ### Is it mandatory to use constants for mutation types? No, it is not mandatory. But you might observed that State management implementations such Flux and Redux use constants for mutation types. This convention is just a preference and useful to take advantage of tooling like linters, and putting all constants in a single file allows your collaborators to get an at-a-glance view of what mutations are possible in the entire application. For example, the mutations can be declared as below, ```javascript // mutation-types.js export const SOME_MUTATION = 'SOME_MUTATION' ``` And you can configure them in store as follows, ```javascript // store.js import Vuex from 'vuex' import { SOME_MUTATION } from './mutation-types' const store = new Vuex.Store({ state: { ... }, mutations: { // ES2015 computed property name feature to use a constant as the function name [SOME_MUTATION] (state) { // mutate state } } }) ``` **[⬆ Back to Top](#table-of-contents)** 165. ### How do you perform asynchronous operations? In Vuex, mutations are synchronous transactions. But if you want to handle asynchronous operations then you should use **actions**. **[⬆ Back to Top](#table-of-contents)** 166. ### What are differences between mutations and actions? Actions are similar to mutations, but there are two main differences, 1. Mutations perform mutations on the state, actions commit mutations. 2. Actions can contain arbitrary asynchronous operations unlike mutations. **[⬆ Back to Top](#table-of-contents)** 167. ### Give an example usage of actions? Vuex provides actions property similar mutations property in order to define action handlers. These action handlers receive context object as an argument which has same properties and methods of store instance. Let's see counter example to demonstrate increment action which commits respective mutation, ```javascript const store = new Vuex.Store({ state: { count: 0 }, mutations: { increment (state) { state.count++ } }, actions: { increment (context) { context.commit('increment') } } }) ``` **[⬆ Back to Top](#table-of-contents)** 168. ### How do you dispatch actions? Actions are simply triggered with the store.dispatch method as below, ```javascript store.dispatch('increment') ``` **[⬆ Back to Top](#table-of-contents)** 169. ### Can you dispatch an action using payload or object style? Yes, actions support both payload and object style format similar to mutations. ```javascript // dispatch with a payload store.dispatch('incrementAsync', { amount: 10 }) // dispatch with an object store.dispatch({ type: 'incrementAsync', amount: 10 }) ``` **[⬆ Back to Top](#table-of-contents)** 170. ### Can I use Styled Components in VueJS? Styled components is a CSS-in-JS library used mainly for ReactJS applications. If you want to use it for VueJS applications, there is a VueJS styled components library port available, however, it is not a common practice. **[⬆ Back to Top](#table-of-contents)** 171. ### How do you dispatch actions in components? You can dispatch actions in components with **this.$store.dispatch('action name')**, or use the **mapActions** helper which maps component methods to store.dispatch calls. For example, you can dispatch increment actions in counter component as below, ```javascript import { mapActions } from 'vuex' export default { // ... methods: { ...mapActions([ 'increment', // map `this.increment()` to `this.$store.dispatch('increment')` // `mapActions` also supports payloads: 'incrementBy' // map `this.incrementBy(amount)` to `this.$store.dispatch('incrementBy', amount)` ]), ...mapActions({ add: 'increment' // map `this.add()` to `this.$store.dispatch('increment')` }) } } ``` **[⬆ Back to Top](#table-of-contents)** 172. ### How do you compose actions? You can write multiple actions together to handle more complex async flows either by chaining promises or async/await. i.e, `store.dispatch` can handle Promise returned by the triggered action handler and it also returns Promise. Let's take two actions to see how they are combined and handled async flows, ```javascript actions: { actionOne ({ commit }) { return new Promise((resolve, reject) => { setTimeout(() => { commit('first mutation') resolve() }, 1000) }) }, actionTwo ({ dispatch, commit }) { return dispatch('actionA').then(() => { commit('second mutation') }) } } ``` As per the above example, When you try to dispatch actionTwo it dispatches actionOne first and then commits respective mutation. You can still simplify with async/await as below, ```javascript actions: { async actionOne ({ commit }) { commit('first mutation', await getDataAsPromise()) }, async actionTwo ({ dispatch, commit }) { await dispatch('actionOne') // wait for `actionA` to finish commit('second mutation', await getSomeDataAsPromise()) } } ``` **[⬆ Back to Top](#table-of-contents)** 173. ### What are modules in vuex? If you keep all state of our application in a single big state, the store can get really bloated. To solve this problem, Vuex allows us to divide our store into modules. Here, each module can contain its own state, mutations, actions, getters, and even nested modules. Let's take an example with multiple modules, configuring them in vuex and accessing different modules, ```javascript const moduleOne = { state: { ... }, mutations: { ... }, actions: { ... }, getters: { ... } } const moduleTwo = { state: { ... }, mutations: { ... }, actions: { ... }, getters: { ... } } const store = new Vuex.Store({ modules: { one: moduleOne, two: moduleTwo } }) store.state.one // -> `moduleOne's state store.state.two // -> `moduleTwo's state ``` **[⬆ Back to Top](#table-of-contents)** 174. ### What is module local state? When you use modules the local state will be available to mutations, getters and actions in different ways. 1. Both mutations and getters will receive module local state as first argument. ```javascript const moduleOne = { state: { count: 0 }, mutations: { increment (state) { state.count++; // Here state refers local module state } }, getters: { average (state) { return state.count / 2 } } } ``` 2. In actions, local state will be available as first argument. ```javascript const moduleOne = { actions: { incrementConditional ({ state, commit, rootState }) { if (state.count < rootState.count) { commit('increment') } } } } ``` **[⬆ Back to Top](#table-of-contents)** 175. ### What is namespacing in vuex? **[⬆ Back to Top](#table-of-contents)** 176. ### What is the default namespace behavior in vuex? By default, actions, mutations and getters inside modules are still registered under the global namespace. Because of that multiple modules react to the same mutation/action type. **[⬆ Back to Top](#table-of-contents)** 177. ### When do you reuse modules? Sometime you may need to create multiple instances of a module. For example, it is needed in the below cases, 1. If multiple stores that use the same module 2. Register the same module multiple times in the same store. In those cases, you need to assign to a variable and export it for reusability, ```javascript const MyReusableModule = { // state // mutations, actions, getters... } ``` **[⬆ Back to Top](#table-of-contents)** 178. ### What are the principles enforced by vuex? Vuex enforces below high-level principles, 1. The Application-level state need to be centralized in the store 2. The state should be mutated by committing mutations only(i.e, for synchronous transactions) 3. The actions should be used for asynchronous transactions. **[⬆ Back to Top](#table-of-contents)** 179. ### Can I perform mutations directly in strict mode? In strict mode, you can't mutate state directly using `v-model` attribute. If you use v-model it throws an error because mutation is not performed inside an explicit Vuex mutation handler. For example, the below input throws an error due to v-model usage ```javascript <input v-model="stateObject.message"> ``` In this case, you need to bind the <input>'s value. It can be resolved using value attribute as below, ```javascript <input :value="username" @input="updateProfile"> computed: { ...mapState({ username: state => state.user.username }) }, methods: { updateProfile (e) { this.$store.commit('updateProfile', e.target.value) } }, mutations: { updateProfile (state, username) { state.user.username = username } } ``` **[⬆ Back to Top](#table-of-contents)** 180. ### How to use model directive with two way computed property? You can still use model directive using two-way computed property with a setter. ```javascript <input v-model="username"> computed: { username: { get () { return this.$store.state.user.username }, set (value) { this.$store.commit('updateProfile', value) } } } mutations: { updateProfile (state, username) { state.user.username = username } } ``` **[⬆ Back to Top](#table-of-contents)** 181. ### What is Vue CLI? Vue CLI is a simple command line interface for scaffolding Vue.js projects. It will be helpful for rapid Vue.js development. You can install the npm package globally as below, ```javascript npm install -g @vue/cli # OR yarn global add @vue/cli ``` You can find the install version using `vue --version` command. **Note:** Vue CLI requires Node.js version 8.9 or above (8.11.0+ recommended). **[⬆ Back to Top](#table-of-contents)** 182. ### What are the features provided by Vue CLI? VueCLI provides below major features, 1. Interactive project scaffolding via @vue/cli 2. A rich collection of official plugins integrating the best tools in the frontend ecosystem. 3. A full graphical user interface to create and manage Vue.js projects. 4. Zero config rapid prototyping via combination of @vue/cli and @vue/cli-service-global 5. A runtime dependency (@vue/cli-service) built on top of webpack and extensible via plugins 183. ### What is instant prototyping? In Vue CLI, Instant prototyping is known as rapid prototyping with just a single *.vue file with the `vue serve`( similar to vue create) and `vue build` commands. But you need to install below global addon for this. ```javascript npm install -g @vue/cli-service-global # or yarn global add @vue/cli-service-global ``` You can also provide entry component for `vue serve` and target file for `vue build` using below commands ```javascript vue serve MyComponent.vue vue build MyComponent.vue ``` **[⬆ Back to Top](#table-of-contents)** 184. ### How do you create project using vue CLI? You can create project using `vue create` command ```javascript vue create my-app ``` You can either choose the default preset or select "Manually select features" to pick the features you need. The default preset prompt would be as below, <img src="https://github.com/sudheerj/vuejs-interview-questions/blob/master/images/cli-default-presets.png" width="400" height="500"> and the manual select features would be as below, <img src="https://github.com/sudheerj/vuejs-interview-questions/blob/master/images/cli-manual-features.png" width="400" height="500"> **[⬆ Back to Top](#table-of-contents)** 185. ### How do you create project using GUI? You can also create and manage projects using a graphical interface with the `vue ui` command. Once you apply this command, it opens a browser window with a GUI that guides you through the project creation process. <img src="https://github.com/sudheerj/vuejs-interview-questions/blob/master/images/cli-gui.png" width="400" height="500"> **[⬆ Back to Top](#table-of-contents)** 186. ### What are plugins in vue CLI? Vue CLI uses a plugin-based architecture where each plugin can modify the internal webpack configuration and inject commands to `vue-cli-service`. i.e, Each feature is implemented as a plugin. This architecture makes Vue CLI flexible and extensible. **[⬆ Back to Top](#table-of-contents)** 187. ### How do you install plugins in an existing Vue CLI project? You can install a plugin into an already created project with the `vue add` command. ```javascript vue add @vue/eslint (OR) vue add @vue/cli-plugin-eslint ``` You can also add options for plugin ```javascript vue add @vue/eslint --config airbnb --lintOn save ``` If a plugin is already installed, you can skip the installation and only invoke its generator with the `vue invoke` command. **[⬆ Back to Top](#table-of-contents)** 188. ### How to access local plugins in a project? If you need access to the plugin API in your project without creating a full plugin, you can use the `vuePlugins.service` option in your package.json file ```javascript { "vuePlugins": { "service": ["my-service.js"] } } ``` **[⬆ Back to Top](#table-of-contents)** 189. ### How do you create UI plugins kind of behavior? You can also add files that will behave like UI plugins with the `vuePlugins.ui` option ```javascript { "vuePlugins": { "ui": ["my-ui.js"] } } ``` **[⬆ Back to Top](#table-of-contents)** 190. ### What are presets? A Vue CLI preset is a JSON object that contains pre-defined options and plugins for creating a new project without interactive prompts to select them. During project creation(using vue create), the presets will be saved in a `~/.vuerc` which can modified at any time. For example, the generated JSON object(or preset) would be as below ```javascript { "useConfigFiles": true, "router": true, "vuex": true, "cssPreprocessor": "sass", "plugins": { "@vue/cli-plugin-babel": {}, "@vue/cli-plugin-eslint": { "config": "airbnb", "lintOn": ["save", "commit"] } } } ``` **[⬆ Back to Top](#table-of-contents)** 191. ### What is the versioning behavior in preset plugins? You can explicitly specify versions of the plugins being used. ```javascript { "plugins": { "@vue/cli-plugin-eslint": { "version": "^3.0.0", // ... other options for this plugin } } } ``` For official plugins, the CLI will automatically use the latest version available in the registry **[⬆ Back to Top](#table-of-contents)** 192. ### How do you allow plugin prompts? Each plugin can inject its own prompts during the project creation process irrespective of preset declarations using **prompts: true** setting For example, user can pick their own ESLint config using the below configuration ```javascript { "plugins": { "@vue/cli-plugin-eslint": { // let the users pick their own ESLint config "prompts": true } } } ``` **[⬆ Back to Top](#table-of-contents)** 193. ### What are remote presets? You can share a preset with other developers by publishing it in a git repo. The repo can be published in either github, GitLab or BitBucket. The repo will contain below files, 1. **preset.json:** The main file containing the preset data and it is required. 2. **generator.js:** A generator that can inject or modify files in the project. 3. **prompts.js:** A prompts file that can collect options for the generator. You can apply `--preset` option to use remote presets while creating the project ```javascript # use preset from GitHub repo vue create --preset username/repo my-project ``` **[⬆ Back to Top](#table-of-contents)** 194. ### Can I use local presets? Yes, Vue CLI will load local presets if the value for the --preset option is a relative or absolute file path, or ends with .json. i.e, You can work with local presets directly. These local presets avoids repeatedly pushing the preset to a remote repo to test. ```javascript // Directory contains preset.json file vue create --preset ./my-preset my-project (OR) vue create --preset my-preset.json my-project ``` **[⬆ Back to Top](#table-of-contents)** 195. ### What is the purpose of browserslist option? The `browserslist` option is available in package.json file in order to specify a range of browsers the project is supported. This value is going to be used by babel and autoprefixer to transpile javascript features and applying vendor prefixes. For example, you can declare it as follows, ```javascript "browserslist": [ "last 1 version", "> 1%", "IE 10" ] ``` **[⬆ Back to Top](#table-of-contents)** 196. ### How do you find VueJS version using API? The community plugins and components might need different strategies for different versions. In this case, you can use **Vue.version** which provides installed version of Vue as a string. For example, you can implement different logic based on different versions ```javascript let version = Number(Vue.version.split('.')[0]) if (version === 2) { // Vue v2.x.x } else if (version === 1) { // Vue v1.x.x } else { // Unsupported versions of Vue } ``` **[⬆ Back to Top](#table-of-contents)** 197. ### How do you create reactive objects? In version 3.0 you can create a reactive object with the reactive() API. ```javascript const reactiveState = reactive({ count: 0 }) ``` In version 2.6, you can create reactive objects with Vue.observable() global API. ```javascript const reactiveState = Vue.observable({ count: 0 }) ``` These observable objects can be used directly in computed properties and render functions. ```javascript const Demo = { render(h) { return h('button', { on: { click: () => { reactiveState.count++ }} }, `count is: ${state.count}`) } } ``` **[⬆ Back to Top](#table-of-contents)** 198. ### What is the purpose new slot directive? In Vue 2.6 version, the new slot syntax is provided using v-slot directive which aligns syntax with Vue 3.0. This is going to be replacement for old slot syntax. The comparison for old and new slot syntax: ```javascript <!-- old --> <user> <template slot="header" slot-scope="{ msg }"> text slot: {{ msg }} </template> </user> <!-- new --> <user> <template v-slot:header="{ msg }"> text slot: {{ msg }} </template> </user> ``` **[⬆ Back to Top](#table-of-contents)** 199. ### What is the use of compile method? VueJS provides compile method which is used to compile a template string into a render function. This method is only available in the full build. For example, you can compile template message: ```javascript var result = Vue.compile('<div><span>{{ msg }}</span></div>') new Vue({ data: { msg: 'Welcome to Vue world' }, render: result.render, staticRenderFns: result.staticRenderFns }) ``` **[⬆ Back to Top](#table-of-contents)** 200. ### What does nextTick do in VueJS? The nextTick method is just a comfortable way to execute a function after the data has been set, and the DOM has been updated. As an example, the usage is going to be similar to setTimeout: ```javascript // modify data vm.msg = 'Welcome to Vue' // DOM not updated yet Vue.nextTick(function () { // DOM updated }) // usage as a promise (2.1.0+) Vue.nextTick() .then(function () { // DOM updated }) ``` **[⬆ Back to Top](#table-of-contents)** 201. ### What is async error handling? From 2.6 version onwards, Vue's built-in error handling mechanism can capture errors inside v-on handlers. Also,if any of your lifecycle hooks or event handlers performs asynchronous operations, you can now return a Promise from the function so that any uncaught errors from that Promise chain are also sent to your error handlers. Let's take an example of mounted lifecycle hook, ```javascript export default { async mounted() { // if an async error is thrown here, it now will get // caught by errorCaptured and Vue.config.errorHandler this.todos = await api.getTodos() } } ``` **[⬆ Back to Top](#table-of-contents)** 202. ### What are Dynamic Directive Arguments? In Vue 2.6 release onwards, Directive arguments can now accept dynamic JavaScript expressions. i.e, the specific argument that we want to use is only known at runtime. Let's assign dynamic key and event directives for a div element, ```javascript <div v-bind:[key]="value"></div> <div v-on:[event]="handler"></div> ``` **[⬆ Back to Top](#table-of-contents)** 203. ### What are the drawbacks of dynamic directive arguments? Apart from the benefits of dynamic directives arguments, it brings two drawbacks or considerations on the usage 1. **Constraints on expressions:** When you perform complex JavaScript expressions, make sure that html attribute names cannot contain spaces and quotes. The below expression doesn't work as expected ```javascript <div :[key + 'unique']="value"></div> ``` Instead you may need to use string template syntax ```javascript <div :[`${key}unique`]="value"></div> ``` 2. **Custom Directives:** The custom directive implementations need to have potential argument changes in addition to value changes. **[⬆ Back to Top](#table-of-contents)** 204. ### What is the special handling for null values in dynamic directive arguments? Dynamic argument values are expected to be strings but it allows `null` as a special value that explicitly indicates that the binding should be removed. Other types will be treated as mistakes and will trigger a warning. So null value can be applied for v-bind and v-on. **[⬆ Back to Top](#table-of-contents)** 205. ### Can I use dynamic directive null value for slots? No. It can be applied only for v-bind and v-on but not v-slot. This is because v-slot is not a binding and cannot be removed. **[⬆ Back to Top](#table-of-contents)** 206. ### What is Vue I18n plugin? Vue I18n is an internationalization plugin of Vue.js. It easily integrates some localization features to your Vue.js Application. The simple usage with in html would be as below, ```javascript <script src="https://unpkg.com/vue/dist/vue.js"></script> <script src="https://unpkg.com/vue-i18n/dist/vue-i18n.js"></script> <div id="app"> <p>{{ $t("user.message") }}</p> </div> ``` and after that configure them in javascript ```javascript // Ready translated locale messages const messages = { en: { user: { message: 'Good morning' } }, de: { user: { message: 'Guten Morgen' } } } // Create VueI18n instance with options const i18n = new VueI18n({ locale: 'de', // set locale messages, // set locale messages }) // Create a Vue instance with `i18n` option new Vue({ i18n }).$mount('#app') ``` The output is going to be like this, <div id="#app"> <p>Guten Morgen</p> </div> **[⬆ Back to Top](#table-of-contents)** 207. ### What are the types of formatting? Basically there are 4 types of formatting available in i18n plugin, 1. **Named formatting:** First You need to define the message keys in curly braces({}) ```javascript const messages = { en: { message: { greeting: '{msg} Morning' } } } ``` After that pass argument value along with key in the template ```javascript <p>{{ $t('message.greeting', { msg: 'Good' }) }}</p> ``` It outputs the result as below, ```javascript <p>Good Morning</p> ``` 2. **List formatting:** First you need to define zero index based keys in the messages, ```javascript const messages = { en: { message: { greeting: '{0} Morning' } } } ``` After that pass argument value with in an array ```javascript <p>{{ $t('message.greeting', ['Good']) }}</p> ``` Finally it outputs the result as below, ```javascript <p>Good morning</p> ``` **Note:** It also accepts array-like object ```javascript <p>{{ $t('message.greeting', {'0': 'Good'}) }}</p> ``` 3. **HTML formatting:** This formatting is required when want to render your translation as an HTML message and not a static string. ```javascript const messages = { en: { message: { greeting: 'Good <br> Morning' } } } ``` After that use it in the html directive template as below ```javascript <p v-html="$t('message.greeting')"></p> ``` Finally it outputs the result as below ```javascript <p>Good <!--<br> exists but is rendered as html and not a string--> Morning</p> ``` 4. **Ruby on rails format:** First you need to define with percentile and curly braces as below, ```javascript const messages = { en: { message: { greeting: '%{msg} Morning' } } } ``` After that pass argument with key similar to named formatting ```javascript <p>{{ $t('message.greeting', { msg: 'Good' }) }}</p> ``` Finally it renders the output as below, ```javascript <p>Good Morning</p> ``` **[⬆ Back to Top](#table-of-contents)** 208. ### What is custom formatting? You can use custom formatting for some of the formatting cases such as ICU formatting syntax (message "pattern" strings with variable-element placeholders enclosed in {curly braces}). It implement Formatter Interface. ```javascript // Custom Formatter implementation class CustomFormatter { constructor (options) { // ... } interpolate (message, values) { // return the interpolated array return ['resolved message string'] } } // register with `formatter` option const i18n = new VueI18n({ locale: 'en-US', formatter: new CustomFormatter(/* here the constructor options */), messages: { 'en-US': { // ... }, // ... } }) // Run! new Vue({ i18n }).$mount('#app') ``` **[⬆ Back to Top](#table-of-contents)** 209. ### How do you handle Pluralization? You can translate with pluralization by defining the locale that have a pipe | separator, and define plurals in pipe separator. Remember that template should use $tc() instead of $t(). First you need to define the messages, ```javascript const messages = { en: { user: 'user | users', friend: 'no friend | one friend | {count} friends' } } ``` And the template can configure the messages with values ```javascript <p>{{ $tc('user', 1) }}</p> <p>{{ $tc('user', 10) }}</p> <p>{{ $tc('friend', 0) }}</p> <p>{{ $tc('friend', 1) }}</p> <p>{{ $tc('friend', 10, { count: 10 }) }}</p> ``` Finally it outputs the result as below ```javascript <p>user</p> <p>users</p> <p>no friend</p> <p>one friend</p> <p>10 friends</p> ``` **[⬆ Back to Top](#table-of-contents)** 210. ### How to implement DateTime localization? You can localize the datetime with definition formats(e.g. short, long, etc). Lets follow below steps to localize date and time, 1. For example, you can add definition formats for English and Jappan locale as below ```javascript const dateTimeFormats = { 'en-US': { short: { year: 'numeric', month: 'short', day: 'numeric' }, long: { year: 'numeric', month: 'short', day: 'numeric', weekday: 'short', hour: 'numeric', minute: 'numeric' } }, 'ja-JP': { short: { year: 'numeric', month: 'short', day: 'numeric' }, long: { year: 'numeric', month: 'short', day: 'numeric', weekday: 'short', hour: 'numeric', minute: 'numeric', hour12: true } } } ``` 2. After that You need to specify the dateTimeFormats option of VueI18n constructor ```javascript const i18n = new VueI18n({ dateTimeFormats }) new Vue({ i18n }).$mount('#app') ``` 3. And then add them to the template ```javascript <div id="app"> <p>{{ $d(new Date(), 'short') }}</p> <p>{{ $d(new Date(), 'long', 'ja-JP') }}</p> </div> ``` 4. Finally it outputs the result ```javascript <div id="app"> <p>May 20, 2019</p> <p>2019年5月20日</p> </div> ``` **[⬆ Back to Top](#table-of-contents)** 211. ### How do you implement Number localization? You can localize the number with definition formats(e.g. currency, etc) Lets follow below steps to localize numbers, 1. You need to add definition formats. For example, lets add it for English and Japanese locales ```javascript const numberFormats = { 'en-US': { currency: { style: 'currency', currency: 'USD' } }, 'ja-JP': { currency: { style: 'currency', currency: 'JPY', currencyDisplay: 'symbol' } } } ``` 2. After that specify the numberFormats option of VueI18n constructor ```javascript const i18n = new VueI18n({ numberFormats }) new Vue({ i18n }).$mount('#app') ``` 3. Now let's configure them in template ```javascript <div id="app"> <p>{{ $n(10, 'currency') }}</p> <p>{{ $n(50, 'currency', 'ja-JP') }}</p> </div> ``` 4. Finally it outputs the result ```javascript <div id="app"> <p>$10.00</p> <p>¥50</p> </div> ``` **[⬆ Back to Top](#table-of-contents)** 212. ### How do you perform locale changing? All child components of a root instance are localized using the locale property of the VueI18n class. You can change the value of the locale property of the VueI18n instance as below. ```javascript const i18n = new VueI18n({ locale: 'de', // set locale ... }) // create root Vue instance new Vue({ i18n, ... }).$mount('#app') // change other locale i18n.locale = 'en' ``` You can also use component's VueI18n instance referenced as the $i18n property which will be used to change the locale. ```javascript <template> <div class="locale-changer"> <select v-model="$i18n.locale"> <option v-for="(lang, i) in langs" :key="`Lang${i}`" :value="lang">{{ lang }}</option> </select> </div> </template> <script> export default { name: 'locale-changer', data () { return { langs: ['de', 'en'] } } } </script> ``` **[⬆ Back to Top](#table-of-contents)** 213. ### What is Lazy loading translations? The loading of all translation files at once is unnecessary and it may impact the performance too. It will be easy for lazy loading or asynchronously loading the translation files when you use webpack. i.e, You can dynamically load or import language translations using webpack as below, ```javascript //i18n-setup.js import Vue from 'vue' import VueI18n from 'vue-i18n' import messages from '@/lang/en' import axios from 'axios' Vue.use(VueI18n) export const i18n = new VueI18n({ locale: 'en', // set locale fallbackLocale: 'en', messages // set locale messages }) const loadedLanguages = ['en'] // our default language that is preloaded function setI18nLanguage (lang) { i18n.locale = lang axios.defaults.headers.common['Accept-Language'] = lang document.querySelector('html').setAttribute('lang', lang) return lang } export function loadLanguageAsync (lang) { if (i18n.locale !== lang) { if (!loadedLanguages.includes(lang)) { return import(/* webpackChunkName: "lang-[request]" */ `@/lang/${lang}`).then(msgs => { i18n.setLocaleMessage(lang, msgs.default) loadedLanguages.push(lang) return setI18nLanguage(lang) }) } return Promise.resolve(setI18nLanguage(lang)) } return Promise.resolve(lang) } ``` After that loadLanguageAsync function can be used inside a vue-router beforeEach hook. ```javascript router.beforeEach((to, from, next) => { const lang = to.params.lang loadLanguageAsync(lang).then(() => next()) }) ``` **[⬆ Back to Top](#table-of-contents)** 214. ### What is the main difference between method and computed property? The main difference between a computed property and a method is that computed properties are cached and invoke/change only when their dependencies change. Whereas a method will evaluate every time it's called. **[⬆ Back to Top](#table-of-contents)** 215. ### What is vuetify? Vuetify is a semantic component material framework for Vue. It aims to provide clean, semantic and reusable components that make building application easier. The installation and configuration is simple as below, ```javascript npm install Vuetify ``` ```javascript import Vue from 'vue' import Vuetify from 'vuetify' // Import Vuetify to your project Vue.use(Vuetify) // Add Vuetify as a plugin ``` **[⬆ Back to Top](#table-of-contents)** 216. ### How do you watch for nested data changes? You can use deep watcher by setting `deep: true` in the options object. This option enables us to detect nested value changes inside Objects. ```javascript vm.$watch('someObject', callback, { deep: true }) vm.someObject.nestedValue = 123 // callback is fired ``` **Note:** This is not required to listen for Array mutations. **[⬆ Back to Top](#table-of-contents)** 217. ### How to trigger watchers on initialization? You can use `immediate: true` option in order to trigger watchers when the vue instance (or component) is being created. i.e This option will trigger the callback immediately with the current value of the expression. ```javascript watch: { test: { immediate: true, handler(newVal, oldVal) { console.log(newVal, oldVal) }, }, }, ``` **[⬆ Back to Top](#table-of-contents)** 218. ### What is the purpose of comments option? When `comments` option enabled, it will preserve and render HTML comments found in templates. By default, it's value is false. Let's see the action in an example, ```javascript <template> <div class="greeting"> <!--greeting--> <h1>{{ msg }}</h1> </div> </template> <script> export default { comments: true, data () { return { msg: 'Good morning' } } } </script> ``` **Note:** This option is only available in the full build, with in-browser compilation. i.e, It won't work with Single File Components(SFC). **[⬆ Back to Top](#table-of-contents)** 219. ### How to identify whether code is running on client or server? You can use `vm.$isServer` method to know whether the current Vue instance is running on the server or client. The usage would be as below, ```javascript const Vue = require('vue'); Vue.prototype.$isServer (OR) this.$isServer // With in component ``` **[⬆ Back to Top](#table-of-contents)** 220. ### How do you watch route object changes? You can setup a watcher on the `$route` in your component. It observes for route changes and when changed ,sets the message property. ```javascript watch:{ $route (to, from){ this.message = 'Welcome'; } } ``` **[⬆ Back to Top](#table-of-contents)** 221. ### How do you sync current route in vuex store? You can use `vue-router-sync` library to sync current $route object in vuex store's state. The usage is quite straight forward with two steps 1. **Installation:** ```bash npm install vuex-router-sync ``` 2. **Sync router and store:** ```javascript import { sync } from 'vuex-router-sync' import store from './vuex/store' // vuex store instance import router from './router' // vue-router instance const unsync = sync(store, router) // Returns an unsync callback function unsync() // Unsyncs store from router ``` **[⬆ Back to Top](#table-of-contents)** 222. ### What are navigation guards in vue router? The navigation guards of vue-router are used to protect navigations either by redirecting it or canceling it. Below are the 3 different ways to hook into router navigations 1. Global: 2. Per-route: 3. In-component: **[⬆ Back to Top](#table-of-contents)** 223. ### Can I use computed property in another computed property? Yes, you can access it directly as you would data props. For example, the comboTwo computed property uses comboOne computed property as below, ```javascript data() { return { propOne: 'prop1', propTwo: 'prop2' } }, computed: { comboOne() { return this.propOne + ',' + this.propTwo; }, comboTwo() { return this.comboOne.split(',').join('-'); } } ``` **[⬆ Back to Top](#table-of-contents)** 224. ### How can I use imported constant in template section? The variables need to be exposed on your data in order to use them in template section. i.e, You can't use them directly on template. ```javascript <span> CREATE: {{CREATE_PROP}} UPDATE: {{UPDATE_PROP}} DELETE: {{DELETE_PROP}} </span> <script> import {CREATE_DATA, UPDATE_DATA, DELETE_DATA} from 'constants'; new Vue({ ... data:{ CREATE_PROP: CREATE_DATA, UPDATE_PROP: UPDATE_DATA, DELETE_PROP: DELETE_DATA } ... }) </script> ``` **[⬆ Back to Top](#table-of-contents)** 225. ### Is recommended to use async for computed properties? No, it is not recommended. Computed properties should be synchronous. But if you still use asynchronous actions inside them, they may not work as expected and can lead to an unexpected behaviour. For example, the below usage of async/await is not recommended, ```javascript async someComputedProperty () { return await someFunction() }, ``` **Note:** If you still prefer to use async computed properties for some reason then you can consider using additional plugin such as `vue-async-computed`. **[⬆ Back to Top](#table-of-contents)** 226. ### What happens if you use duplicate field names? **[⬆ Back to Top](#table-of-contents)** 227. ### Why the component data must be a function? The component data must be a function instead directly providing the object. This is because each instance needs to maintain an independent copy of the returned data object. Otherwise one component instance data changes will impact the data of all other instances. For example, the below code snippets gives an idea on correct approach, ```js data: { // Bad message: 'Hello' } data: function () { //Good return { message: 'Hello' } } ``` **[⬆ Back to Top](#table-of-contents)** 228. ### What is the reason for recommendation for multi-word component names? Component names should always be multi-word, except for root level or built-in vue components(such as `<transition>` or `<component>` etc). This recommendation is to prevent conflicts with existing and future HTML elements, since all HTML elements are a single word. ```js Vue.component('user', { //bad approach // ... }) Vue.component('user-profile', { //good approach // ... }) ``` **[⬆ Back to Top](#table-of-contents)** 229. ### What is the best way to re-render a component? The best way to force Vue to re-render a component is to set a `:key` on the component. i.e, Whenever the component to be re-rendered, just change the value of the key then Vue will re-render the component. **[⬆ Back to Top](#table-of-contents)** 230. ### How does reactivity works with ref? VueJS automatically detects the changes to ref's value and updates the DOM with a dependency-tracking based reactivity system. 1. When a component is rendered for the first time, it tracks every ref that was used during the render. 2. Whenever a ref is mutated, it will trigger a re-render of the component. 231. ### How to use composition API in Vue2.0? Vue 2.0 does not have native support for the Composition API, but you can use it via the official plugin: `@vue/composition-api`. Let's see the usage in step-by-step instructions, 1. Install the Plugin ```javascript npm install @vue/composition-api # or yarn add @vue/composition-api ``` 2. Register the plugin in your `main.js` file, ```javascript import Vue from 'vue'; import VueCompositionAPI from '@vue/composition-api'; Vue.use(VueCompositionAPI); new Vue({ render: h => h(App), }).$mount('#app'); ``` 3. Using Composition API in Components You can now use `ref`, `reactive`, `computed`, `watch`, `onMounted`, etc., in your Vue 2 components. #### Example: Counter Component ```javascript <template> <div> <p>Count: {{ count }}</p> <button @click="increment">Increment</button> </div> </template> <script> import { ref } from '@vue/composition-api'; export default { setup() { const count = ref(0); const increment = () => { count.value++; }; return { count, increment, }; }, }; </script> ``` **Note:** - The `@vue/composition-api` plugin is compatible with **Vue 2.6+**. - It does **not include all Vue 3 features** (e.g., `<script setup>`, Suspense, Fragments). - Great for **gradual migration** or using modern Vue patterns in Vue 2. **[⬆ Back to Top](#table-of-contents)** 232. ### What is composition API? The **Composition API** in Vue 3 is a new way to organize and reuse logic in Vue components. It was introduced to address some limitations of the **Options API** (used in Vue 2), especially when dealing with large or complex components where logic can become scattered and hard to manage. The Composition API is a **set of APIs** (e.g., `setup()`, `ref`, `reactive`, `computed`, `watch`, etc.) that allow developers to **compose component logic more flexibly and cleanly**, especially when logic is reused across components. ##### Key Concepts 1. **The** `**setup()**` **function** The heart of the Composition API. It's called **before the component is created**, and it's the place where you declare **reactive state, computed properties, methods, and lifecycle hooks**. ```js <template> <button @click="increment">Count is: {{ count }}</button> </template> <script setup> import { ref } from 'vue' const count = ref(0) function increment() { count.value++ } </script> ``` * `ref()` creates a **reactive reference** to a primitive value. * `count.value` is how you access/update the value inside a `ref`. 2. **Reactive State:** `**ref()**` **and** `**reactive()**` ##### `ref()` * Used for **primitive values**. * Wraps a value in a reactive object. ```js const message = ref('Hello'); message.value = 'Hi'; ``` ##### `reactive()` * Used for **objects**. * Deeply reactive, making every property reactive. ```js const user = reactive({ name: 'Alice', age: 25 }); user.age++; ``` 3. **Computed Properties** Creates values that automatically update when dependencies change. ```js import { ref, computed } from 'vue'; setup() { const firstName = ref('John'); const lastName = ref('Doe'); const fullName = computed(() => `${firstName.value} ${lastName.value}`); return { fullName }; } ``` 4. **Watchers** Both `watch()` and `watchEffect()` are used to run side effects when data changes: ```js watch(count, (newVal, oldVal) => { console.log('Count changed:', newVal); }); watchEffect(() => { console.log('Count is now', count.value); }); ``` 5. **Lifecycle Hooks** Composition API uses new lifecycle hooks imported from Vue. ```js import { onMounted, onUnmounted } from 'vue'; onMounted(() => { console.log('Component is mounted'); }); onUnmounted(() => { console.log('Component is unmounted'); }); ``` 6. **Reusable Logic with Composables** You can encapsulate logic in **composable functions** and reuse across components: Example: Reuse logic of counter using `useCounter.js` ```js import { ref } from 'vue'; export function useCounter(initialValue = 0) { const count = ref(initialValue); const increment = () => count.value++; const decrement = () => count.value--; const reset = () => count.value = initialValue; return { count, increment, decrement, reset }; } ``` Using it in a component ```js <script setup> import { useCounter } from '@/composables/useCounter'; const { count, increment, decrement, reset } = useCounter(5); </script> <template> <div> <p>Count: {{ count }}</p> <button @click="increment">+</button> <button @click="decrement">-</button> <button @click="reset">Reset</button> </div> </template> ``` **[⬆ Back to Top](#table-of-contents)** 233. ### What are the benefits of composition API? The composition API provides several benefits over the traditional Options API as listed below. 1. Better logic reuse and code organization: 2. Better typescript support: 3. Easier testing 4. Smaller production bundles **[⬆ Back to Top](#table-of-contents)** 234. ### What are composition functions? Composition API is a set of additive, function-based APIs that allow flexible composition of component logic. **[⬆ Back to Top](#table-of-contents)** 235. ### What is teleport? The `<Teleport>` component allows you to render a part of your component's template into a different location in the DOM — outside the current component's hierarchy. #### Example: 1. Wrap teleport component around the modal template inside `app.vue` file ```js <template> <div> <h1>Page Content</h1> <!-- This modal will render in the #modals element --> <teleport to="#modals"> <div class="modal"> <p>This is a modal rendered with teleport</p> </div> </teleport> </div> </template> ``` 2. Render modal component inside main `index.html` file ```js <body> <div id="app"></div> <div id="modals"></div> <!-- This is where the modal will appear --> </body> ``` In Vue 2, this functionality was possible via the community plugin `portal-vue` #### Use cases 1. Modals 2. Toasts 3. Tooltips 4. Context menus 5. Dropdowns 6. Anything that needs to break out of DOM nesting **[⬆ Back to Top](#table-of-contents)** 236. ### What is the purpose of html directive? The `v-html` directive is used to update the inner html of a DOM element with latest data. It is similar to innerHTML property in DOM. The example usage of this directive as shown below, ```javascript <div id="app"> <div>{{ htmlContent }}</div> <div v-html="htmlContent"></div> </div> ``` **Note:** This directive should be used with trused content only but not on user provided content. Otherwise it can leads to XSS vulnerabilities. **[⬆ Back to Top](#table-of-contents)** 237. ### What are the key differences between Vue 2 and Vue 3? | Feature | Vue 2 | Vue 3 | | ------------------ | ------------------------- | ------------------------------------ | | API Style | Options API | Composition API + Options API | | Reactivity System | `Object.defineProperty()` | Proxy-based (faster & more reliable) | | Performance | Moderate | Improved (~2x faster in some cases) | | Tree-shaking | Limited | Fully tree-shakable | | TypeScript Support | Partial | Built-in and first-class support | | Fragment Support | Not supported | Supported | | Teleport/Portals | Plugin-based | Native support | | Suspense | Not available | Native support for async components | **[⬆ Back to Top](#table-of-contents)** 238. ### What is watch() and how is it used? The `watch()` function observes a **reactive source**((like `ref`, `reactive`, getter functions or computed values)) and runs a **callback function** whenever that source changes. **Syntax:** ```js watch(source, callback, options ?) ``` - **source:** a ref, reactive property, getter function, or array of them. - **callback(newValue, oldValue):** function to run when the value changes. - **options (optional):** object to control behavior (e.g., immediate, deep). #### Example 1: Watching a `ref` ```js import {ref, watch} from 'vue'; const count = ref(0); watch(count, (newVal, oldVal) => { console.log(`Count changed from ${oldVal} to ${newVal}`); }); count.value = 5; // triggers the watch callback ``` #### Example 2: Watching a function (getter) ```js const firstName = ref('Sudheer'); const lastName = ref('Jonna'); watch( () => `${firstName.value} ${lastName.value}`, (newFullName, oldFullName) => { console.log(`Full name changed from ${oldFullName} to ${newFullName}`); } ); ``` #### Example 3: Watching a `reactive` object deeply ```javascript import {reactive, watch} from 'vue'; const user = reactive({name: 'Sudheer', age: 38}); watch( () => user, (newUser, oldUser) => { console.log('User object changed:', newUser); }, {deep: true} ); ``` The main uses of `watch()` are: 1. Watching route changes 2. Triggering API calls 3. Responding to complex data changes 4. Manually reacting to specific state updates **[⬆ Back to Top](#table-of-contents)** 239. ### What is watch() and how is it used? In **Composition API**, lifecycle hooks are functions you call **inside the `setup()` function** to hook into different stages of a component's lifecycle. These hooks replace the traditional options API lifecycle methods (like `created()`, `mounted()`, etc.) with function-based hooks that are imported from Vue. #### Main Lifecycle Hooks | Lifecycle Stage | Composition API Hook | Description | | ------------------------- | -------------------- | ------------------------------------------------------- | | Before component creation | `onBeforeMount()` | Called right before the component is mounted | | Component mounted | `onMounted()` | Called after the component has been mounted | | Before update | `onBeforeUpdate()` | Called before the component updates the DOM | | After update | `onUpdated()` | Called after the component updates the DOM | | Before unmount | `onBeforeUnmount()` | Called right before the component is unmounted | | Component unmounted | `onUnmounted()` | Called after the component is unmounted | | Error captured | `onErrorCaptured()` | Called when an error from a child component is captured | | Activated (keep-alive) | `onActivated()` | Called when a kept-alive component is activated | | Deactivated (keep-alive) | `onDeactivated()` | Called when a kept-alive component is deactivated | The above hooks can be imported from `vue` and used inside `setup()` function. For example, the usage of hooks will be as follows, ```js import {onMounted, onBeforeUnmount} from 'vue' export default { setup() { onMounted(() => { console.log('Component is mounted!') }) onBeforeUnmount(() => { console.log('Component is about to unmount') }) } } ``` **[⬆ Back to Top](#table-of-contents)** 240. ### Whats the difference between `watch()` and `watchEffect()`? Both watch and watchEffect are Composition API functions used for reactivity, but they serve different purposes and behave differently. **watch:** It is used to watch specific reactive sources (like ref or computed) and respond to changes. This function is lazy. i.e, The callback is not called immediately but only on changes. It is useful when you need to access both old and new values, and performs side-effects conditionally. ```js watch(count, (newVal, oldVal) => { console.log('Count changed:', newVal); }); ``` **watchEffect:** This function is automatic and eager. It runs a function immediately and tracks its dependencies automatically. It cannot access old values directly. ```js watchEffect(() => { console.log(`Count is ${count.value}`); }); ``` **[⬆ Back to Top](#table-of-contents)** 241.

Education & Learning Developer Tools
2.7K Github Stars