Skip to content

Category Archives: JavaScript

What is Atomics? The Atomics is an object in JavaScript which provides the ability to perform atomic operations as static methods. Just like the Math… Read More
JavaScript Object.seal() method is used to seal an object. Sealing an object does not allow new properties to be added and marks all existing properties… Read More
The boolean.valueOf() method is used to return a boolean value either “true” or “false” depending upon the value of the specified boolean object. Syntax:  boolean.valueOf()… Read More
The Object.freeze() method is used to freeze an object. Freezing an object does not allow new properties to be added to the object and prevents… Read More
Object.isFrozen() Method: Among the Object constructor methods, there is a method Object.isFrozen() which is used to determine if an object is frozen or not. An object… Read More
What is Atomics?  The Atomics is an object in JavaScript which provides the ability to perform atomic operations as static methods. Just like the Math… Read More
The Object.assign() method is used to copy the values and properties from one or more source objects to a target object. It invokes getters and… Read More
What is Atomics? The Atomics is an object in JavaScript which provides the ability to perform atomic operations as static methods. Just like the Math… Read More
Among the Atomic Operations, there is an inbuilt operation Atomics.load() that is used to return a value that is residing at a given position in… Read More
Atomics.compareExchange() Method: Among the Atomic Operations, there is an inbuilt method Atomics.compareExchange() which is used to exchange a value at a specific position of an… Read More
Among the Atomic Operations, there is a method Atomics.sub() that is used to subtract a given value at a given position in the array and… Read More
Among the Atomic Operations, there is an inbuilt operation Atomics.exchange() that is used to exchange and store a new value at a specific position in… Read More
The Javascript Math.SQRT1_2 is a property in JavaScript which is simply used to find the value of the square root of 1/2, whose value is… Read More
The Math.SQRT2 is a property in JavaScript which is simply used to find the value of the square root of 2, whose value is approximately… Read More
The Math.PI is a property in JavaScript which is simply used to find the value of Pi i.e, in symbolic form Π which is nothing… Read More

Start Your Coding Journey Now!