From 7c2556fe79c44d7c31108b8c8b048d2b7704a95e Mon Sep 17 00:00:00 2001 From: t7yang Date: Mon, 10 Jan 2022 08:38:04 +0800 Subject: remove span tag in zh-TW --- .../reference/global_objects/array/join/index.html | 2 +- .../reference/global_objects/array/map/index.html | 2 +- .../global_objects/date/getday/index.html | 2 +- .../reference/global_objects/date/index.html | 2 +- .../reference/global_objects/function/index.html | 2 +- .../reference/global_objects/math/index.html | 2 +- .../object/defineproperty/index.html | 2 +- .../global_objects/string/concat/index.html | 2 +- files/zh-tw/web/javascript/reference/index.html | 60 +++++++++++----------- .../operators/conditional_operator/index.html | 4 +- .../operators/optional_chaining/index.html | 2 +- .../reference/operators/typeof/index.html | 4 +- .../reference/statements/block/index.html | 10 ++-- .../reference/statements/export/index.html | 2 +- .../reference/statements/import/index.html | 2 +- .../reference/statements/label/index.html | 2 +- .../reference/statements/switch/index.html | 2 +- 17 files changed, 52 insertions(+), 52 deletions(-) (limited to 'files/zh-tw/web/javascript/reference') diff --git a/files/zh-tw/web/javascript/reference/global_objects/array/join/index.html b/files/zh-tw/web/javascript/reference/global_objects/array/join/index.html index 0beaecebdd..a43360caf5 100644 --- a/files/zh-tw/web/javascript/reference/global_objects/array/join/index.html +++ b/files/zh-tw/web/javascript/reference/global_objects/array/join/index.html @@ -54,7 +54,7 @@ a.join(''); // 'WindRainFire'
function f(a, b, c) {
   var s = Array.prototype.join.call(arguments);
-  console.log(s); // '1,a,true'
+  console.log(s); // '1,a,true'
 }
 f(1, 'a', true);
 //expected output: "1,a,true"
diff --git a/files/zh-tw/web/javascript/reference/global_objects/array/map/index.html b/files/zh-tw/web/javascript/reference/global_objects/array/map/index.html
index d1838ce6ae..c87fa95064 100644
--- a/files/zh-tw/web/javascript/reference/global_objects/array/map/index.html
+++ b/files/zh-tw/web/javascript/reference/global_objects/array/map/index.html
@@ -15,7 +15,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/map
 ---
 
{{JSRef}}
-

map() 方法會建立一個新的陣列,其內容為原陣列的每一個元素經由回呼函式運算後所回傳的結果之集合。

+

map() 方法會建立一個新的陣列,其內容為原陣列的每一個元素經由回呼函式運算後所回傳的結果之集合。

{{EmbedInteractiveExample("pages/js/array-map.html")}}
diff --git a/files/zh-tw/web/javascript/reference/global_objects/date/getday/index.html b/files/zh-tw/web/javascript/reference/global_objects/date/getday/index.html index abdc0e89a1..fb55827283 100644 --- a/files/zh-tw/web/javascript/reference/global_objects/date/getday/index.html +++ b/files/zh-tw/web/javascript/reference/global_objects/date/getday/index.html @@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Date/getDay ---
{{JSRef}}
-

getDay() 方法會根據當地時間將指定日期返回一星期中的第幾天,其中0代表星期日。 在當月的某天可以參考{{jsxref("Date.prototype.getDate()")}}。

+

getDay() 方法會根據當地時間將指定日期返回一星期中的第幾天,其中0代表星期日。 在當月的某天可以參考{{jsxref("Date.prototype.getDate()")}}。

{{EmbedInteractiveExample("pages/js/date-getday.html", "shorter")}}
diff --git a/files/zh-tw/web/javascript/reference/global_objects/date/index.html b/files/zh-tw/web/javascript/reference/global_objects/date/index.html index 91c0305aa4..9e5675e682 100644 --- a/files/zh-tw/web/javascript/reference/global_objects/date/index.html +++ b/files/zh-tw/web/javascript/reference/global_objects/date/index.html @@ -34,7 +34,7 @@ new Date(year, month[, day[, hour[,
value
-
自世界標準時間(UTC) 1970 年 1 月 1 日 00:00:00 開始的毫秒整數(Integer)值(Unix 紀元;但要注意到大多 Unix 時間戳記是以秒而非毫秒為單位)。
+
自世界標準時間(UTC) 1970 年 1 月 1 日 00:00:00 開始的毫秒整數(Integer)值(Unix 紀元;但要注意到大多 Unix 時間戳記是以秒而非毫秒為單位)。
dateString
表示時間日期的字串。這個字串應該要能被 {{jsxref("Date.parse()")}} 方法解析(符合 IETF-compliant RFC 2822 timestampsversion of ISO8601 格式要求).
diff --git a/files/zh-tw/web/javascript/reference/global_objects/function/index.html b/files/zh-tw/web/javascript/reference/global_objects/function/index.html index b88c087b24..aaed1afc5c 100644 --- a/files/zh-tw/web/javascript/reference/global_objects/function/index.html +++ b/files/zh-tw/web/javascript/reference/global_objects/function/index.html @@ -22,7 +22,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Function
arg1, arg2, ... argN
function 的引數名稱必須要符合正規的命名。每個名稱都必須要是有效的 JavaScript 識別符號規則的字串,或是使用英文逗號「, 」分隔開的字串清單; 像是 "x", "theValue", 或是 "a, b'。
functionBody
-
包含 JavaScript 狀態以及 function 定義的字串。
+
包含 JavaScript 狀態以及 function 定義的字串。

描述

diff --git a/files/zh-tw/web/javascript/reference/global_objects/math/index.html b/files/zh-tw/web/javascript/reference/global_objects/math/index.html index 7d7a6814e8..181af7319c 100644 --- a/files/zh-tw/web/javascript/reference/global_objects/math/index.html +++ b/files/zh-tw/web/javascript/reference/global_objects/math/index.html @@ -41,7 +41,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Math

方法

-

注意三角函數 (sin(), cos(), tan(), asin(), acos(), atan(), atan2()) 的參數或回傳值的角度皆以弧度為單位。把角度乘上 (Math.PI / 180) 會得到弧度單位,將弧度除以該數則會轉換回一般所用的角度單位。

+

注意三角函數 (sin(), cos(), tan(), asin(), acos(), atan(), atan2()) 的參數或回傳值的角度皆以弧度為單位。把角度乘上 (Math.PI / 180) 會得到弧度單位,將弧度除以該數則會轉換回一般所用的角度單位。

diff --git a/files/zh-tw/web/javascript/reference/global_objects/object/defineproperty/index.html b/files/zh-tw/web/javascript/reference/global_objects/object/defineproperty/index.html index cf83590181..292b2dbe8e 100644 --- a/files/zh-tw/web/javascript/reference/global_objects/object/defineproperty/index.html +++ b/files/zh-tw/web/javascript/reference/global_objects/object/defineproperty/index.html @@ -156,7 +156,7 @@ Object.defineProperty(o, 'conflict', {

如果該屬性已經存在, Object.defineProperty() 將會根據描述符內的值和物件當前的 configuration 來修改屬性。 如果舊的描述符之 configurable 的特徵為 false (屬性為 “non-configurable”), 那除了 writable 之外的特徵都將無法修改。 在這個情況,也不可能在 data 和 accessor 屬性類型中來回切換。

-

如果有一個屬性是 non-configurable, 那它的 writable 特徵只能被改變為 false.

+

如果有一個屬性是 non-configurable, 那它的 writable 特徵只能被改變為 false.

若嘗試改變 non-configurable property attributes,將會丟出一個 {{jsxref("TypeError")}},除非當前之值與新值相同。

diff --git a/files/zh-tw/web/javascript/reference/global_objects/string/concat/index.html b/files/zh-tw/web/javascript/reference/global_objects/string/concat/index.html index 5a7e570860..3b274e3746 100644 --- a/files/zh-tw/web/javascript/reference/global_objects/string/concat/index.html +++ b/files/zh-tw/web/javascript/reference/global_objects/string/concat/index.html @@ -11,7 +11,7 @@ browser-compat: javascript.builtins.String.concat ---
{{JSRef}}
-

concat() 會將呼叫此方法的字串以及作為參數傳遞進此方法的字串串接在一起,並將串接結果作為一個新的字串回傳。

+

concat() 會將呼叫此方法的字串以及作為參數傳遞進此方法的字串串接在一起,並將串接結果作為一個新的字串回傳。

{{EmbedInteractiveExample("pages/js/string-concat.html")}}
diff --git a/files/zh-tw/web/javascript/reference/index.html b/files/zh-tw/web/javascript/reference/index.html index 2ca85629ef..a4de78261c 100644 --- a/files/zh-tw/web/javascript/reference/index.html +++ b/files/zh-tw/web/javascript/reference/index.html @@ -15,14 +15,14 @@ translation_of: Web/JavaScript/Reference

本章節記錄了所有 JavaScript 標準內建物件 以及其方法與屬性。

    -
  • 數值屬性 +
  • 數值屬性

    {{JSxRef("Infinity")}}
    {{JSxRef("NaN")}}
    {{JSxRef("undefined")}}
    {{JSxRef("globalThis")}}

  • -
  • 函數屬性 +
  • 函數屬性

    {{JSxRef("Global_Objects/eval", "eval()")}}
    {{JSxRef("Global_Objects/isFinite", "isFinite()")}}
    {{JSxRef("Global_Objects/isNaN", "isNaN()")}}
    @@ -33,13 +33,13 @@ translation_of: Web/JavaScript/Reference {{JSxRef("Global_Objects/encodeURI", "encodeURI()")}}
    {{JSxRef("Global_Objects/encodeURIComponent", "encodeURIComponent()")}}

  • -
  • 基礎物件 +
  • 基礎物件

    {{JSxRef("Object")}}
    {{JSxRef("Function")}}
    {{JSxRef("Boolean")}}
    {{JSxRef("Symbol")}}

  • -
  • Error objects +
  • Error objects

    {{JSxRef("Error")}}
    {{JSxRef("AggregateError")}}
    {{JSxRef("EvalError")}}
    @@ -53,18 +53,18 @@ translation_of: Web/JavaScript/Reference

    -
  • 數字與日期 +
  • 數字與日期

    {{JSxRef("Number")}}
    {{JSxRef("BigInt")}}
    {{JSxRef("Math")}}
    {{JSxRef("Date")}}

  • -
  • 文字處理 +
  • 文字處理

    {{JSxRef("String")}}
    {{JSxRef("RegExp")}}

  • -
  • 具索引的集合 {{JSxRef("Array")}}
    +
  • 具索引的集合 {{JSxRef("Array")}}
    {{JSxRef("Int8Array")}}
    {{JSxRef("Uint8Array")}}
    {{JSxRef("Uint8ClampedArray")}}
    @@ -76,7 +76,7 @@ translation_of: Web/JavaScript/Reference {{JSxRef("Float64Array")}}
    {{JSxRef("BigInt64Array")}}
    {{JSxRef("BigUint64Array")}}
  • -
  • 具鍵值的集合 +
  • 具鍵值的集合

    {{JSxRef("Map")}}
    {{JSxRef("Set")}}
    {{JSxRef("WeakMap")}}
    @@ -85,7 +85,7 @@ translation_of: Web/JavaScript/Reference

    -
  • 結構化資料 +
  • 結構化資料

    {{JSxRef("ArrayBuffer")}}
    {{JSxRef("SharedArrayBuffer")}}
    @@ -93,17 +93,17 @@ translation_of: Web/JavaScript/Reference {{JSxRef("DataView")}}
    {{JSxRef("JSON")}}

  • -
  • 控制抽象化物件 +
  • 控制抽象化物件

    {{JSxRef("Promise")}}
    {{JSxRef("Generator")}}
    {{JSxRef("GeneratorFunction")}}
    {{JSxRef("AsyncFunction")}}

  • -
  • Reflection +
  • Reflection

    {{JSxRef("Reflect")}}
    {{JSxRef("Proxy")}}

  • -
  • 國際化 +
  • 國際化

    {{JSxRef("Intl")}}
    {{JSxRef("Global_Objects/Collator", "Intl.Collator")}}
    {{JSxRef("Global_Objects/DateTimeFormat", "Intl.DateTimeFormat")}}
    @@ -116,7 +116,7 @@ translation_of: Web/JavaScript/Reference

    -
  • WebAssembly +
  • WebAssembly

    {{JSxRef("WebAssembly")}}
    {{JSxRef("WebAssembly.Module")}}
    @@ -134,7 +134,7 @@ translation_of: Web/JavaScript/Reference

    本章節記錄了所有 JavaScript 敘述句與宣告

      -
    • 流程控制{{jsxref("Statements/block", "Block")}}
      +
    • 流程控制{{jsxref("Statements/block", "Block")}}
      {{jsxref("Statements/break", "break")}}
      {{jsxref("Statements/continue", "continue")}}
      {{jsxref("Statements/Empty", "Empty")}}
      @@ -142,19 +142,19 @@ translation_of: Web/JavaScript/Reference {{jsxref("Statements/switch", "switch")}}
      {{jsxref("Statements/throw", "throw")}}
      {{jsxref("Statements/try...catch", "try...catch")}}
    • -
    • 宣告 +
    • 宣告

      {{jsxref("Statements/var", "var")}}
      {{jsxref("Statements/let", "let")}}
      {{jsxref("Statements/const", "const")}}

    • -
    • 函數與類別 +
    • 函數與類別

      {{jsxref("Statements/function", "function")}}
      {{jsxref("Statements/function*", "function*")}}
      {{jsxref("Statements/async_function", "async function")}}
      {{jsxref("Statements/return", "return")}}
      {{jsxref("Statements/class", "class")}}

    • -
    • 迭代 +
    • 迭代

      {{jsxref("Statements/do...while", "do...while")}}
      {{jsxref("Statements/for", "for")}}
      {{jsxref("Statements/for_each...in", "for each...in")}}
      @@ -166,7 +166,7 @@ translation_of: Web/JavaScript/Reference

      -
    • Other +
    • Other

      {{jsxref("Statements/debugger", "debugger")}}
      {{jsxref("Statements/import", "import")}}
      @@ -181,7 +181,7 @@ translation_of: Web/JavaScript/Reference

        -
      • 主要運算式{{JSxRef("Operators/this", "this")}}
        +
      • 主要運算式{{JSxRef("Operators/this", "this")}}
        {{JSxRef("Operators/function", "function")}}
        {{JSxRef("Operators/class", "class")}}
        {{JSxRef("Operators/function*", "function*")}}
        @@ -194,20 +194,20 @@ translation_of: Web/JavaScript/Reference {{JSxRef("Global_Objects/RegExp", "/ab+c/i")}}
        {{JSxRef("Operators/Grouping", "( )")}}
        {{JSxRef("null")}}
      • -
      • 左手邊運算式 +
      • 左手邊運算式

        {{JSxRef("Operators/Property_accessors", "Property accessors", "", 1)}}
        {{JSxRef("Operators/new", "new")}}
        {{JSxRef("Operators/new%2Etarget", "new.target")}}
        {{JSxRef("Operators/super", "super")}}
        {{JSxRef("Operators/Spread_syntax", "...obj")}}

      • -
      • 遞增與遞減 +
      • 遞增與遞減

        {{JSxRef("Operators/Arithmetic_Operators", "A++", "#Increment")}}
        {{JSxRef("Operators/Arithmetic_Operators", "A--", "#Decrement")}}
        {{JSxRef("Operators/Arithmetic_Operators", "++A", "#Increment")}}
        {{JSxRef("Operators/Arithmetic_Operators", "--A", "#Decrement")}}

      • -
      • 一元運算子 +
      • 一元運算子

        {{JSxRef("Operators/delete", "delete")}}
        {{JSxRef("Operators/void", "void")}}
        {{JSxRef("Operators/typeof", "typeof")}}
        @@ -219,7 +219,7 @@ translation_of: Web/JavaScript/Reference

        -
      • 算術運算子 +
      • 算術運算子

        {{JSxRef("Operators/Arithmetic_Operators", "+", "#Addition")}}
        {{JSxRef("Operators/Arithmetic_Operators", "-", "#Subtraction")}}
        @@ -228,7 +228,7 @@ translation_of: Web/JavaScript/Reference {{JSxRef("Operators/Arithmetic_Operators", "%", "#Remainder")}}
        {{JSxRef("Operators/Arithmetic_Operators", "**", "#Exponentiation")}}

      • -
      • 關係運算子 +
      • 關係運算子

        {{JSxRef("Operators/in", "in")}}
        {{JSxRef("Operators/instanceof", "instanceof")}}
        {{JSxRef("Operators/Comparison_Operators", "<", "#Less_than_operator")}}
        @@ -236,13 +236,13 @@ translation_of: Web/JavaScript/Reference {{JSxRef("Operators/Comparison_Operators", "<=", "#Less_than_or_equal_operator")}}
        {{JSxRef("Operators/Comparison_Operators", ">=", "#Greater_than_or_equal_operator")}}

      • -
      • 相等運算子 +
      • 相等運算子

        {{JSxRef("Operators/Comparison_Operators", "==", "#Equality")}}
        {{JSxRef("Operators/Comparison_Operators", "!=", "#Inequality")}}
        {{JSxRef("Operators/Comparison_Operators", "===", "#Identity")}}
        {{JSxRef("Operators/Comparison_Operators", "!==", "#Nonidentity")}}

      • -
      • 位元移位運算子 +
      • 位元移位運算子

        {{JSxRef("Operators/Bitwise_Operators", "<<", "#Left_shift")}}
        {{JSxRef("Operators/Bitwise_Operators", ">>", "#Right_shift")}}
        {{JSxRef("Operators/Bitwise_Operators", ">>>", "#Unsigned_right_shift")}}

        @@ -250,17 +250,17 @@ translation_of: Web/JavaScript/Reference
        -
      • 二元位元運算子{{JSxRef("Operators/Bitwise_Operators", "&", "#Bitwise_AND")}}
        +
      • 二元位元運算子{{JSxRef("Operators/Bitwise_Operators", "&", "#Bitwise_AND")}}
        {{JSxRef("Operators/Bitwise_Operators", "|", "#Bitwise_OR")}}
        {{JSxRef("Operators/Bitwise_Operators", "^", "#Bitwise_XOR")}}
      • -
      • 二元邏輯運算子 +
      • 二元邏輯運算子

        {{JSxRef("Operators/Logical_Operators", "&&", "#Logical_AND")}}
        {{JSxRef("Operators/Logical_Operators", "||", "#Logical_OR")}}

      • -
      • 條件(三元)運算子 +
      • 條件(三元)運算子

        {{JSxRef("Operators/Conditional_Operator", "(condition ? ifTrue : ifFalse)")}}

      • -
      • 賦值運算子 +
      • 賦值運算子

        {{JSxRef("Operators/Assignment_Operators", "=", "#Assignment")}}
        {{JSxRef("Operators/Assignment_Operators", "*=", "#Multiplication_assignment")}}
        {{JSxRef("Operators/Assignment_Operators", "/=", "#Division_assignment")}}
        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 7391bcbe5d..c16dc0cff1 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 @@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Reference/Operators/Conditional_Operator ---

        {{jsSidebar("Operators")}}
        -

        條件 (三元) 運算子 是 JavaScript 唯一用到三個運算元的運算子:在一個條件後面會跟著一個問號 (?),如果條件是 truthy,在冒號(:)前的表達式會被執行,如果條件是 falsy,在冒號後面的表達式會被執行,這個運算子常常被用來當作 if 的簡潔寫法.

        +

        條件 (三元) 運算子 是 JavaScript 唯一用到三個運算元的運算子:在一個條件後面會跟著一個問號 (?),如果條件是 truthy,在冒號(:)前的表達式會被執行,如果條件是 falsy,在冒號後面的表達式會被執行,這個運算子常常被用來當作 if 的簡潔寫法.

        {{EmbedInteractiveExample("pages/js/expressions-conditionaloperators.html")}}
        @@ -23,7 +23,7 @@ translation_of: Web/JavaScript/Reference/Operators/Conditional_Operator
        exprIfTrue
        如果 condition 的值是 truthy (等於或是可轉換為 true) , exprIfTrue  會被執行
        exprIfFalse
        -
        如果 condition 的值是 falsy (等於或是可轉換為 false) , exprIfFalse  會被執行
        +
        如果 condition 的值是 falsy (等於或是可轉換為 false) , exprIfFalse  會被執行

        描述

        diff --git a/files/zh-tw/web/javascript/reference/operators/optional_chaining/index.html b/files/zh-tw/web/javascript/reference/operators/optional_chaining/index.html index 945ec32efc..715161eca9 100644 --- a/files/zh-tw/web/javascript/reference/operators/optional_chaining/index.html +++ b/files/zh-tw/web/javascript/reference/operators/optional_chaining/index.html @@ -13,7 +13,7 @@ translation_of: Web/JavaScript/Reference/Operators/Optional_chaining
        -

        可選串連運算子 ?. 允許進行深層次的物件值存取,而無需透過明確的物件值串連驗證。?. 運算子的操作與 . 屬性存取運算子相似,後者會在參照到 nullish ({{JSxRef("null")}} or {{JSxRef("undefined")}}) 的值時出現錯誤,而前者可選串連則回傳 undefined 當需要存取一個函數,而這函數並不存在時,則會回傳 undefined

        +

        可選串連運算子 ?. 允許進行深層次的物件值存取,而無需透過明確的物件值串連驗證。?. 運算子的操作與 . 屬性存取運算子相似,後者會在參照到 nullish ({{JSxRef("null")}} or {{JSxRef("undefined")}}) 的值時出現錯誤,而前者可選串連則回傳 undefined 。 當需要存取一個函數,而這函數並不存在時,則會回傳 undefined

        當有機會存在參照不存在的時候,可選串連可以提供更簡短的表述式來進行串連性的屬性存取。這有助於在無法保證物件屬性為必要存在的狀況下,進行物件內容的探索。

        diff --git a/files/zh-tw/web/javascript/reference/operators/typeof/index.html b/files/zh-tw/web/javascript/reference/operators/typeof/index.html index d1939e5d4f..585d340255 100644 --- a/files/zh-tw/web/javascript/reference/operators/typeof/index.html +++ b/files/zh-tw/web/javascript/reference/operators/typeof/index.html @@ -9,7 +9,7 @@ translation_of: Web/JavaScript/Reference/Operators/typeof

        摘要

        -

        typeof 運算子會傳回一個字串值, 指出未經運算 (unevaluated) 的運算元所代表的型別。

        +

        typeof 運算子會傳回一個字串值, 指出未經運算 (unevaluated) 的運算元所代表的型別。

        @@ -37,7 +37,7 @@ translation_of: Web/JavaScript/Reference/Operators/typeof

        參數

        -
        operand 表示式代表傳入的物件或原始型別。
        +
        operand 表示式代表傳入的物件或原始型別。

        說明

        diff --git a/files/zh-tw/web/javascript/reference/statements/block/index.html b/files/zh-tw/web/javascript/reference/statements/block/index.html index 62a09df015..384e3c1223 100644 --- a/files/zh-tw/web/javascript/reference/statements/block/index.html +++ b/files/zh-tw/web/javascript/reference/statements/block/index.html @@ -63,11 +63,11 @@ alert(x); // outputs 2

        當使用let或是const進行宣告時,其存取範圍是只有本身定義的區塊中。

        -
        let x = 1;
        -{
        -  let x = 2;
        -}
        -console.log(x); // logs 1
        +
        let x = 1;
        +{
        +  let x = 2;
        +}
        +console.log(x); // logs 1

        function

        diff --git a/files/zh-tw/web/javascript/reference/statements/export/index.html b/files/zh-tw/web/javascript/reference/statements/export/index.html index 195d4bed7f..3db47772e3 100644 --- a/files/zh-tw/web/javascript/reference/statements/export/index.html +++ b/files/zh-tw/web/javascript/reference/statements/export/index.html @@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Reference/Statements/export ---
        {{jsSidebar("Statements")}}
        -

        export 可以指派函式、物件或變數,透過 {{jsxref("Statements/import", "import")}} 宣告給外部檔案引用。

        +

        export 可以指派函式、物件或變數,透過 {{jsxref("Statements/import", "import")}} 宣告給外部檔案引用。

        導出的模塊都會處於{{jsxref("Strict_mode","嚴謹模式")}},無論是否有所宣告。導出宣告無法使用嵌入式腳本(embedded script)。

        diff --git a/files/zh-tw/web/javascript/reference/statements/import/index.html b/files/zh-tw/web/javascript/reference/statements/import/index.html index 7b3ef2402b..028366c36d 100644 --- a/files/zh-tw/web/javascript/reference/statements/import/index.html +++ b/files/zh-tw/web/javascript/reference/statements/import/index.html @@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Reference/Statements/import ---
        {{jsSidebar("Statements")}}
        -

        import 宣告用於引入由另一個模塊所導出的綁定。被引入的模塊,無論是否宣告{{jsxref("Strict_mode","strict mode","嚴謹模式")}},都會處於該模式。import 宣告無法用於嵌入式腳本(embedded scripts)。

        +

        import 宣告用於引入由另一個模塊所導出的綁定。被引入的模塊,無論是否宣告{{jsxref("Strict_mode","strict mode","嚴謹模式")}},都會處於該模式。import 宣告無法用於嵌入式腳本(embedded scripts)。

        There is also a function-like dynamic import(), which does not require scripts of type="module".

        diff --git a/files/zh-tw/web/javascript/reference/statements/label/index.html b/files/zh-tw/web/javascript/reference/statements/label/index.html index 4939b7b95f..fc2614ab7d 100644 --- a/files/zh-tw/web/javascript/reference/statements/label/index.html +++ b/files/zh-tw/web/javascript/reference/statements/label/index.html @@ -86,7 +86,7 @@ for (i = 0; i < items.length; i++) { itemsPassed++; } -

        for 迴圈中使用帶標記的 break 

        +

        for 迴圈中使用帶標記的 break 

        var i, j;
         
        diff --git a/files/zh-tw/web/javascript/reference/statements/switch/index.html b/files/zh-tw/web/javascript/reference/statements/switch/index.html
        index b182da09b6..98aef7edf2 100644
        --- a/files/zh-tw/web/javascript/reference/statements/switch/index.html
        +++ b/files/zh-tw/web/javascript/reference/statements/switch/index.html
        @@ -7,7 +7,7 @@ translation_of: Web/JavaScript/Reference/Statements/switch
         ---
         
        {{jsSidebar("Statements")}}
        -
        switch 語句 會比對一個 表達式 裡頭的值是否符合 case 條件,然後執行跟這個條件相關的 陳述式, 以及此一符合條件以外,剩下其他條件裡的陳述式。
        +
        switch 語句 會比對一個 表達式 裡頭的值是否符合 case 條件,然後執行跟這個條件相關的 陳述式, 以及此一符合條件以外,剩下其他條件裡的陳述式。
        -- cgit v1.2.3-54-g00ecf