Created
July 9, 2024 06:45
-
-
Save zackexplosion/59b1be29c6ed9dec0e6232e38ffd40dc to your computer and use it in GitHub Desktop.
Clock with milliseconds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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