What kind of typescript syntax is this?

  get firstName() {
    return this.formGroup.get("fistName") as FormControl;
  }

what is this as and what does it do?

Apr.05,2021

cast


type assertion
https://basarat.gitbooks.io/t.

Menu