Created
October 24, 2014 22:34
-
-
Save anonymous/afbd53a15bf1eca5fcd8 to your computer and use it in GitHub Desktop.
Javascript syntax solutions
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
// multiline conditional operator (source: three.js) | |
var newTime = self.performance !== undefined && self.performance.now !== undefined | |
? self.performance.now() | |
: Date.now(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment