diff options
author | t7yang <t7yang@gmail.com> | 2022-01-10 08:38:05 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2022-02-16 02:35:54 +0800 |
commit | a2617e517fe48fbd0fc283e05c82e32765a3fb12 (patch) | |
tree | 70e585d4faa5306d2f7dc4428aa72ede4b00b5c4 /files/zh-tw/web/javascript/eventloop | |
parent | d9e9adb5f80a819fe46349bcf6d1faec734b09cd (diff) | |
download | translated-content-a2617e517fe48fbd0fc283e05c82e32765a3fb12.tar.gz translated-content-a2617e517fe48fbd0fc283e05c82e32765a3fb12.tar.bz2 translated-content-a2617e517fe48fbd0fc283e05c82e32765a3fb12.zip |
remove font tag in zh-TW
Diffstat (limited to 'files/zh-tw/web/javascript/eventloop')
-rw-r--r-- | files/zh-tw/web/javascript/eventloop/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-tw/web/javascript/eventloop/index.html b/files/zh-tw/web/javascript/eventloop/index.html index 4dcfca821f..456fb2309d 100644 --- a/files/zh-tw/web/javascript/eventloop/index.html +++ b/files/zh-tw/web/javascript/eventloop/index.html @@ -36,7 +36,7 @@ function bar(x) { console.log(bar(7)); </pre> -<p>當呼叫 <code><font face="Consolas, Liberation Mono, Courier, monospace">bar</font></code> 時,會產生一個含有 <code>bar</code> 的參數及區域變數的 frame,而在 <code><font face="Consolas, Liberation Mono, Courier, monospace">bar</font></code> 呼叫了 <code>foo</code> 時,含有 <code>foo</code> 參數及變數的第二個 frame 就會被置於堆疊的最上面。當 <code>foo</code> 回傳後,最上面的 frame 會被抽離堆疊(僅留下 <font face="Consolas, Liberation Mono, Courier, monospace"><code>bar</code></font> 的呼叫 frame)。然後當 bar 返回之後,堆疊就會清空。</p> +<p>當呼叫 <code>bar</code> 時,會產生一個含有 <code>bar</code> 的參數及區域變數的 frame,而在 <code>bar</code> 呼叫了 <code>foo</code> 時,含有 <code>foo</code> 參數及變數的第二個 frame 就會被置於堆疊的最上面。當 <code>foo</code> 回傳後,最上面的 frame 會被抽離堆疊(僅留下 <code>bar</code> 的呼叫 frame)。然後當 bar 返回之後,堆疊就會清空。</p> <h3 id="堆積(Heap)">堆積(Heap)</h3> |