Slide 6
Slide 6 text
Use Case for E-commerce
More than on/off, we can set multi-variants, such as red, green and blue.
6
Result
Segment(s)
On
Off
if (variant == "on") {
[SHOW FEATURE]
}
if (variant == "off") {
[NOT SHOW FEATURE]
}
Your Code
Variants
Randomly choose 20% of users to see shopping cart.
VIP
Golden
Normal
Red
Blue
Green
if (variant == "red") {
[SHOW RED PAGE]
}
if (variant == "blue") {
[SHOW BLUE PAGE]
}
if (variant == "green") {
[SHOW GREEN PAGE]
}
Show different page color to different membership.