Skip to content

Instantly share code, notes, and snippets.

const URL = 'https://letsrevolutionizetesting.com/challenge.json';
function makeCall(url) {
return fetch(url).then(response => response.json());
}
function startChallenge(url) {
return makeCall(url)
.then(response => {
const {follow} = response;