Skip to content

Instantly share code, notes, and snippets.

@zrobit
Created February 2, 2017 18:19
Show Gist options
  • Save zrobit/67cc5fa81194b78e91aff71b52bd15bf to your computer and use it in GitHub Desktop.
Save zrobit/67cc5fa81194b78e91aff71b52bd15bf to your computer and use it in GitHub Desktop.
Random Two values
function randomTwoValues(val1, val2){
return Math.random() < 0.5 ? val1 : val2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment