Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
REMitchell
GitHub Repository: REMitchell/python-crawling
Path: blob/master/6-Selenium/phantomjs/examples/countdown.js
164 views
1
var t = 10,
2
interval = setInterval(function(){
3
if ( t > 0 ) {
4
console.log(t--);
5
} else {
6
console.log("BLAST OFF!");
7
phantom.exit();
8
}
9
}, 1000);
10
11