!

旅人·2023년 4월 24일
0

!

Null이 아닌 어선셜 연산자 (Non-null assertion operator)

  • 피연산자가 null이 아니라고 컴파일러에게 전달하여 일시적으로 Null 제약조건을 완화

확정 할당 어선셜 (Definite Assignment Assertions)

  • 값이 무조건 할당되어있다고 컴파일러에게 전달하여 값이 없어도 변수 또는 객체를 사용

Example

const anchor = document.querySelector("a")!;

// 아래의 과정을 생략할 수 있다.
// if(anchor) {
//     console.log(anchor.href);
// }

console.log(anchor.href);

참고 : https://developer-talk.tistory.com/191

profile
一期一会

0개의 댓글