📅  最后修改于: 2022-03-11 15:04:05.189000             🧑  作者: Mango
Javascript is a single threaded language. This means it has one call stack and one memory
heap. As expected, it executes code in order and must finish executing a piece code before
moving onto the next. It's synchronous, but at times that can be harmful. For example, if a
function takes awhile to execute or has to wait on something, it freezes everything up in the
meanwhile.