const func = async (url) => () => { const result = await fetch(url).then(r => r.json()) console.log(result) return result } func()('SOME_JSON_URL') // what happen?