How to create a Digital Clock using JavaScript

Make money for being or staying online/internet.
You will get a $5 starting gift when you join using this link:: GET THE OFFER NOW!!
In this simple article, I am going to share with you the source code of a simple animated Digital Clock in JavaScript.
Since, browsers can execute the JavaScript program at the client-side, the script(in this case app.js) will pick up the time of the client's computer and display it in the browser using the globally known date object and its methods.
Tutorial
HTML
<div class="container"> <h1>Digital Clock</h1> <div id="clock"></div> </div>
CSS
body{ margin:0; padding:0; background:rgb(32, 28, 28); } h1{ color:tomato; text-decoration: underline; } .container{ display: flex; flex-direction:column; justify-content: center; align-items: center; height: 100vh; } #clock{ text-align: center; font-size:2rem; color:#fff; } #clock span{ padding:10px; background:#444; border-radius: 50%; }
JAVASCRIPT
I added another simple line to tell if its PM or AM on the last span element.
document.addEventListener('DOMContentLoaded', () => { const clockDiv = document.querySelector('#clock'); const timer = () => { const now = new Date(); const hour = now.getHours(); const minutes = now.getMinutes(); const seconds = now.getSeconds(); const markup = ` <span>${hour < 10 ? '0' + hour : hour}</span> : <span>${minutes < 10 ? '0' + minutes : minutes}</span> : <span>${seconds < 10 ? '0' + seconds : seconds}</span> //Added it after tutorial <span>${hour >= 12 ? 'PM' : 'AM'}</span> `; clockDiv.innerHTML = markup; } setInterval(() => { timer(); }, 1000) });
All videos and articles on Oston Code Cypher are free to watch and read because I believe that everyone should be able to learn for free. So if I have helped you in any way, consider becoming a SUBSCRIBER to my channel:: Oston Code Cypher
Save up to 80% with this Domain & Shared Hosting package deal! 80% OFF - GET OFFER NOW
Related Post(s)
» How to Install Node.js® and NPM on Windows
» Adding JavaScript to OPEN and CLOSE the Overlay Effect
» Learn how to animate the value of the placeholder attribute with JAVASCRIPT
» Learn how to create a progress bar using JavaScript
» Here are some games made with javascript
collections_bookmark Category :: Javascriptdate_range Published :: 2 years ago At: 03:05 AM
event_note Detailed Date :: May 23rd, 2020
person Writer :: Code
- RECENT POSTS

How to force the browser to cache a page?
There are several ways to force a web browser to cache an HTML page:

How can i cache pages using php?
You can use the output buffering functions in PHP to cache pages. Output buffering allows you to store the output of a PHP script in a buffer, which you can then manipulate before sending it to the client.

PHP is a popular programming language that is widely used for web development. It stands for "PHP: Hypertext Preprocessor" and is a server-side scripting language. This means that it is executed on the server, rather than in the user's web browser.

HTML, or Hypertext Markup Language, is the standard markup language for creating web pages and web applications. It is used to structure and organize content on the web, and to create the basic structure and layout of a webpage.

CSS, or Cascading Style Sheets, is a stylesheet language used for describing the look and formatting of a document written in HTML. CSS is used to control the presentation of multiple web pages at once, making it a crucial tool for web developers and designers.

A JavaScript library for formatting and manipulating numbers - Numeral.js
Check out this lightweight JavaScript library used for formatting and manipulating numbers.

All Countries Drop Down List | HTML Select Country Name
This simple country dropdown list is freely available for you to copy and use in your project forms.

HTML Entities Code Alphabet Discovery Using JavaScript
In this post I will show how writing just a few lines in JavaScript will allow you to render, browse and discover the alphabetical letters using a set of HTML entity codes.
- ADVERTISEMENT