function fn(obj,b){
}fn({a:1},h=>console.log(h.a))
b(obj)??
function fn(obj, b) { b(obj.a); } fn({a:1}, h => console.log(h));