Skip to content

Instantly share code, notes, and snippets.

@oguzhankircali
Last active November 14, 2018 06:13
Show Gist options
  • Save oguzhankircali/3ec6c0a9677cc9f9fd71332f2bbfd0f1 to your computer and use it in GitHub Desktop.
Save oguzhankircali/3ec6c0a9677cc9f9fd71332f2bbfd0f1 to your computer and use it in GitHub Desktop.
timeout.js
CreateTimeout();
function CreateTimeout() {
console.log('Yooo!');
setTimeout(function () { alert('Yenileniyor…'); }, 2000);
console.log('Yooo!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment