“TS enum” Kod odpowiedzi

TS enum

enum vscode {
    good,bad,medium
}

console.log(vscode.bad)
Skull Sherbet

Enum maszynopisu

enum Direction {
  Up = 1,
  Down,
  Left,
  Right,
}
We’ll first start off with numeric enums, which are probably more familiar if you’re coming from other languages. An enum can be defined using the enum keyword.

If we wanted, we could leave off the initializers entirely:
enum Direction {
  Up,
  Down,
  Left,
  Right,
}
  
enum Direction {
  Up = "UP",
  Down = "DOWN",
  Left = "LEFT",
  Right = "RIGHT",
}
Faris Abuali

TS enum

enum Direction {
  Up = 1,
  Down,
  Left,
  Right,
}
Try
Wide-eyed Willet

Odpowiedzi podobne do “TS enum”

Pytania podobne do “TS enum”

Więcej pokrewnych odpowiedzi na “TS enum” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu