Added some suggestions (#25092)

* Added some suggestions

Better practices about using Ternary.

* Reworded statement, grammar fix
This commit is contained in:
Rayon
2018-12-15 16:48:08 +05:30
committed by Manish Giri
parent 968d5738b1
commit 6f8b6a82ed

View File

@ -56,5 +56,7 @@ To ease readability, the code using ternary operators is often formatted across
This way of using the ternary operator needs to be done sparingly and in the right places, which is why (as is the case with using multiple `else if's`), it can sometimes lead to more readable code by using a `switch` statement instead.
It is advisable to use the ternary operator only in cases which include both `if` and `else` conditions, otherwise using an `if` block is recommended. Chaining ternary operators without care may cause unforeseen bugs.
**Read more:** <a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_Operator' target='_blank' rel='nofollow'>MDN</a>