JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumJavaScript
What happens on the second line?
code
const res = await fetch('/api/data');
const text = await res.text();
const json = await res.json();Loading compiler resources...
Active Recall Drill Session
const res = await fetch('/api/data');
const text = await res.text();
const json = await res.json();