aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/guide/expressions_and_operators
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/guide/expressions_and_operators')
-rw-r--r--files/zh-cn/web/javascript/guide/expressions_and_operators/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/files/zh-cn/web/javascript/guide/expressions_and_operators/index.html b/files/zh-cn/web/javascript/guide/expressions_and_operators/index.html
index 7cb835c92b..8f45880006 100644
--- a/files/zh-cn/web/javascript/guide/expressions_and_operators/index.html
+++ b/files/zh-cn/web/javascript/guide/expressions_and_operators/index.html
@@ -230,7 +230,7 @@ var var2 = 4;</code></pre>
<p>除了标准的算术运算符(+, - ,* /),JavaScript还提供了下表中的算术运算符。</p>
-<table class="fullwidth-table" style="height: 469px; width: 520px;">
+<table class="fullwidth-table">
<caption>表 3.3 算术运算符</caption>
<thead>
<tr>
@@ -438,7 +438,7 @@ After: 10100000000000000110000000000001</code></pre>
<p>移位运算符列表如下。</p>
-<p><strong style="font-style: inherit; font-weight: 700;">移位运算符</strong></p>
+<p><strong>移位运算符</strong></p>
<table class="standard-table">
<thead>
@@ -474,9 +474,9 @@ After: 10100000000000000110000000000001</code></pre>
<p>逻辑运算符常用于布尔(逻辑)值之间; 当操作数都是布尔值时,返回值也是布尔值。 不过实际上<code>&amp;&amp;</code>和<code>||</code>返回的是一个特定的操作数的值,所以当它用于非布尔值的时候,返回值就可能是非布尔值。 逻辑运算符的描述如下。</p>
-<p><strong style="font-style: inherit; font-weight: 700;">逻辑运算符</strong></p>
+<p><strong>逻辑运算符</strong></p>
-<table class="fullwidth-table" style="height: 190px; width: 1316px;">
+<table class="fullwidth-table">
<thead>
<tr>
<th scope="col">运算符</th>
@@ -786,7 +786,7 @@ if (theDay instanceof Date) {
<p>下表列出了描述符的优先级,从最高到最低。</p>
-<p><strong style="font-style: inherit; font-weight: 700;">运算符优先级</strong></p>
+<p><strong>运算符优先级</strong></p>
<table class="standard-table">
<thead>