Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2020 12:49 AM
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