✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Betrachte folgenden Code - Was wird ausgegeben?:
function loadData(callback) { setTimeout(() => { callback("DONE"); }, 500);}
console.log("A");
loadData((msg) => { console.log(msg);});
console.log("B");