๐ฎ 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 does this output?
const value: any = "hello"; const len = (value as string).length; console.log(len);