[SOLVED] Can I add else statements to my if statements is that possible?

I’m wondering, I know if statements in wick but i’m wondering if i could add else statements with them?

Can use something like this

let A = 6
let B = 8
let C = 6


if (A === B) {
    //do something
} else if (A === C) {
    //or do something else
} else {
    //else do this
}
1 Like

Thanks this helps!