Explain Shorthand Functions in JavaScript

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

1K+ Views

The arrow functions also known as shorthand functions were introduced in ES2015 and allows us to write function in a shorter way. They don’t have their own binding to this and get the this from the surrounding context.Following is the code showing shorthand functions 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;    } Shorthand function in JavaScript CLICK HERE Click ... Read More

Flatten Multi-Dimensional Arrays in JavaScript

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

391 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

Flattening Arrays in JavaScript

AmitDiwan
Updated on 17-Jul-2020 08:14:35

349 Views

Following is the code for flattening 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 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 1    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(1);       store.forEach((item,index) => {          resEle.innerHTML += index + ' : ' + item + '';       });    }); OutputOn clicking the ‘CLICK HERE’ button −

Create URL Object Using JavaScript

AmitDiwan
Updated on 17-Jul-2020 08:12:47

514 Views

Following is the code to create a URL object 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;    } Url object in JavaScript CLICK HERE Click on the above button to create and display a url object    let resEle = document.querySelector(".result");    let url = new URL("https://google.com/image=23&size=440px");    document.querySelector(".Btn").addEventListener("click", () => {       resEle.innerHTML += "url protocol = " + url.protocol + "";       resEle.innerHTML += "url host = " + url.host + "";       resEle.innerHTML += "url.pathname = " + url.pathname + "";    }); OutputThe above code will produce the following output −On clicking the ‘CLICK HERE’ button −

File and FileReader in JavaScript

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

353 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

Convert Image to Blob Using JavaScript

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

15K+ 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

Access JavaScript Properties

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

286 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

TextDecoder and TextEncoder in JavaScript

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

598 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

Calculate Average of an Array in JavaScript

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

554 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 −

Re-throw Errors in JavaScript

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

223 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

Advertisements