Comments on: Digital Clock using HTML CSS & Javascript https://www.codingnepalweb.com/digital-clock-using-javascript-2/ CodingNepal is a blog dedicated to providing valuable and informative content about web development technologies such as HTML, CSS, JavaScript, and PHP. Sat, 08 Apr 2023 09:14:16 +0000 hourly 1 https://wordpress.org/?v=6.4.2 By: HELLO https://www.codingnepalweb.com/digital-clock-using-javascript-2/#comment-24719 Sat, 08 Apr 2023 09:14:16 +0000 https://codingnepalweb.com/2020/04/26/digital-clock-using-html-css-javascript/#comment-24719 In reply to Steve V.

if(hr > 24){
day = ”;
hr = hr – 24;
}
if(hr == 0){
hr = 24;
}
if(sec < 10){
sec = '0' + sec;
}
if(min < 10){
min = '0' + min;
}
if(hr < 10){
hr = '0' + hr;
}

]]>
By: Steve V https://www.codingnepalweb.com/digital-clock-using-javascript-2/#comment-16167 Wed, 18 Jan 2023 12:39:13 +0000 https://codingnepalweb.com/2020/04/26/digital-clock-using-html-css-javascript/#comment-16167 What chagnes are needed to convert to a 24-hour clock with no AM or PM

]]>
By: Aidan Ariley https://www.codingnepalweb.com/digital-clock-using-javascript-2/#comment-6667 Sat, 15 Jan 2022 18:17:47 +0000 https://codingnepalweb.com/2020/04/26/digital-clock-using-html-css-javascript/#comment-6667 In reply to hacker pro.

Its Thanks

]]>
By: Gregory M Proctor https://www.codingnepalweb.com/digital-clock-using-javascript-2/#comment-4560 Mon, 04 Oct 2021 15:05:41 +0000 https://codingnepalweb.com/2020/04/26/digital-clock-using-html-css-javascript/#comment-4560 In reply to hacker pro.

nice

]]>
By: hacker pro https://www.codingnepalweb.com/digital-clock-using-javascript-2/#comment-997 Mon, 26 Oct 2020 16:26:42 +0000 https://codingnepalweb.com/2020/04/26/digital-clock-using-html-css-javascript/#comment-997 tanks

]]>