Skip to content

Instantly share code, notes, and snippets.

@capeterson
Created April 23, 2014 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save capeterson/11231360 to your computer and use it in GitHub Desktop.
Save capeterson/11231360 to your computer and use it in GitHub Desktop.
Account a1 = new Account(name = 'woop');
Account a2 = new Account(name = 'woop');
System.debug( a1 == a2 ); //true
System.debug( a1 === a2 ); //false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment