Skip to content

Instantly share code, notes, and snippets.

Created October 24, 2014 22:34
Show Gist options
  • Save anonymous/afbd53a15bf1eca5fcd8 to your computer and use it in GitHub Desktop.
Save anonymous/afbd53a15bf1eca5fcd8 to your computer and use it in GitHub Desktop.
Javascript syntax solutions
// 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