关于JS的定时器疑惑,JS不是单线程吗,为什么这个三个定时器可以同时运行?一瞬间都弹出1来
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
setTimeout(function(){
console.log(1);
},3000)
setTimeout(function(){
console.log(1);
},3000)
setTimeout(function(){
console.log(1);
},3000)
</script>
</body>
</html>
js的单线程是针对事件循环层面的。但是在虚拟机层面它是多线程的。你可以理解为多人同时做事情,但最后是排队汇报成果