mirror of
https://github.com/encounter/phantomjs.git
synced 2026-03-30 11:35:11 -07:00
10 lines
212 B
JavaScript
10 lines
212 B
JavaScript
var t = 10,
|
|
interval = setInterval(function(){
|
|
if ( t > 0 ) {
|
|
console.log(t--);
|
|
} else {
|
|
console.log("BLAST OFF!");
|
|
phantom.exit();
|
|
}
|
|
}, 1000);
|