Guest User

Untitled

a guest
Jan 20th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function randomSelect() {
  2. randomBeer.addEventListener('click', function() {
  3. var number = Math.floor(Math.random() * 8);
  4. popUp[number].style.visibility = 'visible';
  5. popUp[number].style.transform = 'scaleY(1)';
  6. return number;
  7. })
  8. }
  9.  
  10.  
  11. function closeRandomSelect() {
  12. var randSelNumb = randomSelect();
  13. console.log(randSelNumb);
  14. }
Add Comment
Please, Sign In to add comment