13 lines
150 B
JavaScript
13 lines
150 B
JavaScript
|
fetch('sample.json')
|
||
|
.then(response => response.json())
|
||
|
.then(data => {
|
||
|
|
||
|
console.log(data);
|
||
|
|
||
|
return response.json();
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
|