Skip to main content
🔮 Output PredictionTS TypeScript Easy⚡+10 XP

Const Assertion

What is the type of colors?

TypeScript
const colors = ["red", "blue"] as const;
// What is typeof colors?

🔮 What is the output?