Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- async function app() {
- let x;
- const y = new Map();
- console.log('App entry point')
- console.log(x?.y ?? 1)
- await new Promise(r => setTimeout(() => r(), 500))
- console.log('App finished')
- };
- app();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement