showing results for - "5 3 1 3 logical not c2 b6"
Lane
22 Aug 2016
1/*The logical NOT operator, !, takes only a single operand and reverses 
2its boolean value.*/
3
4console.log(! true);
5console.log(! false);
6
7//false
8//true 
9
10console.log( !(5 > 7) );
11console.log( !('dog' === 'cat') );
12
13//true
14//false
15
16/*The operator ! (sometimes called "bang") has the same semantic role
17as the word "not" in English. -Big Bang Theory // "BANG" */
similar questions
queries leading to this page
5 3 1 3 logical not c2 b6