import {fetch} from 'wix-fetch'; google-site-verification=FeBbiX-35t_7XUT1uNOtxHzeeMiWapNLhv1nlsrN8IU // ... fetch("https://exchangeratesapi.io/api/latest", {method: "get"}) .then( (httpResponse) => { let url = httpResponse.url; let statusCode = httpResponse.status; let statusText = httpResponse.statusText; let headers = httpResponse.headers; let bodyUsed = httpResponse.bodyUsed; if (httpResponse.ok) { return httpResponse.json(); } else { return Promise.reject("Fetch did not succeed"); } } ) .then( (json) => { console.log(json.rates["USD"]); } ) .catch( (err) => { console.log(err); } ); Aaron Briggs Sr | Files
top of page

G.L.C.R. Staff Book Entry Link

Here is where your delegations of Authority and Self Governed Rules Apply

Aaron Briggs Sr

Forum Moderator

Owner

More actions
bottom of page