Last active
August 3, 2016 21:29
-
-
Save gmmorris/e0296d69656dc174d5cc to your computer and use it in GitHub Desktop.
example of usage for the Safe Access Proxy article
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
const mySafeObj = safe({ | |
name : 'Anakin', | |
mother : { | |
name : 'Shmi' | |
} | |
}); | |
console.log(mySafeObj.name); // returns "Anakin" | |
console.log(mySafeObj.mother.name); // returns "Shmi" | |
console.log(mySafeObj.father.name); // returns a reference to Undefined (our Undefined, not Javascript's undefined) | |
console.log(either(mySafeObj.father.father.name, false)); // returns our fallback value, of false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment