Created
April 13, 2018 22:18
-
-
Save treeform/77b8b92f2cab7cf321198ef82d123fdd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| Should I do? | |
| if (`b`.length > `a`.length) { | |
| return -`b`[`a`.length]; | |
| } | |
| vs | |
| if (`b`.length > `a`.length) { | |
| return -1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment