Skip to main content
🔮 Output PredictionTS TypeScript Hard⚡+35 XP

Enum Values

What does this output?

TypeScript
enum Color { Red, Green, Blue }
console.log(Color.Green);
console.log(Color[1]);

🔮 What is the output?