为什么Array.prototype.push比变量声明更快

时间:2017-08-11 18:15:57

标签: javascript jsperf

我运行了以下jsperf https://jsperf.com/push-vs-define-anaoum

并发现在这种情况下推送:

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

比仅使用子数组声明a更快:

var a = [];
a.push([1,2,3]);
a.push(["a","b","c"]);

有人可以告诉我为什么或指出正确的文件吗?

由于 enter image description here

0 个答案:

没有答案