JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumJavaScript
What does this log?
code
Promise.resolve('x')
.then((v) => {
console.log(v);
})
.then((v) => {
console.log('next:', v);
});Loading compiler resources...
Active Recall Drill Session
Promise.resolve('x')
.then((v) => {
console.log(v);
})
.then((v) => {
console.log('next:', v);
});