News

Here are some of the built-in number constants that exist on the Math object: 1)The PI number: Math.PI which is approximately 3.14159 2)The Euler's constant: Math.E which is approximately 2.718 3)The ...
Object.freeze() is a method in JavaScript that can be used to freeze an object, preventing new properties from being added to it, and preventing existing properties from being modified or deleted.