Created
November 27, 2017 14:10
-
-
Save seogi1004/0fb547adf241f147340bb98e6f30b0f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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