Skip to content

Commit 9a787df

Browse files
committed
removed comments I guess
1 parent 5f3f017 commit 9a787df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Week-3/Homework/mandatory/1-alarmclock/alarmclock.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function setAlarm() {
22

33
let setAlarmbutton=document.querySelector("#set");
4-
let alarmInputValue=document.querySelector("#alarmSet").value;// this is value in box
4+
let alarmInputValue=document.querySelector("#alarmSet").value;
55
setAlarmbutton.addEventListener("click",alarmOn(alarmInputValue));
66
}
77

@@ -30,7 +30,7 @@ function updateScreen(newValue){
3030

3131

3232
// This will convert input time (initially in seconds) into minutes and seconds format.
33-
function convertTime(inputValue)
33+
function convertTime(inputValue) //inputValue is times in seconds and this function returns time in minutes and seconds.
3434
{
3535
var minutes=0;
3636
var seconds =0;

0 commit comments

Comments
 (0)