debian-phantomjs/examples/countdown.js

11 lines
226 B
JavaScript

"use strict";
var t = 10,
interval = setInterval(function(){
if ( t > 0 ) {
console.log(t--);
} else {
console.log("BLAST OFF!");
phantom.exit();
}
}, 1000);