Looks Good To ME! 💯 💯

  • 0 Posts
  • 4 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle
  • DeltatoProgrammingDear past me, use the flags
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 year ago

    Feature Flags is a concept that helps to enable or disable a feature on an app. Example you would want to roll out a new button on app for a certain set of users, A naive and simplified implementation would look like something below

    flags = server.getFlags() // Fetch/Compute feature flags
    
    if (flags.FeatureA == true) {
    // show button
    }