Get Date Using JavaScript

We can get Date using JavaScript built in object Date. In below example we will see how to get date using JavaScript Date object. example to get current date using JavaScript in dd-mm-yyyy format:- var today = new Date(); var day = today.getDate(); var month = today.getMonth()+1; //first month starts from 0 var year = … Read more

JavaScript: an Overview

JavaScript (JS) is easy to use , dynamic computer programming language, commonly used as part of web browsers. it’s implementations allows client side scripts to interact with user, it can control the browser, communicate asynchronously, and alter the document content that is displayed. JavaScript is also used in game development, server side network programming with … Read more