Found 6710 Articles for Javascript

loose equality in JavaScript

AmitDiwan
Updated on 20-Jul-2020 08:18:34

230 Views

The loose equality operator ‘==’ allows us to compare two or more operands by converting their value to a common type first and then checking for the equality between them.Following is the code to implement loose equality in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 20px;       font-weight: 500;       color: blueviolet;    } Loose equality in JavaScript. CLICK HERE Click on the above button see some ... Read More

Accessor property and its attributes in JavaScript

AmitDiwan
Updated on 20-Jul-2020 08:16:40

213 Views

The accessor property helps us in implementing getter and setter functions in JavaScript.They execute a function on getting or setting a value.There are four attributes of an accessor property −get − It gets called when a property is read. It doesn’t’ take any arguments/set − It gets called when a property is set. It takes only one argument.enumerable − Allows the object to be iterable when set to true.configurable − When set to false it will not allow to delete the property or change its values.Following is the code for accessor property and its attributes −Example Live Demo ... Read More

Renaming imports and exports in JavaScript

AmitDiwan
Updated on 20-Jul-2020 08:14:23

197 Views

Following is the code for renaming imports and exports in JavaScript −Note − You need to run a localhost server to run this example.Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 18px;       font-weight: 500;       color: rebeccapurple;    } Renaming imports and exports in JavaScript CLICK HERE Click on the above button to execute the imported function script.jsimport {test, tellTime as showTime} from "./sample.js"; let resultEle = ... Read More

Loading JavaScript modules dynamically

AmitDiwan
Updated on 20-Jul-2020 08:12:34

204 Views

Following is the code for loading JavaScript modules dynamically −Note − You need to run a localhost server to run this example.Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 18px;       font-weight: 500;    } Loading JavaScript modules dynamically IMPORT Click on the above button to import module script.jsimport test from './sample.js'; document.querySelector('.Btn').addEventListener('click',()=>{    test(); })sample.jslet resultEle = document.querySelector(".result"); export default function testImport(){    resultEle.innerHTML = 'Module testImport has been imported'; }OutputOn clicking the ‘IMPORT’ button −

Keyed collections in JavaScript

AmitDiwan
Updated on 20-Jul-2020 08:10:32

642 Views

Keyed collections are data collections that are ordered by key not index. They are associative in nature. Map and set objects are keyed collections and are iterable in the order of insertion.Following is the code for keyed collections in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 20px;       font-weight: 500;       color: blueviolet;    } Keyed collections in JavaScript CLICK HERE Click on the above button to ... Read More

Indexed collections in JavaScript

AmitDiwan
Updated on 20-Jul-2020 08:08:10

4K+ Views

Arrays are the indexed collection in JavaScript as they allow us to access an element using its index.Following is the code to implement indexed collections in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 20px;       font-weight: 500;       color: blueviolet;    } Indexed collections in JavaScript CLICK HERE Click on the above button to create and display the array    let resEle = document.querySelector(".result");    let BtnEle = document.querySelector(".Btn");    BtnEle.addEventListener("click", () => {       let arr = [1, 2, 3, 4, 5];       arr.forEach((item, index) => {          resEle.innerHTML += `arr[${index}] = ${item} `;       });    }); OutputOn clicking the ‘CLICK HERE’ button −

Conditional statements in JavaScript

AmitDiwan
Updated on 20-Jul-2020 08:06:19

2K+ Views

There are three types of conditional statements in JavaScript −If statement − The if statement is used to execute code inside the if block only if the specific condition is met.If else statement − The If….Else statement is used to check only two conditions and execute different codes for each of them.If else if else statement − The if…else if…else statement is used for checking more than two conditions.Following is the code to implement conditional statements in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;   ... Read More

Modifying prototypes in JavaScript

AmitDiwan
Updated on 20-Jul-2020 08:04:03

170 Views

Following is the code for modifying prototypes in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 20px;       font-weight: 500;       color: blueviolet;    } Modifying prototypes in JavaScript CLICK HERE Click on the above button to see the original and modified prototype function    let resEle = document.querySelector(".result");    let BtnEle = document.querySelector(".Btn");    function Person(name, age, occupation) {       this.name = name;     ... Read More

How to set JavaScript object values dynamically?

AmitDiwan
Updated on 20-Jul-2020 08:01:20

756 Views

Following is the code for setting JavaScript object values dynamically −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 20px;       font-weight: 500;       color: blueviolet;    } Set Javascript object values dynamically CLICK HERE Click on the above button to set student object values dynamically    let resEle = document.querySelector(".result");    let BtnEle = document.querySelector(".Btn");    let student = {       name: "Rohan",       age: 22,       displayInfo() {          return "Name = " + this.name + " : Age = " + this.age + "";       },    };    BtnEle.addEventListener("click", () => {       resEle.innerHTML = student.displayInfo();       resEle.innerHTML += "After changing properties ";       student.name = "Shawn";       student.age = 19;       resEle.innerHTML += student.displayInfo();    }); OutputOn clicking the ‘CLICK HERE’ button −

Setting object members in JavaScript

AmitDiwan
Updated on 20-Jul-2020 07:59:03

113 Views

Following is the code to set object members in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .result {       font-size: 20px;       font-weight: 500;       color: blueviolet;    } Setting object members CLICK HERE Click on the above button to set student object members and display them    let resEle = document.querySelector(".result");    let BtnEle = document.querySelector(".Btn");    let student = {};    BtnEle.addEventListener("click", () => {       student.name = "Rohan";       student.age = 22;       student.displayInfo = function () {          resEle.innerHTML = "Name = " + this.name + " : Age = " + this.age;       };       student.displayInfo();    }); OutputOn clicking the ‘CLICK HERE’ button −

Advertisements