Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 8, 2023 07:45 pm GMT

How to Create a Digital Clock Using JavaScript

Digital Clock Using JavaScript

In this article, well show you How to create a digital clock using JavaScript In this article, I will guide you through the process of building a simple digital clock that can display the current time on your webpage.

We will start by creating a basic HTML document and adding some CSS to style the clock. Then, we will use JavaScript to get the current time and update the clock every second.

Throughout the article, I will use the key concepts and functions of JavaScript, such as the Date object and setInterval() method. By the end of this blog, you will have a fully functional digital clock that you can use on your own website.

Whether you are a beginner or an experienced developer, this article is perfect for anyone who wants to learn more about JavaScript and create an interactive element for their website. So, grab your favorite code editor, and lets get started!

Created By [Author](https://rutikkpatel.medium.com/) ( [Rutik Patel](https://rutikkpatel.medium.com/) )

Points to be discussed

  • Preview

  • YouTube Tutorial

  • HTML Code

  • CSS Code

  • JavaScript Code

  • References

Preview :

A live demo of the website can be viewed by clicking here.

Preview of Digital Clock

YouTube Tutorial :

HTML CODE :

index.html

<!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <meta http-equiv="X-UA-Compatible" content="IE=edge">  <meta name="viewport" content="width=device-width, initial-scale=1.0">  <title>JavaScript Digital Clock</title>  <link rel="stylesheet" href="style.css">  <!-- Bootstrap CDN -->  <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"    integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">  <!-- My JavaScript -->  <script src="script.js"></script></head><body>  <div class="container my-5 py-4 bg-warning">    <div class="jumbotron">      <h1 class="display-4">Current Time : <span id="time"></span></h1>      <hr size=5px;>      <h1 class="display-5">Current Date : <span id="date"></span></h1>    </div>  </div>  <div class="text-center">    <h1>DIGITAL CLOCK USING JavaScript</h1>  </div>  <footer>    <p id="footer" class= "text-center">       2023 Designed By : <a href="https://rutikkpatel.github.io/Portfolio1/" target="_block">Rutik Patel</a>  </footer>  <!-- Bootstrap Bundle Script CDN -->  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"    integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"    crossorigin="anonymous"></script></body></html>

CSS CODE :

style.css

* {  margin: 0;  padding: 0;}body {  background: rgba(162, 155, 254, 0.5) !important;}.container {  border-radius: 15px;}#footer a {  text-decoration: none;  line-height: 34px;  color: #000000;}#footer a:hover {  color: red;  font-weight: bold;  text-decoration: underline;}

JavaScript CODE :

script.js

let a;let time;let date;const options = {  weekday: 'long',  year: 'numeric',  month: 'long',  day: 'numeric'}setInterval(() => {  a = new Date();  // Concate Hours, minutes and seconds  time = a.getHours() + ":" + a.getMinutes() + ":" + a.getSeconds();  document.getElementById('time').innerText = time;  // For Current Date  // 14-02-2023 Date Format  // date = a.toLocaleDateString();  // Display month day in string format - Wednesday, 20 December 2000  date = a.toLocaleDateString(undefined, options)  document.getElementById('date').innerText = date;})

References :

GitHub Repository: https://github.com/rutikkpatel/JavaScript_Programs/tree/main/JS_Digital_Clock


Original Link: https://dev.to/rutikkpatel/how-to-create-a-digital-clock-using-javascript-59ji

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To