diff --git a/guide/english/miscellaneous/the-return-early-pattern/index.md b/guide/english/miscellaneous/the-return-early-pattern/index.md index 3e5ba57037..feaed19216 100644 --- a/guide/english/miscellaneous/the-return-early-pattern/index.md +++ b/guide/english/miscellaneous/the-return-early-pattern/index.md @@ -70,4 +70,13 @@ We can further refactor this function to only use one if statement. Check it out } return true; - } \ No newline at end of file + } + +### Bonus: Ternary Operator + +The function can be even further refactored to use a single line of code by using a ternary operator: + + function willItBlend(someObject) { + return typeof someObject !== 'object' || someObject.blendable !== 'It will blend' ? false : true; + } +