@uday216
Dev aspirant
Nothing here yet.
Nothing here yet.
Nov 8, 2023 · 5 min read · Declaration of the object: In JavaScript, we can create an object by using curly braces {} and then add key-value pairs as items of the object. Key-value pairs are like pairs of name and value. The key is what you will use to access the value, and th...
Join discussion
Nov 6, 2023 · 4 min read · Math is an object in JavaScript that provides mathematical functions and constants. There is no need to create an instance of the object we can directly access the methods of this object by simply calling it with the "." operator e.g. Math.round(x) t...
Join discussion
Nov 5, 2023 · 5 min read · Date object in js The Date object in JavaScript is used for working with dates and times. The Date object represents a specific moment in time, including the year, month, day, hour, minute, second, and milliseconds. The date object in JavaScript prov...
Join discussion