function-expression.js (97B)
1 export {}; 2 3 let fn = function(p1) {}; 4 5 let fn2 = function withName(p2) { 6 console.log(this); 7 };