double exclamation in javascript code example
Example 1: es6 what is double exclamation operator
!oObject
!!oObject
Example 2: javascript operator double not
!!0
!!""
!!null
!!undefined
!!NaN
Example 3: javascript double exclamation mark
const isIE8 = !! navigator.userAgent.match(/MSIE 8.0/);
console.log(isIE8);
Example 4: javascript double exclamation mark
!oObject
!!oObject
Example 5: javascript double exclamation mark
console.log(navigator.userAgent.match(/MSIE 8.0/));
Example 6: javascript double exclamation mark
console.log(!!navigator.userAgent.match(/MSIE 8.0/));