mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
34 lines
780 B
HTML
34 lines
780 B
HTML
请你编写一个函数 <code>argumentsLength</code>,返回传递给该函数的参数数量。
|
||
<p> </p>
|
||
|
||
<p><strong class="example">示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<b>输入:</b>args = [5]
|
||
<b>输出:</b>1
|
||
<strong>解释:</strong>
|
||
argumentsLength(5); // 1
|
||
|
||
只传递了一个值给函数,因此它应返回 1。
|
||
</pre>
|
||
|
||
<p><strong class="example">示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<b>输入:</b>args = [{}, null, "3"]
|
||
<b>输出:</b>3
|
||
<b>解释:</b>
|
||
argumentsLength({}, null, "3"); // 3
|
||
|
||
传递了三个值给函数,因此它应返回 3。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>args</code> 是一个有效的 JSON 数组</li>
|
||
<li><code>0 <= args.length <= 100</code></li>
|
||
</ul>
|