didattica-forever
Results
1
issues of
didattica-forever
I'm quite new to quickjs, while testing (QuickJS version 2021-03-27) I took the following piece of code from MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises ``` new Promise((resolve, reject) => { console.log('Initial'); resolve(); }) .then(()...