Skip to content

Instantly share code, notes, and snippets.

@zackexplosion
Created July 9, 2024 06:45
Show Gist options
  • Save zackexplosion/59b1be29c6ed9dec0e6232e38ffd40dc to your computer and use it in GitHub Desktop.
Save zackexplosion/59b1be29c6ed9dec0e6232e38ffd40dc to your computer and use it in GitHub Desktop.
Clock with milliseconds
class Здравствуй {
constructor(){
const d1 = new Date()
const d2 = new Date().getTime().toString()
const output = `\r ${d1} ${d2}`
process.stdout.write(output)
setTimeout(function(){
new Здравствуй()
})
}
}
new Здравствуй()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment