• This project
    • Loading...
  • Sign in

Akhidjon / webtoon1

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • webtoon1
  • node_modules
  • phantomjs
  • lib
  • phantom
  • examples
  • countdown.js
  • Akhidjon's avatar
    added · e4d3bcb8
    e4d3bcb8
    Akhidjon authored 2019-05-19 14:55:29 +0900
countdown.js 226 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
"use strict";
var t = 10,
    interval = setInterval(function(){
        if ( t > 0 ) {
            console.log(t--);
        } else {
            console.log("BLAST OFF!");
            phantom.exit();
        }
    }, 1000);