Skip to content

Instantly share code, notes, and snippets.

@ptiswitz
Created July 7, 2015 12:16
Show Gist options
  • Save ptiswitz/c8eb33c2090ba3c078d3 to your computer and use it in GitHub Desktop.
Save ptiswitz/c8eb33c2090ba3c078d3 to your computer and use it in GitHub Desktop.
Function to make a random selection between two values
function randomBetween(val1, val2) {
return Math.round(Math.random()) ? val1 : val2;
}
@spyesx
Copy link

spyesx commented Jul 7, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment