← Back to Posts

javascript fetch

👤 علی ذوالفقار 📅 1400/09/28 10:55:12 👁️ 566 views
fetch('http://example.com/movies.json')
  .then(response => response.json())
  .then(data => console.log(data));
← Back to Posts