Angular - TypeScript in Angular
Given the enum declaration:
What will be the output of
enum Status { Active = 1, Inactive = 0 }What will be the output of
console.log(Status.Active)?