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