countdown.js 226 B

12345678910
  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);