function get (url) { return fetch (url) .then ( (res) => { return res.json() }) .then (data => { console.log("ok"); }) } get ('data/data.json')