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

Type Assertion

What does this output?

TypeScript
const value: any = "hello";
const len = (value as string).length;
console.log(len);

🔮 What is the output?