Skip to content

Instantly share code, notes, and snippets.

View Rihovardini's full-sized avatar
🎯
Focusing

Ihor Andriiv Rihovardini

🎯
Focusing
  • Kyiv, Ukraine
View GitHub Profile

Event loop

  1. The command console.log(1) gets into call stack and executing there.
  2. Next, the command setTimeout(func,0) tells to call stack to run the callback when all current stream is finished.SetTimeout makes it async and gets out function from the curren stream.Callback's gonna go to web Api,callback queue and call stack.
  3. Finally,console.log(3) is gonna run before setTimeout callback, cause this function is in current stream.
@Rihovardini
Rihovardini / Advanced-git.md
Last active June 30, 2018 21:24
В даному прикладі було описано різниця між коммандою git rebase та git merge.

Різниця між rebase i merge

Різниця в тому, що git rebase при злитті водображає історію комітів не попорядку, а git merge попорядку.

Результат після git rebase:

C:\Users\andri\Desktop\advanced>git log
commit 218a6959f8742ccf25cf7e0da794d5cdde933939 (HEAD -> master)
Author: Ihor Andriiv <[email protected]>
Date:   Sat Jun 30 23:45:05 2018 +0300