Created
March 10, 2018 13:59
-
-
Save DavidMellul/7105552d399a9b457dc51cf1bbed36d0 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
var OPTIONS = { | |
'GRAYSCALE': 1, 'SEPIA': 2, 'HIGH-RES': 4, 'LOW-RES': 8 | |
}; | |
function setCameraSettings(options) { | |
if( options & OPTIONS['GRAYSCALE'] ) | |
console.log('GRAYSCALE activated'); | |
if( options & OPTIONS['SEPIA'] ) | |
console.log('SEPIA activated'); | |
// And so on | |
} | |
setCameraSettings( OPTIONS['GRAYSCALE'] | OPTIONS['SEPIA'] ); | |
// => GRAYSCALE & SEPIA activated |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment