Created
September 29, 2015 19:06
-
-
Save rufus2021/662b78727d02d6d0e1ac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{isFirstItem && | |
this.doSomething() | |
vp.xs && this.doSomethingElse() | |
} | |
versus | |
{isFirstItem && this.doSomething()} | |
{isFirstItem && vp.xs && this.doSomethingElse()} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment