-
@_jayphelps Plaintext code below: async function example(items) { items.push("example:start"); await Promise.resolve(); items.push("example:end"); } const items = []; items.push("before"); example(items); items.push("after"); console.log(items.join(", ")); // WHAT DOES THIS LOG?