'AND' vs '&&' as operator
- by ts
Actually, i am facing a codebase where developpers decided to use 'AND' and 'OR' instead of '&&' and '||'. I know that there is difference in operators precedence (&& goes before 'and'), but with given framework (prestashop to be precise) is clearly not a reason.
So, my question: which version are you using? Is 'and' more readable than '&&'? || there is ~ difference?