Run ❯
Get your
own Node
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
const nameAgeMap: { [index: string]: number } = {}; nameAgeMap.Jack = 25; // no error nameAgeMap.Mark = "Fifty"; // Error: Type 'string' is not assignable to type 'number'. console.log(nameAgeMap);
prog.ts(3,7): error TS2322: Type 'string' is not assignable to type 'number'.