Advertisement
InasAwad

Untitled

Feb 5th, 2020
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function points(){
  2.     var po = 0;
  3.     return function(right){
  4.         if(right){
  5.             po++;
  6.             console.log('Your score is 1 point more! Now it\'s ' + po); // I added this part.
  7.             console.log('*^*^*^*^*^*^*'); // also this.
  8.         } else {
  9.         console.log('Your score is still ' + po + '.'); // and this.
  10.         console.log('*^*^*^*^*^*^*'); // and this :)
  11.         }
  12.         return po;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement