Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
const promise1 = new Promise(resolve => setTimeout(() => resolve('First result'), 1000)); const promise2 = new Promise(resolve => setTimeout(() => resolve('Second result'), 500)); Promise.race([promise1, promise2]) .then(result => { console.log('Fastest result:', result); // Will log 'Second result' because promise2 is faster });
Fastest result: Second result