Null이 아닌 어선셜 연산자 (Non-null assertion operator)
확정 할당 어선셜 (Definite Assignment Assertions)
const anchor = document.querySelector("a")!; // 아래의 과정을 생략할 수 있다. // if(anchor) { // console.log(anchor.href); // } console.log(anchor.href);
참고 : https://developer-talk.tistory.com/191