Found 9288 Articles for Object Oriented Programming

Flattening multi-dimensional arrays in JavaScript

AmitDiwan
Updated on 17-Jul-2020 08:15:57

278 Views

Following is the code for flattening multi-dimensional arrays in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result,    .sample {       font-size: 20px;       font-weight: 500;    } Flattening multi-dimensional arrays in JavaScript [1,2,3,[4,5],[6,[7,8]]] After flat : CLICK HERE Click on the above button to flat the above array by depth 2    let resEle = document.querySelector(".result");    let sampleEle = document.querySelector(".sample");    let arr = [1, 2, 3, [4, 5], [6, [7, 8]]];    document.querySelector(".Btn").addEventListener("click", () => {       let store = arr.flat(2);       store.forEach((item, index) => {          resEle.innerHTML += index + " : " + item + "";       });    }); OutputOn clicking the ‘CLICK HERE’ button

File and FileReader in JavaScript?

AmitDiwan
Updated on 17-Jul-2020 08:05:46

228 Views

Following is the code showing file and fileReader in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result, .sample {       font-size: 18px;       font-weight: 500;       color: rebeccapurple;    }    .result {       color: red;    } File and FileReader in JavaScript Click on the above button to display file and its details    let resEle = document.querySelector(".result");    let sampleEle = document.querySelector(".sample");    function ... Read More

How to access JavaScript properties?

AmitDiwan
Updated on 17-Jul-2020 07:54:32

199 Views

There are three ways to access JavaScript properties −Using dot property access: object.propertyUsing square brackets notation: object[‘property’]Using object destructuring: let {property} = objectFollowing is the code for accessing JavaScript object properties −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result,    .sample {       font-size: 18px;       font-weight: 500;       color: blueviolet;    }    .sample {       color: red;    } Access JavaScript object properties {a:22, b:44} Access Click on the ... Read More

How to convert an Image to blob using JavaScript?

AmitDiwan
Updated on 17-Jul-2020 07:57:11

13K+ Views

Following is the code to convert an image to blob using JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 18px;       font-weight: 500;       color: rebeccapurple;    } Convert an Image to blob using JavaScript Convert Click on the above button to convert the above image to blob    let BtnEle = document.querySelector(".Btn");    let resEle = gdocument.querySelector(".result");    BtnEle.addEventListener("click", () => {     ... Read More

Calculating median of an array in JavaScript

Nikitasha Shrivastava
Updated on 18-May-2023 11:40:18

3K+ Views

In this problem statement, our task is to calculate the median of an array with the help of Javascript functionalities. There are several ways that can be used to solve this task. One simple method to calculate median is using the built-in function of Javascript. Understanding the problem statement The problem statement is to write a function in Javascript that will help to calculate the median of a given array. For example, if we have an array of integers [1, 2, 3, 4, 5] so the median of this array is 3. Because 3 is the middle element of the ... Read More

Calculating average of an array in JavaScript

AmitDiwan
Updated on 17-Jul-2020 07:50:06

444 Views

Following is the code for calculating average of an array in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result,    .sample {       font-size: 18px;       font-weight: 500;       color: blueviolet;    }    .sample {       color: red;    } Calculating average of an array Check Click on the above button to see document state    let resEle = document.querySelector(".result");    let BtnEle = document.querySelector(".Btn");    let sampleEle = document.querySelector(".sample");    let arr = [1, 2, 3, 4, 5, 11, 22];    sampleEle.innerHTML = arr;    BtnEle.addEventListener("click", () => {       let sum = 0;       arr.forEach((item) => (sum += item));       resEle.innerHTML = "The average of the array = " + sum / arr.length;    }); OutputOn clicking the ‘Calculate’ button −

TextDecoder and TextEncoder in Javascript?

AmitDiwan
Updated on 17-Jul-2020 07:52:24

512 Views

TextEncoder is used to convert a given string to utf-8 standard. It retunes an Uint8Array from the string.TextDecoder is used to covert a stream of bytes into a stream of code points. It can decode UTF-8 , ISO-8859-2, KOI8-R, GBK etc.Following is the code for TextDecoder and TextEncoder in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result, .sample {       font-size: 18px;       font-weight: 500;       color: rebeccapurple;    }    .result {       ... Read More

Destructuring and function parameters in JavaScript

AmitDiwan
Updated on 17-Jul-2020 07:47:22

142 Views

Following is the code to destructure function parameters in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .sample,    .result {       font-size: 18px;       font-weight: 500;       color: red;    }    .result {       color: rebeccapurple;    } De structuring function parameters CLICK HERE Click on the above button to call a function and pass above object to it as argument    let sampleEle = document.querySelector(".sample");   ... Read More

Can we re-throw errors in JavaScript? Explain.

AmitDiwan
Updated on 17-Jul-2020 07:48:06

171 Views

Exception can be rethrown after they have been caught by using the throw after catching the exception.Following is the code to re-throw errors in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 18px;       font-weight: 500;       color: rebeccapurple;    } Re-throw errors in JavaScript CHECK Enter a number bigger than 40 to re throw error;    let BtnEle = document.querySelector(".Btn");    let resEle = ... Read More

How to check if a document is ready in JavaScript?

AmitDiwan
Updated on 17-Jul-2020 07:45:07

575 Views

Following is the code to check if a document is ready in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 18px;       font-weight: 500;       color: blueviolet;    } Check if a document is ready Check Click on the above button to see document state    let resEle = document.querySelector(".result");    let BtnEle = document.querySelector(".Btn");    resEle.innerHTML = document.readyState + "";    BtnEle.addEventListener("click", () => {       if (document.readyState === "complete") {          resEle.innerHTML = "The page has finished loading completely";       } else {          resEle.innerHTML = "The page is still loading";       }    }); OutputOn clicking the ‘Check’ button −

Advertisements