Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do I get the current date in JavaScript?
To get the current date in JavaScript, use the getDate() method.
Example
You can try to run the following code get the date:
<!DOCTYPE html>
<html>
<body>
<p>Today's Date</p>
<button onclick="myFunction()">Get Date</button>
<p id="test"></p>
<script>
function myFunction() {
var date = new Date();
var n = date.getDate();
document.getElementById("test").innerHTML = n;
}
</script>
</body>
</html>Advertisements