snipplets.dev/code/JavaScript/fetch.js
2023-09-26 22:05:13 +03:00

4 lines
113 B
JavaScript

fetch('http://example.com/movies.json')
.then(response => response.json())
.then(data => console.log(data));