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 names: string[] = []; names.push("Dylan"); // no error // names.push(3); // Error: Argument of type 'number' is not assignable to parameter of type 'string'. console.log(names);
[ 'Dylan' ]