Skip to content

Instantly share code, notes, and snippets.

@Farenheith
Last active February 21, 2020 10:49
Show Gist options
  • Save Farenheith/0912efa9ad12ef221405d1376c1eaebf to your computer and use it in GitHub Desktop.
Save Farenheith/0912efa9ad12ef221405d1376c1eaebf to your computer and use it in GitHub Desktop.
Example of testable code using setTimeout
export function doubleConsole() {
console.log('Now you see me');
setTimeout(() => console.log("Now you don't"), 100);
setImmediate(() => console.log("Now still"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment