return !!this.matrix[vertex] boolean 반환

백아름·2023년 7월 10일
0

프론트엔드

목록 보기
58/80

!! <- 의 의미

  • !! 다음에 이어지는 코드에 대한 boolean 값을 반환하겠다
    즉, 맞으면 true
    아니면 false 반환

그 예시이다

  contains(vertex) {
    return !!this.matrix[vertex];
  }

vertex를 포함하면 true, 포함하지 않으면 false

profile
곧 훌륭해질 거에요!

0개의 댓글