diff options
author | t7yang <t7yang@gmail.com> | 2022-01-10 08:38:08 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2022-02-16 02:35:54 +0800 |
commit | 3bb96c83e22a7a6214e79e9b903ee1c7b5657e67 (patch) | |
tree | 27e65cf2e0db2cdd34ddb4467323502e4c695ee1 /files/zh-tw/web/javascript/reference/functions/index.html | |
parent | ded7faccb46997b20767ef9a3e6d5f5810a52cf8 (diff) | |
download | translated-content-3bb96c83e22a7a6214e79e9b903ee1c7b5657e67.tar.gz translated-content-3bb96c83e22a7a6214e79e9b903ee1c7b5657e67.tar.bz2 translated-content-3bb96c83e22a7a6214e79e9b903ee1c7b5657e67.zip |
adjust dl/dt/dd tags for zh-TW
Diffstat (limited to 'files/zh-tw/web/javascript/reference/functions/index.html')
-rw-r--r-- | files/zh-tw/web/javascript/reference/functions/index.html | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/files/zh-tw/web/javascript/reference/functions/index.html b/files/zh-tw/web/javascript/reference/functions/index.html index ce6646918f..0d64fa570a 100644 --- a/files/zh-tw/web/javascript/reference/functions/index.html +++ b/files/zh-tw/web/javascript/reference/functions/index.html @@ -74,14 +74,8 @@ function myFunc(theObject) { <dl> <dt><code>name</code></dt> <dd>The function name.</dd> -</dl> - -<dl> <dt><code>param</code></dt> <dd>The name of an argument to be passed to the function. A function can have up to 255 arguments.</dd> -</dl> - -<dl> <dt><code>statements</code></dt> <dd>The statements comprising the body of the function.</dd> </dl> @@ -98,9 +92,6 @@ function myFunc(theObject) { <dl> <dt><code>name</code></dt> <dd>The function name. Can be omitted, in which case the function becomes known as an anonymous function.</dd> -</dl> - -<dl> <dt><code>param</code></dt> <dd>The name of an argument to be passed to the function. A function can have up to 255 arguments.</dd> <dt><code>statements</code></dt> @@ -123,14 +114,8 @@ function myFunc(theObject) { <dl> <dt><code>name</code></dt> <dd>The function name.</dd> -</dl> - -<dl> <dt><code>param</code></dt> <dd>The name of an argument to be passed to the function. A function can have up to 255 arguments.</dd> -</dl> - -<dl> <dt><code>statements</code></dt> <dd>The statements comprising the body of the function.</dd> </dl> @@ -151,9 +136,7 @@ function myFunc(theObject) { <dl> <dt><code>name</code></dt> <dd>The function name. Can be omitted, in which case the function becomes known as an anonymous function.</dd> -</dl> -<dl> <dt><code>param</code></dt> <dd>The name of an argument to be passed to the function. A function can have up to 255 arguments.</dd> <dt><code>statements</code></dt> @@ -196,9 +179,6 @@ param => expression <dl> <dt><code>arg1, arg2, ... arg<em>N</em></code></dt> <dd>Zero or more names to be used by the function as formal argument names. Each must be a string that conforms to the rules for a valid JavaScript identifier or a list of such strings separated with a comma; for example "<code>x</code>", "<code>theValue</code>", or "<code>a,b</code>".</dd> -</dl> - -<dl> <dt><code>functionBody</code></dt> <dd>A string containing the JavaScript statements comprising the function definition.</dd> </dl> @@ -227,9 +207,6 @@ param => expression <dl> <dt><code>arg1, arg2, ... arg<em>N</em></code></dt> <dd>Zero or more names to be used by the function as formal argument names. Each must be a string that conforms to the rules for a valid JavaScript identifier or a list of such strings separated with a comma; for example "<code>x</code>", "<code>theValue</code>", or "<code>a,b</code>".</dd> -</dl> - -<dl> <dt><code>functionBody</code></dt> <dd>A string containing the JavaScript statements comprising the function definition.</dd> </dl> |