Anurag Tripathi
Mega Patron

Hi,

! is the NOT operator. Using it in any such condition reverses the condition

For eg

if i have to check whether x is not equal to 5, i can to it as

x !=5 OR !(x==5)

Both will work the same.

 

In your example it is checking for comments NOT changing.

 

Hope this helps.

-Anurag

-Anurag