function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sai krishna 267sai krishna 267 

for(contact c: triggerNew) { if(c.accountId <> null) accountIds.add(c.accountId); } what <> symbol indicates anyone tel

Best Answer chosen by sai krishna 267
@anilbathula@@anilbathula@
Hi sai Krishna 267,

The symbol '<>'  indicates "not equal " .
You can write like this :- if(c.accountid!=null) .

Thanks
Anil.B