NEW188951
Inconsistent function hoisting in for...in
https://bugs.webkit.org/show_bug.cgi?id=188951
Summary Inconsistent function hoisting in for...in
sunlili
Reported 2018-08-26 00:25:37 PDT
Executing following code : ----------------------------------------- var a = new Array(1); for (var i in a){ print("BT_FLAG"); function v9() { } } print(typeof v9); ----------------------------------------- Output of JavaScriptCore : function However, output of other js engines(v8, ch, spm) is : undefined BT group 2018.08.26
Attachments
Note You need to log in before you can comment on or make changes to this bug.