Found 9150 Articles for Object Oriented Programming

How to draw a circle in JavaScript?

AmitDiwan
Updated on 21-Jul-2020 07:16:20

2K+ Views

Following is the code to draw a circle in JavaScript −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .circleCanvas {       border: 3px solid #110101;    } Draw a circle in JavaScript CLICK HERE Click on the above button to create a circle in the above canvas element    let canvasEle = document.querySelector(".circleCanvas");    let BtnEle = document.querySelector(".Btn");    BtnEle.addEventListener("click", () => {       var circle = canvasEle.getContext("2d");       circle.beginPath();       circle.arc(180, 100, 90, 0, 2 * Math.PI);       circle.stroke();    }); OutputThe above code will produce the following output −On clicking the ‘CLICK HERE’ button −

Single dimensional array vs multidimensional array in JavaScript.

AmitDiwan
Updated on 21-Jul-2020 07:12:47

707 Views

Following is the code for single and multidimentsional 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: rebeccapurple;    }    .result {       color: red;    } Single dimensional array vs multidimensional array Single dimensional Array Multidimensional Array CLICK HERE Click on the above button to display single and multidimensional array    let resEle = document.querySelector(".result");    let ... Read More

Setting property in an empty object using for loop in JavaScript.

AmitDiwan
Updated on 21-Jul-2020 07:09:58

452 Views

Following is the code for setting property in an empty object using for loop 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;    } Setting property in an empty object using for loop CLICK HERE Click on the above button to populate the empty object obj1    let resEle = document.querySelector(".result");    let BtnEle = document.querySelector(".Btn");    let obj = ... Read More

How to assign static methods to a class in JavaScript?

AmitDiwan
Updated on 21-Jul-2020 07:06:13

726 Views

To assign static methods to class in JavaScript simply prefix the method with keyword static. The static methods then can be called without instantiating the class.Following is the code to assign static methods to a class 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;    } Assign static methods to a class in JavaScript CLICK HERE Click on the above button ... Read More

How to de-structure an imported object in JavaScript?

AmitDiwan
Updated on 21-Jul-2020 07:04:21

151 Views

Following is the code to de-structure an imported object 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;    } De-structure an imported object in JavaScript CLICK HERE Click on the above button to destructure the person object script.jsimport person from "./sample.js"; let resEle = document.querySelector(".result"); let BtnEle = document.querySelector(".Btn"); let {firstName, lastName, age} = person; BtnEle.addEventListener("click", () => { ... Read More

Explain 'Not a constructor function' error in JavaScript?

AmitDiwan
Updated on 21-Jul-2020 07:02:12

338 Views

The not a constructor function error occurs if we use an object or a variable as a constructor that isn’t a constructor.Following is the code for not a constructor function error 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;    } Not a constructor function error CLICK HERE Click on the above button to use a variable as constructor   ... Read More

How to group objects based on a value in JavaScript?

AmitDiwan
Updated on 21-Jul-2020 07:00:19

434 Views

Following is the code to group objects based on a value 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;    } Group objects based on a value in JavaScript { name: 'Rohan', age: 18 }, { name: 'Mohan', age: 20 }, { name: 'Shawn', age: 18 }, { name: 'Michael', age: 18 }, { name: 'David', age: 20 } CLICK ... Read More

How to multiply two Arrays in JavaScript?

AmitDiwan
Updated on 21-Jul-2020 06:58:23

2K+ Views

Following is the code to multiply two arrays 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;    } Multiply two Arrays in JavaScript CLICK HERE Click the above button to multiply the above two arrays    let BtnEle = document.querySelector(".Btn");    let resEle = document.querySelector(".result");    let sampleEle ... Read More

Sorting JavaScript object by length of array properties.

AmitDiwan
Updated on 21-Jul-2020 06:56:22

480 Views

Following is the code to sort JavaScript object by length of array properties −Example Live Demo Document    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    } Sorting JavaScript object by length of array properties CLICK HERE Click the above button to sort the objects inside arrObj based on Subject array length    let BtnEle = document.querySelector(".Btn");    let arrObj = [       { name: "Rohan", Subject: ["Maths", "Science", "EVS", "SST"] },       { name: "Mohan", Subject: ["Maths", "Science", "SST"] },     ... Read More

The debugger statement in JavaScript

AmitDiwan
Updated on 20-Jul-2020 08:41:24

827 Views

The debugger statement in JavaScript is used for setting a breakpoint in the code. The code stops execution as soon as it encounters the debugger statement and calls the debugger function (if available).Following is the code to implement debugger statement 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;    } Debugger statement in JavaScript. CLICK HERE Click on the above ... Read More

Advertisements