Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created November 27, 2017 14:10
Show Gist options
  • Save seogi1004/0fb547adf241f147340bb98e6f30b0f5 to your computer and use it in GitHub Desktop.
Save seogi1004/0fb547adf241f147340bb98e6f30b0f5 to your computer and use it in GitHub Desktop.
function alram(min, callback) {
var isCall = false;
setInterval(function() {
var date = new Date();
var nowMin = date.getMinutes();
if(nowMin == min && !isCall) {
isCall = true;
callback(nowMin);
}
}, 1000);
}
onload=function() {
alram(15, function(min) {
alert("현재 Minutes는'" + min + "' 입니다.");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment