Explore Connect Documentation
Snippets
1
2
3
4
5
6
7
8
9
10
11
12
a = 10
b = 5
c = 1
if (a < b) {
    d = 1
} else if (a == b) {
    d = 2
} else {
    d = 3
}
d
Press desired key combination and then press ENTER.