亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

發布時間:2021-09-30 15:42:19 來源:億速云 閱讀:171 作者:柒染 欄目:web開發

本篇文章為大家展示了如何使用Chrome開發者工具研究JavaScript里函數的原生實現,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

As the size of my blog  Chrome Development Tool tips used in my daily work turns to be larger I create a separate post to record down this small tip. Are you curious about the “native code” here? At least I am.

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

Today I find that the Profiles tab in Chrome development tool can help us to unveil the mysteries to some degree. In Chrome development, just select this checkbox:

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

And then execute the simple JavaScript code below:

var arr = [];for (var i=0; i<1000; i++){
    arr.push(i)}console.profile("Array toString");for( var i = 0; i < 1000; i++){
    var a = arr.toString();}console.profileEnd("Array toString");

Once done, you can see a profile record with the name specified in JavaScript code above, “Array toString”. Hover the mouse to the first row, “anonymous function”, we find the hint “array.js”.

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

Switch display style from Chart to Tree:

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

From here the callstack of native implementation of toString is displayed:

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

The next step is to look into in array.js. Launch url: https:// Click this hyperlink:

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

now you can find the array.js file via path: src/v8/src/js/array.js

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

The callstack analyzed through the source code exactly matches the one we get in Chrome development tool Profile tab: ArrayToString will delegate to Join if current caller is an Array:

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

Join will call DoJoin:

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

DoJoin will first call UseSparseVariant to evaluate the possibility to perform Join via SparseVariant. If not possible, call ConvertToString as fall back. ( The line number of source code may vary with the one you see in Chrome Development Tool profile tab due to the different version of Chrome being used. )

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

If you could not tolerate the poor performance of this online source code repository, you could download the whole source code of V8 to your local laptop by cloning this github repository: https:///v8/v8.git/

如何使用Chrome開發者工具研究JavaScript里函數的原生實現

上述內容就是如何使用Chrome開發者工具研究JavaScript里函數的原生實現,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳城县| 山丹县| 宁河县| 专栏| 文昌市| 道真| 潜山县| 屏边| 宿松县| 紫金县| 页游| 汶川县| 洮南市| 大同县| 三原县| 平谷区| 通州市| 临桂县| 永善县| 温宿县| 外汇| 万全县| 怀来县| 盘山县| 民权县| 郓城县| 丰顺县| 措勤县| 申扎县| 泸溪县| 辽阳县| 石河子市| 温宿县| 沅陵县| 长丰县| 南宫市| 安陆市| 中宁县| 建湖县| 武定县| 达尔|