0
我有以下幾點:訂單執行代碼的
HTML:
<head>
<script>
var sharedValue = {a:"b"}
</script>
<script src="otherScript.js"></script>
<script>
console.log(sharedValue);
</script>
</head>
otherScript.js
sharedValue.b = "a";
是否有可能在頭部的console.log如果otherScript.js
加載時間太長,會輸出{a:"b"}
?或將它永遠是{a:"b",b:"a"}
?
謝謝!