Question from the Node.js test

What will the `result` variable contain at the end of this code?

Medium

Suppose we use the coupleasync/await from ES2016 (viababel) to query an external resource:

const Qajax = require('qajax');

async function fetch(url) {
  try {
    let response = await Qajax.getJSON(url);
    return response;
  }
  catch (error) {
    return error;
  }
}

let result = fetch('http://api.myjson.com/bins/3hn4g'); // {id:1, title:'Back to the future'}

// result = ???

What will theresult variable contain at the end of this code?

Author: Jean-marie CléryStatus: PublishedQuestion passed 791 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!