I simply want to do this with my KeyboardEvent
var tag = evt.target.tagName.toLowerCase();
While Event.target is of type EventTarget it doe
@Bangonkali provide the right answer, but this syntax seems more readable and just nicer to me:
eventChange($event: KeyboardEvent): void { ($event.target).value; }