6747 Views
Class in javascript
Classes are the function which is used to define expression and declarations. Basically the Java script is a classless language, it supports the object.In the javascript class work in the same way like other language that's why classes are called syntactic sugar .
class ...
Anamika Gupta
May 18, 2018
6308 Views
Number Methods
In javascript method and properties contain a primitive value and it treat primitive value as a object when it execute its method and properties.
Basic maths calculation with numbers in javascript
const num1=100;
const num2=20;
let val;
//Basic math with numbers
val=num1 ...
Anamika Gupta
Mar 25, 2018