Menu
×
×
Correct!
Exercise:Cast the "unknown" variable myVar as a string, using the as keyword:
let myVar: unknown = "Hello world!";
console.log((myVar as string).length);
Not CorrectClick here to try again. Correct!Next ❯let myVar: unknown = "Hello world!"; console.log(.length); |