aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/reference/operators/conditional_operator
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/conditional_operator
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/conditional_operator')
-rw-r--r--files/zh-tw/web/javascript/reference/operators/conditional_operator/index.html2
1 files changed, 1 insertions, 1 deletions
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>