What is the difference between synchronous and asynchronous functions?
synchronous is one function at a time it lock up the browser for the duration of its execution, asynchronous is multiple functions at a time you ,can do other functions while one is running
What is callback hell?
a simple operation that require a lot of nested a lot of nested functions, a repetition of callback that create too much coding
Which technique can help us solve callback hell?
with promises or meteor with fibers package