Conditional Ternary Operators - add mdn link (#29851)

add mdn link for Conditional Ternary Operators documentation
This commit is contained in:
Debalina
2019-03-19 18:54:53 -07:00
committed by Randell Dawson
parent 5f494670eb
commit 297b01396c

View File

@ -39,3 +39,7 @@ const wealth = housesOwned > 3 ? "rich"
: housesOwned > 1 ? "nothing to complain"
: "poor"
```
### Resources:
- [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_Operator)