Angular - TypeScript in Angular
Given this enum and code:
What will be printed in the console?
enum Direction { Up, Down, Left, Right }
const move = Direction.Left;
console.log(move);What will be printed in the console?
