For an article I'm writing, could you tell me whic...
# codingconventions
e
For an article I'm writing, could you tell me which version of the following code you would write/recommend? Feel free to add options. 1️⃣
if (b == true)
2️⃣
if (b == true)   // b could be null
3️⃣
if (b != null && b)
1️⃣ 2
2️⃣ 2
l