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