Feature Flags
A feature flag is a software technique to turn functionalities on or off in an application without the need of a deployment.
Feature Flags are usually injected in the code at runtime.
The code needs to handle both cases in which the flag is on and when is off.
Feature Flags can be useful for A/B testing as well.