Skip to content

Instantly share code, notes, and snippets.

@bdunn313
Created January 30, 2018 00:44
Show Gist options
  • Save bdunn313/4b5bb18aadbd35443e5840cccac06c8d to your computer and use it in GitHub Desktop.
Save bdunn313/4b5bb18aadbd35443e5840cccac06c8d to your computer and use it in GitHub Desktop.
Settings List: naive solution
// Track
let preferences = {
allowNotifications: false,
shareLocation: false,
showFullName: false,
};
// Toggle
const togglePref = (prefName) => {
preferences[prefName] = !preferences[prefName];
return;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment