Click :star:if you like the project and follow @SudheerJonna for more updates. Coding questions available here. Check DataStructures and Algorithms for DSA related questions and ECMAScript for all ES features.)
Practice 280+ JavaScript coding interview questions in-browser. Built by ex-FAANG interviewers. No AI-generated fluff. No fake reviews. Try GreatFrontEnd → 💡
I recommend this JavaScript Projects courses and this Advanced JavaScript Course to become top 10% at JS and this coding interview bootcamp to ace your coding interview and actually get hired.
There are many ways to create objects in javascript as mentioned below:
Object literal syntax:
The object literal syntax (or object initializer), is a comma-separated set of name-value pairs wrapped in curly braces.
var object = {
name: "Sudheer",
age: 34,
};
Object literal property values can be of any data type, including array, function, and nested object.
Note: This is one of the easiest ways to create an object and it's most commonly used for creating simple, ad-hoc objects.
Object constructor:
The simplest way to create an empty object is using the Object constructor. Currently this approach is not recommended.
var object = new Object();
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:
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.
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.
var object = Object.create(null);
The following example creates an object along with additional new properties.
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);
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.
function Person(name) {
this.name = name;
this.age = 21;
}
var object = new Person("Sudheer");
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.
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.
function func(x, y, z) {
this.x = x;
this.y = y;
this.z = z;
}
var instance = new func(1, 2, 3);
(OR)
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);
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.
const orgObject = { company: "XYZ Corp" };
const carObject = { name: "Toyota" };
const staff = Object.assign({}, orgObject, carObject);
ES6 Class syntax:
ES6 introduces class feature to create objects. This is syntactic sugar over the prototype-based system.
class Person {
constructor(name) {
this.name = name;
}
}
var object = new Person("Sudheer");
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.
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.
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:
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:
Object.getPrototypeOf(obj) or __proto__.Constructor.prototype.null.The prototype chain among objects appears as below,

call, apply, and bindIn 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.
callDescription:
The call() method invokes a function immediately, allowing you to specify the value of this and pass arguments individually (comma-separated).
Syntax:
func.call(thisArg, arg1, arg2, ...)
Example:
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?
applyDescription:
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:
func.apply(thisArg, [argsArray])
Example:
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?
bindDescription:
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:
var boundFunc = func.bind(thisArg[, arg1[, arg2[, ...]]])
Example:
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?
| 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 |
call and apply are almost interchangeable; both invoke the function immediately, but differ in how arguments are passed.
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.
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.
const obj = JSON.parse(jsonString);
const jsonString = '{"name":"John","age":30}';
const obj = JSON.parse(jsonString); // { name: "John", age: 30 }
const jsonString = JSON.stringify(object);
const obj = { name: "Jane", age: 25 };
const jsonString = JSON.stringify(obj); // '{"name":"Jane","age":25}'
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:
You can also use negative indices, which count from the end of the array.
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.
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.
array.splice(start, deleteCount, item1, item2, ...)
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:
splice() method modifies the original array.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:
slice() when you want to copy or extract elements without altering the original array.splice() when you need to add, remove, or replace elements and want to change the original array.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 |
JavaScript provides two types of equality operators:
==, !=): Performs type conversion if the types differ, comparing values after converting them to a common type.===, !==): Compares both value and type, without any type conversion.===)NaN === NaN is false+0 === -0 is truetrue or both are false.null and undefined are not strictly equal.==)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.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
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.
this, arguments, super, or new.target bindings. They inherit these from their surrounding (lexical) context.prototype property.new, yield, or as generator functions.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;
};
In JavaScript, first-class functions(first-class citizens) mean that functions are treated like any other variable. That means:
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.
const handler = () => console.log("This is a click handler function");
document.addEventListener("click", handler);
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.
const firstOrder = () => console.log("I am a first 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,
// 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:
firstOrderFunc is a regular (first-order) function.
higherOrder is a higher-order function because it takes another function as an argument.
firstOrderFunc is also called a callback function because it is passed to and executed by another 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,
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.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.
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.
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.
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.
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,
// 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.Some of the major benefits of pure functions are listed below,
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.
let:{} pair).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).let.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.
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,
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");
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.
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:
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:
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.
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.
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;
}
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,
(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,
(function () {
var message = "IIFE";
console.log(message);
})();
console.log(message); //Error: message is not defined
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().
let uri = "employeeDetails?name=john&occupation=manager";
let encoded_uri = encodeURI(uri);
let decoded_uri = decodeURI(encoded_uri);
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,
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
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:
console.log(message); // Output: undefined
var message = "The variable has been hoisted";
var message;
console.log(message); // undefined
message = "The variable has been hoisted";
Example of function hoisting:
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";
```

**[⬆ 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,

**[⬆ 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 built-in JavaScript method used to handle multiple asynchronous operations together. It accepts an iterable of promises (usually an array) and returns a single promise that resolves only when all the input promises have successfully resolved.
If any one of the promises rejects, the whole `Promise.all()` call rejects immediately and the error is passed to the `.catch()` block. The result array contains values in the same order as the input promises, even if they finish at different times.
```javascript
const fetchUser = () => Promise.resolve({ id: 1, name: "John" });
const fetchOrders = () =>
new Promise((resolve) => setTimeout(() => resolve([101, 102]), 200));
const fetchProfile = () => Promise.resolve("active");
Promise.all([fetchUser(), fetchOrders(), fetchProfile()])
.then(([user, orders, status]) => {
console.log(user); // { id: 1, name: 'John' }
console.log(orders); // [101, 102]
console.log(status); // 'active'
})
.catch((error) => {
console.log("One of the requests failed:", error);
});
```
Let's consider a case where one promise rejects:
```javascript
Promise.all([
Promise.resolve("A"),
Promise.reject(new Error("Request failed")),
Promise.resolve("C"),
])
.then((values) => console.log(values))
.catch((error) => console.log(error.message)); // Request failed
```
**Key points:**
1. It waits for all promises to resolve.
2. It rejects as soon as any promise fails.
3. The output order matches the input order, not the completion order.
4. Non-promise values are treated as resolved values automatically.
`Promise.all()` is useful when you need to run multiple independent async tasks concurrently and continue only after all of them are done, such as fetching multiple API endpoints together.
**[⬆ Back to Top](#table-of-contents)**
66. ### Does Promise.all() cancel the other Promises?
No. `Promise.all()` does not cancel the other promises. It only waits for all of them to finish, and if any one rejects, the overall `Promise.all()` call rejects immediately.
A JavaScript promise does not have a built-in cancel API. Once a promise starts, it keeps running unless the underlying async operation supports cancellation on its own. For example, `fetch()` supports cancellation using `AbortController`.
```javascript
const controller = new AbortController();
const signal = controller.signal;
const requestA = fetch("/api/a", { signal });
const requestB = Promise.reject(new Error("Server error"));
const requestC = fetch("/api/c", { signal });
Promise.all([requestA, requestB, requestC])
.then((results) => console.log(results))
.catch((error) => {
console.log("Promise.all rejected:", error.message);
controller.abort(); // Cancels the fetch requests still in progress
});
```
In the example above, if `requestB` rejects, `Promise.all()` rejects, but `requestA` and `requestC` are not automatically canceled. They continue unless you explicitly abort them using the underlying API or custom logic.
**How to cancel async work:**
1. Use an API that supports cancellation, such as `fetch()` with `AbortController`.
2. For custom promises, you can add a `cancel()` method or a flag to stop work internally.
3. If the work is not cancelable, the promise cannot be truly canceled from outside.
**Note:** `Promise.all()` is about aggregation, not cancellation. It waits for all promises to settle, but it does not stop the other async operations by itself.
**[⬆ Back to Top](#table-of-contents)**
return and return await in async functionsIn an `async` function, `return value` simply returns the value or promise. If the value is a rejected promise, the rejection is not caught by a surrounding `try/catch` unless you `await` it first.
`return await value` pauses the function until the promise settles, so a `try/catch` around it can handle errors properly.
```javascript
async function withoutAwait() {
try {
return Promise.reject(new Error("Something failed"));
} catch (error) {
console.log("This will not run");
return "fallback";
}
}
async function withAwait() {
try {
return await Promise.reject(new Error("Something failed"));
} catch (error) {
console.log("Caught inside the function:", error.message);
return "fallback";
}
}
withoutAwait().catch((err) => console.log("outside catch:", err.message));
withAwait().then((value) => console.log("withAwait result:", value));
```
Output:
```javascript
outside catch: Something failed
Caught inside the function: Something failed
withAwait result: fallback
```
In short:
- `return promise` returns the promise without waiting for it.
- `return await promise` waits for the promise and allows the surrounding `try/catch` to catch errors.
`return await` is especially useful when you want to clean up or handle the error inside the same async function before it exits.
**[⬆ Back to Top](#table-of-contents)**
67. ### 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)**
68. ### 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)**
69. ### 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)**
70. ### 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)**
71. ### 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)**
72. ### 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)**
73. ### 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)**
74. ### 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)**
75. ### 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)**
76. ### 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)**
77. ### 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)**
78. ### 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)**
79. ### 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)**
80. ### 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)**
81. ### 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)**
82. ### 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)**
83. ### 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)**
84. ### 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)**
85. ### 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)**
86. ### 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)**
87. ### 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)**
88. ### 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)**
89. ### 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)**
90. ### 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)**
91. ### 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)**
92. ### 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)**
93. ### 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)**
94. ### 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)**
95. ### 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)**
96. ### 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)**
97. ### 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)**
98. ### 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)**
99. ### 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)**
100. ### 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)**
101. ### 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)**
102. ### 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)**
103. ### 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)**
104. ### 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)**
105. ### 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)**
106. ### 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)**
107. ### 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.

**[⬆ Back to Top](#table-of-contents)**
108. ### 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)**
109. ### 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)**
110. ### 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)**
111. ### What is an event delegation
Event delegation is a technique where you attach **one event listener to a parent element** instead of adding listeners to each child element. It works because events bubble up from the target element to its parents.
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)**
112. ### 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)**
113. ### 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)**
114. ### 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)**
115. ### 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)**
116. ### 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)**
117. ### 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)**
118. ### 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)**
119. ### 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)**
120. ### 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)**
121. ### 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)**
122. ### 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)**
123. ### 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.
124. ### 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)**
125. ### 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)**
126. ### 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)**
127. ### 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)**
128. ### 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)**
129. ### 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)**
130. ### 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)**
131. ### 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)**
132. ### 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)**
133. ### 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)**
134. ### 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)**
135. ### 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)**
136. ### 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)**
137. ### 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)**
138. ### 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)**
139. ### 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)**
140. ### 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)**
141. ### 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)**
142. ### 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)**
143. ### 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)**
144. ### 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)**
145. ### 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)**
146. ### 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)**
147. ### 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)**
148. ### 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)**
149. ### 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)**
150. ### 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)**
151. ### 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)**
152. ### 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)**
153. ### 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)**
154. ### 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)**
155. ### 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)**
156. ### 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)**
157. ### 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)**
158. ### 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)**
159. ### 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)**
160. ### 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)**
161. ### 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)**
162. ### 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)**
163. ### 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)**
164. ### 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)**
165. ### 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)**
166. ### 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)**
167. ### 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)**
168. ### 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)**
169. ### 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)**
170. ### 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)**
171. ### 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)**
172. ### 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)**
173. ### 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)**
174. ### 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)**
175. ### 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)**
176. ### 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)**
177. ### 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)**
178. ### 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)**
179. ### 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)**
180. ### 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)**
181. ### 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)**
182. ### 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)**
183. ### 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)**
184. ### 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)**
185. ### How do you detect if javascript is disabled on the page
You can use the `<noscript>` tag to detect whether JavaScript is 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 is 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)**
186. ### 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)**
187. ### 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)**
188. ### 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)**
189. ### 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)**
190. ### 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)**
191. ### 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)**
192. ### 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)**
193. ### 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)**
194. ### 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)**
195. ### 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)**
196. ### 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)**
197. ### 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);
obj
Truncated — view the full README on GitHub.
(top 30 of 132)
JavaScript
100.0%
Click :star:if you like the project and follow @SudheerJonna for more updates. Coding questions available here. Check DataStructures and Algorithms for DSA related questions and ECMAScript for all ES features.)
Practice 280+ JavaScript coding interview questions in-browser. Built by ex-FAANG interviewers. No AI-generated fluff. No fake reviews. Try GreatFrontEnd → 💡
I recommend this JavaScript Projects courses and this Advanced JavaScript Course to become top 10% at JS and this coding interview bootcamp to ace your coding interview and actually get hired.
There are many ways to create objects in javascript as mentioned below:
Object literal syntax:
The object literal syntax (or object initializer), is a comma-separated set of name-value pairs wrapped in curly braces.
var object = {
name: "Sudheer",
age: 34,
};
Object literal property values can be of any data type, including array, function, and nested object.
Note: This is one of the easiest ways to create an object and it's most commonly used for creating simple, ad-hoc objects.
Object constructor:
The simplest way to create an empty object is using the Object constructor. Currently this approach is not recommended.
var object = new Object();
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:
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.
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.
var object = Object.create(null);
The following example creates an object along with additional new properties.
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);
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.
function Person(name) {
this.name = name;
this.age = 21;
}
var object = new Person("Sudheer");
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.
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.
function func(x, y, z) {
this.x = x;
this.y = y;
this.z = z;
}
var instance = new func(1, 2, 3);
(OR)
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);
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.
const orgObject = { company: "XYZ Corp" };
const carObject = { name: "Toyota" };
const staff = Object.assign({}, orgObject, carObject);
ES6 Class syntax:
ES6 introduces class feature to create objects. This is syntactic sugar over the prototype-based system.
class Person {
constructor(name) {
this.name = name;
}
}
var object = new Person("Sudheer");
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.
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.
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:
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:
Object.getPrototypeOf(obj) or __proto__.Constructor.prototype.null.The prototype chain among objects appears as below,

call, apply, and bindIn 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.
callDescription:
The call() method invokes a function immediately, allowing you to specify the value of this and pass arguments individually (comma-separated).
Syntax:
func.call(thisArg, arg1, arg2, ...)
Example:
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?
applyDescription:
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:
func.apply(thisArg, [argsArray])
Example:
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?
bindDescription:
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:
var boundFunc = func.bind(thisArg[, arg1[, arg2[, ...]]])
Example:
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?
| 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 |
call and apply are almost interchangeable; both invoke the function immediately, but differ in how arguments are passed.
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.
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.
const obj = JSON.parse(jsonString);
const jsonString = '{"name":"John","age":30}';
const obj = JSON.parse(jsonString); // { name: "John", age: 30 }
const jsonString = JSON.stringify(object);
const obj = { name: "Jane", age: 25 };
const jsonString = JSON.stringify(obj); // '{"name":"Jane","age":25}'
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:
You can also use negative indices, which count from the end of the array.
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.
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.
array.splice(start, deleteCount, item1, item2, ...)
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:
splice() method modifies the original array.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:
slice() when you want to copy or extract elements without altering the original array.splice() when you need to add, remove, or replace elements and want to change the original array.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 |
JavaScript provides two types of equality operators:
==, !=): Performs type conversion if the types differ, comparing values after converting them to a common type.===, !==): Compares both value and type, without any type conversion.===)NaN === NaN is false+0 === -0 is truetrue or both are false.null and undefined are not strictly equal.==)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.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
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.
this, arguments, super, or new.target bindings. They inherit these from their surrounding (lexical) context.prototype property.new, yield, or as generator functions.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;
};
In JavaScript, first-class functions(first-class citizens) mean that functions are treated like any other variable. That means:
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.
const handler = () => console.log("This is a click handler function");
document.addEventListener("click", handler);
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.
const firstOrder = () => console.log("I am a first 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,
// 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:
firstOrderFunc is a regular (first-order) function.
higherOrder is a higher-order function because it takes another function as an argument.
firstOrderFunc is also called a callback function because it is passed to and executed by another 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,
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.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.
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.
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.
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.
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,
// 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.Some of the major benefits of pure functions are listed below,
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.
let:{} pair).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).let.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.
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,
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");
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.
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:
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:
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.
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.
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;
}
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,
(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,
(function () {
var message = "IIFE";
console.log(message);
})();
console.log(message); //Error: message is not defined
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().
let uri = "employeeDetails?name=john&occupation=manager";
let encoded_uri = encodeURI(uri);
let decoded_uri = decodeURI(encoded_uri);
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,
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
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:
console.log(message); // Output: undefined
var message = "The variable has been hoisted";
var message;
console.log(message); // undefined
message = "The variable has been hoisted";
Example of function hoisting:
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";
```

**[⬆ 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,

**[⬆ 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 built-in JavaScript method used to handle multiple asynchronous operations together. It accepts an iterable of promises (usually an array) and returns a single promise that resolves only when all the input promises have successfully resolved.
If any one of the promises rejects, the whole `Promise.all()` call rejects immediately and the error is passed to the `.catch()` block. The result array contains values in the same order as the input promises, even if they finish at different times.
```javascript
const fetchUser = () => Promise.resolve({ id: 1, name: "John" });
const fetchOrders = () =>
new Promise((resolve) => setTimeout(() => resolve([101, 102]), 200));
const fetchProfile = () => Promise.resolve("active");
Promise.all([fetchUser(), fetchOrders(), fetchProfile()])
.then(([user, orders, status]) => {
console.log(user); // { id: 1, name: 'John' }
console.log(orders); // [101, 102]
console.log(status); // 'active'
})
.catch((error) => {
console.log("One of the requests failed:", error);
});
```
Let's consider a case where one promise rejects:
```javascript
Promise.all([
Promise.resolve("A"),
Promise.reject(new Error("Request failed")),
Promise.resolve("C"),
])
.then((values) => console.log(values))
.catch((error) => console.log(error.message)); // Request failed
```
**Key points:**
1. It waits for all promises to resolve.
2. It rejects as soon as any promise fails.
3. The output order matches the input order, not the completion order.
4. Non-promise values are treated as resolved values automatically.
`Promise.all()` is useful when you need to run multiple independent async tasks concurrently and continue only after all of them are done, such as fetching multiple API endpoints together.
**[⬆ Back to Top](#table-of-contents)**
66. ### Does Promise.all() cancel the other Promises?
No. `Promise.all()` does not cancel the other promises. It only waits for all of them to finish, and if any one rejects, the overall `Promise.all()` call rejects immediately.
A JavaScript promise does not have a built-in cancel API. Once a promise starts, it keeps running unless the underlying async operation supports cancellation on its own. For example, `fetch()` supports cancellation using `AbortController`.
```javascript
const controller = new AbortController();
const signal = controller.signal;
const requestA = fetch("/api/a", { signal });
const requestB = Promise.reject(new Error("Server error"));
const requestC = fetch("/api/c", { signal });
Promise.all([requestA, requestB, requestC])
.then((results) => console.log(results))
.catch((error) => {
console.log("Promise.all rejected:", error.message);
controller.abort(); // Cancels the fetch requests still in progress
});
```
In the example above, if `requestB` rejects, `Promise.all()` rejects, but `requestA` and `requestC` are not automatically canceled. They continue unless you explicitly abort them using the underlying API or custom logic.
**How to cancel async work:**
1. Use an API that supports cancellation, such as `fetch()` with `AbortController`.
2. For custom promises, you can add a `cancel()` method or a flag to stop work internally.
3. If the work is not cancelable, the promise cannot be truly canceled from outside.
**Note:** `Promise.all()` is about aggregation, not cancellation. It waits for all promises to settle, but it does not stop the other async operations by itself.
**[⬆ Back to Top](#table-of-contents)**
return and return await in async functionsIn an `async` function, `return value` simply returns the value or promise. If the value is a rejected promise, the rejection is not caught by a surrounding `try/catch` unless you `await` it first.
`return await value` pauses the function until the promise settles, so a `try/catch` around it can handle errors properly.
```javascript
async function withoutAwait() {
try {
return Promise.reject(new Error("Something failed"));
} catch (error) {
console.log("This will not run");
return "fallback";
}
}
async function withAwait() {
try {
return await Promise.reject(new Error("Something failed"));
} catch (error) {
console.log("Caught inside the function:", error.message);
return "fallback";
}
}
withoutAwait().catch((err) => console.log("outside catch:", err.message));
withAwait().then((value) => console.log("withAwait result:", value));
```
Output:
```javascript
outside catch: Something failed
Caught inside the function: Something failed
withAwait result: fallback
```
In short:
- `return promise` returns the promise without waiting for it.
- `return await promise` waits for the promise and allows the surrounding `try/catch` to catch errors.
`return await` is especially useful when you want to clean up or handle the error inside the same async function before it exits.
**[⬆ Back to Top](#table-of-contents)**
67. ### 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)**
68. ### 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)**
69. ### 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)**
70. ### 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)**
71. ### 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)**
72. ### 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)**
73. ### 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)**
74. ### 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)**
75. ### 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)**
76. ### 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)**
77. ### 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)**
78. ### 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)**
79. ### 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)**
80. ### 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)**
81. ### 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)**
82. ### 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)**
83. ### 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)**
84. ### 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)**
85. ### 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)**
86. ### 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)**
87. ### 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)**
88. ### 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)**
89. ### 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)**
90. ### 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)**
91. ### 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)**
92. ### 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)**
93. ### 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)**
94. ### 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)**
95. ### 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)**
96. ### 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)**
97. ### 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)**
98. ### 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)**
99. ### 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)**
100. ### 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)**
101. ### 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)**
102. ### 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)**
103. ### 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)**
104. ### 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)**
105. ### 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)**
106. ### 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)**
107. ### 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.

**[⬆ Back to Top](#table-of-contents)**
108. ### 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)**
109. ### 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)**
110. ### 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)**
111. ### What is an event delegation
Event delegation is a technique where you attach **one event listener to a parent element** instead of adding listeners to each child element. It works because events bubble up from the target element to its parents.
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)**
112. ### 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)**
113. ### 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)**
114. ### 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)**
115. ### 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)**
116. ### 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)**
117. ### 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)**
118. ### 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)**
119. ### 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)**
120. ### 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)**
121. ### 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)**
122. ### 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)**
123. ### 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.
124. ### 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)**
125. ### 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)**
126. ### 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)**
127. ### 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)**
128. ### 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)**
129. ### 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)**
130. ### 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)**
131. ### 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)**
132. ### 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)**
133. ### 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)**
134. ### 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)**
135. ### 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)**
136. ### 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)**
137. ### 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)**
138. ### 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)**
139. ### 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)**
140. ### 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)**
141. ### 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)**
142. ### 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)**
143. ### 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)**
144. ### 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)**
145. ### 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)**
146. ### 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)**
147. ### 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)**
148. ### 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)**
149. ### 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)**
150. ### 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)**
151. ### 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)**
152. ### 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)**
153. ### 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)**
154. ### 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)**
155. ### 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)**
156. ### 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)**
157. ### 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)**
158. ### 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)**
159. ### 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)**
160. ### 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)**
161. ### 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)**
162. ### 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)**
163. ### 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)**
164. ### 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)**
165. ### 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)**
166. ### 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)**
167. ### 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)**
168. ### 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)**
169. ### 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)**
170. ### 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)**
171. ### 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)**
172. ### 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)**
173. ### 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)**
174. ### 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)**
175. ### 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)**
176. ### 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)**
177. ### 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)**
178. ### 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)**
179. ### 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)**
180. ### 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)**
181. ### 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)**
182. ### 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)**
183. ### 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)**
184. ### 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)**
185. ### How do you detect if javascript is disabled on the page
You can use the `<noscript>` tag to detect whether JavaScript is 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 is 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)**
186. ### 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)**
187. ### 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)**
188. ### 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)**
189. ### 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)**
190. ### 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)**
191. ### 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)**
192. ### 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)**
193. ### 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)**
194. ### 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)**
195. ### 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)**
196. ### 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)**
197. ### 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);
obj
Truncated — view the full README on GitHub.
(top 30 of 132)
JavaScript
100.0%