4dfd818eafd4fbdec1abc050729b9b9c28fe39b3
[yaffs-website] / node_modules / phantomjs-prebuilt / lib / phantom / examples / countdown.js
1 "use strict";
2 var t = 10,
3     interval = setInterval(function(){
4         if ( t > 0 ) {
5             console.log(t--);
6         } else {
7             console.log("BLAST OFF!");
8             phantom.exit();
9         }
10     }, 1000);