Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. console.log('granny');
  2.  
  3. var granny = function(string) {
  4.  
  5. var randYear = (Math.floor(Math.random()*21))+1930;
  6. // console.log(randYear);
  7.  
  8. if(string !== string.toUpperCase()){
  9. console.log('NO, NOT SINCE ' + randYear + '!');
  10. }
  11. else if(string === 'BYE'){
  12. console.log("What's that honey, I didn't hear you..");
  13. }
  14. else {
  15. console.log("SPEAK UP SONNY JIM!");
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement