Skip to content

Instantly share code, notes, and snippets.

@zlatkov
Created October 11, 2017 14:34
Show Gist options
  • Save zlatkov/688a0b41ae10e45bd202d02bb12df264 to your computer and use it in GitHub Desktop.
Save zlatkov/688a0b41ae10e45bd202d02bb12df264 to your computer and use it in GitHub Desktop.
function first() {
console.log('first');
}
function second() {
console.log('second');
}
function third() {
console.log('third');
}
first();
setTimeout(second, 1000); // Invoke `second` after 1000ms
third();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment