dns/js/script.js

14 lines
220 B
JavaScript
Raw Permalink Normal View History

2025-04-15 07:34:21 +00:00
function get (url) {
return fetch (url)
.then ( (res) => {
2025-04-15 07:37:03 +00:00
return res.json()
2025-04-15 07:34:21 +00:00
})
.then (data => {
console.log("ok");
})
}
get ('data/data.json')