Q8
Single choice
In what order are the values printed?
Code: let status = "starting";
Promise.resolve("ready").then(value => {
status = value;
console.log(status);
});
console.log(status);