Wed, Dec 13, 2023Don’t do this: Copy if (b) return true; else return false; Do this: Copy return b; Why? It is shorter and easier to read.Next - Previous