Created
March 11, 2020 09:46
-
-
Save celleb/1e1238e022efa6f0d8bd74af256314d9 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
const defaultColor = 'GREEN'; | |
const colors = { | |
0: 'RED', | |
1: 'PINK', | |
2: 'PURPLE' | |
}; | |
const scoreColors = new Proxy(colors, { | |
get: function (obj, prop) { | |
return obj.hasOwnProperty(prop) ? object[prop] : defaultColor; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment