inf03-06.2022-z2/get.js

13 lines
150 B
JavaScript
Raw Permalink Normal View History

2024-11-22 13:02:20 +00:00
fetch('sample.json')
.then(response => response.json())
.then(data => {
console.log(data);
return response.json();
});