- Type the following in a TS file `const add1 = (n) =>` - Press Enter after the arrow. The cursor is not indented (here cursor is shown by | symbol): ``` const add1 = (n) => | ``` - We should instead have: ``` const add1 = (n) => | ```