Created
April 23, 2014 20:33
-
-
Save capeterson/11231360 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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