Test Your JavaScript Skills : ES10 (JavaScript 2019) - 45
Introduction
Namaste, In this blog I will discuss 10 code scenarios on Javascript .
Identify the output of the below program
async function* fx() {
yield await Promise.reject(1);
}
let genobj = fx();
genobj.next().then(v => conso...
mahavir.hashnode.dev2 min read