1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 淺析javascript中function 的length屬性

        時間:2020-11-17 14:56:29 JavaScript 我要投稿

        淺析javascript中function 的length屬性

          [1,2,3].length 可以得到 3, "123".length 也可以得到 3,這個略懂js的都知道。

          但是 eval.length,RegExp.length,"".toString.length,1..toString.length 會得到什么呢?

          分別得到 1,2,0,1,這些數(shù)字代表什么呢?

          這個是群里很多新人朋友一直問的一個問題,其實函數(shù)的' length 得到的是形參個數(shù)。

          我們來簡單看個例子:

          復(fù)制代碼 代碼如下:

          function test(a,b,c) {}

          test.length // 3

          function test(a,b,c,d) {}

          test.length // 4

          是不是很簡單,但是也有特殊的,如果函數(shù)內(nèi)部是通過 arguments 調(diào)用參數(shù),而沒有實際定義參數(shù)的話,length 只會的得到 0。

          復(fù)制代碼 代碼如下:

          function test() { console.log( arguments );}

          test.length // 0

          這個函數(shù)確實可以傳入?yún)?shù),而且內(nèi)部也調(diào)用了參數(shù),但是 length 卻無法得知傳入的參數(shù)的個數(shù)。

          只能在函數(shù)執(zhí)行的時候通過 arguments.length 得到實參個數(shù)。

          復(fù)制代碼 代碼如下:

          function test() { console.log( arguments.length );}

          test(1,2,3); // 輸出 3

          test(1,2,3,4); // 輸出 4

          所以函數(shù)的 length 屬性只能得到他的形參個數(shù),而無法得知實參個數(shù)。

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>