예, not not 연산자는 not 연산자의 역 과정입니다. 값이 true이면 single ! (not) false를 반환하고 !! 반대 값(true)을 반환합니다.
not 연산자 -
var flag=true; console.log(!flag);
not 연산자 -
var flag=true; console.log(!!flag);
예시
다음은 코드입니다 -
var flag=true; console.log("The result of single !=") console.log(!flag); console.log("The result of single !!=") console.log(!!flag)
위의 프로그램을 실행하려면 다음 명령을 사용해야 합니다 -
node fileName.js.
여기에서 내 파일 이름은 demo247.js입니다.
출력
이것은 콘솔에 다음과 같은 출력을 생성합니다 -
PS C:\Users\Amit\javascript-code> node demo247.js The result of single != false The result of single !!= True