Skip to main content
🔮 Output PredictionJS JavaScript Medium⚡+20 XP

Array Destructuring

What gets logged?

JavaScript
const [a, , b] = [1, 2, 3, 4];
console.log(a, b);

🔮 What is the output?