-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclock.js
35 lines (32 loc) · 928 Bytes
/
clock.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
let uName = prompt("Adınızı lutfeder misiniz?");
document.querySelector("#myName").innerHTML = `${uName}`;
let timeDiv = document.getElementById("myClock");
function showTime() {
const weekday = [
"Pazar",
"Pazartesi",
"Salı",
"Çarşamba",
"Perşembe",
"Cuma",
"Cumartesi",
];
// We create a new Date object and assign it to a variable called "time".
var time = new Date(),
// Access the "getHours" method on the Date object with the dot accessor.
hours = time.getHours(),
// Access the "getMinutes" method with the dot accessor.
minutes = time.getMinutes(),
seconds = time.getSeconds(),
day = weekday[time.getDay()];
timeDiv.innerHTML = `
${harold(hours)}:${harold(minutes)}:${harold(seconds)} ${day}
`;
function harold(standIn) {
if (standIn < 10) {
standIn = "0" + standIn;
}
return standIn;
}
}
setInterval(showTime, 1000);