input.js (317B)
1 export default function root() { 2 function fn(arg) { 3 console.log(this, arguments); 4 console.log("pause here", fn, root); 5 6 const arrow = argArrow => { 7 console.log(this, arguments); 8 console.log("pause here", fn, root); 9 }; 10 arrow("arrow-arg"); 11 } 12 13 fn.call("this-value", "arg-value"); 14 }