Codetive
Dashboard
Learn
Resources
Toggle theme
Sign In
Sign in to save your answers and keep track of your progress.
Which of the following is the correct way to define a variable in TypeScript with an explicit type?
#134
var age: 10;
let age = number;
let age: number;
const age: 'number';
NEXT
↪
or press enter
Previous question