aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/reference/operators
diff options
context:
space:
mode:
authort7yang <t7yang@gmail.com>2022-01-10 08:38:05 +0800
committerIrvin <irvinfly@gmail.com>2022-02-16 02:35:54 +0800
commita2617e517fe48fbd0fc283e05c82e32765a3fb12 (patch)
tree70e585d4faa5306d2f7dc4428aa72ede4b00b5c4 /files/zh-tw/web/javascript/reference/operators
parentd9e9adb5f80a819fe46349bcf6d1faec734b09cd (diff)
downloadtranslated-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/reference/operators')
-rw-r--r--files/zh-tw/web/javascript/reference/operators/await/index.html2
-rw-r--r--files/zh-tw/web/javascript/reference/operators/conditional_operator/index.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-tw/web/javascript/reference/operators/await/index.html b/files/zh-tw/web/javascript/reference/operators/await/index.html
index a8bda40412..2b79ef4f9f 100644
--- a/files/zh-tw/web/javascript/reference/operators/await/index.html
+++ b/files/zh-tw/web/javascript/reference/operators/await/index.html
@@ -18,7 +18,7 @@ translation_of: Web/JavaScript/Reference/Operators/await
<dl>
<dt><code>expression</code></dt>
<dd>等待解析的 {{jsxref("Promise")}} 物件或任何值。</dd>
- <dt><font face="Consolas, Liberation Mono, Courier, monospace">rv = 回傳值</font></dt>
+ <dt><code>rv = 回傳值</code></dt>
<dd>
<p>回傳 Promise 物件的 resolved 值,或當該值不是 Promise 物件時,回傳該值本身。</p>
</dd>
diff --git a/files/zh-tw/web/javascript/reference/operators/conditional_operator/index.html b/files/zh-tw/web/javascript/reference/operators/conditional_operator/index.html
index c16dc0cff1..cd0ccfa160 100644
--- a/files/zh-tw/web/javascript/reference/operators/conditional_operator/index.html
+++ b/files/zh-tw/web/javascript/reference/operators/conditional_operator/index.html
@@ -23,7 +23,7 @@ translation_of: Web/JavaScript/Reference/Operators/Conditional_Operator
<dt><code><var>exprIfTrue</var></code></dt>
<dd>如果 <code><var>condition</var></code> 的值是 <a href="/en-US/docs/Glossary/truthy">truthy</a> (等於或是可轉換為 <code>true</code>) , <code><var>exprIfTrue</var></code>  會被執行</dd>
<dt><code><var>exprIfFalse</var></code></dt>
- <dd>如果 <code><var>condition</var></code> 的值是 <a href="/en-US/docs/Glossary/falsy">falsy</a> (等於或是可轉換為 <font face="consolas, Liberation Mono, courier, monospace">false</font>) , <code><var>exprIfFalse</var></code>  會被執行</dd>
+ <dd>如果 <code><var>condition</var></code> 的值是 <a href="/en-US/docs/Glossary/falsy">falsy</a> (等於或是可轉換為 <code>false</code>) , <code><var>exprIfFalse</var></code>  會被執行</dd>
</dl>
<h2 id="描述">描述</h2>