JavaScript Posts
Date Methods
JavaScript Date objects represent a single moment in time in a platform-independent format. Date objects encapsulate an integral number that represents milliseconds since the midnight at the beginning of January …
Date Object in javascript
Date object work's as a data type in JavaScript object is used to display dates on the web page.In JavaScript we use new Date() to create Date object.
Math Object
In javaScript Math is a pree define class which contains pree define method and properties,so that we can use them in our programs.
Array Methods
concat() method in JavaScript is used to add two arrays and create a new array.It does not change anything in the original array content.
Array in JavaScript
In JavaScript arrays are collection of multiple values by using a single variable.Arrays are index based,so that we can get array elements very easily by using index values. In JavaScript …