Skip to content

Instantly share code, notes, and snippets.

@n9ti
Last active September 7, 2015 04:26
Show Gist options
  • Save n9ti/ae5b219b1a088ba08add to your computer and use it in GitHub Desktop.
Save n9ti/ae5b219b1a088ba08add to your computer and use it in GitHub Desktop.
console.log('Step 1');
funcSync();
console.log('Step 3');
function funcSync () {
console.log('Step 2');
}
// ผลลัพท์
// Step 1
// Step 2
// Step 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment