Your code is ok, but I prefer indenting else like this: ``` if (a==b) { doThis() } else { doThat() } This is closer to Python: if a==b: doThis() else: doThat() ``` Motivation: save valuable screen estate.
Your code is ok, but I prefer indenting else like this:
Motivation: save valuable screen estate.