Guest User

Untitled

a guest
Feb 20th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. var booltestvar = true;
  2.  
  3. function testFunc1(){
  4. otherFunc(booltestvar)
  5. }
  6.  
  7. function otherFunc(booltestvar){
  8. if (booltestvar === true){
  9. console.log("true")
  10. booltestvar = false;
  11. }
  12. else {console.log("Уже не true")}
  13. }
  14.  
  15. testFunc1();
  16. testFunc1();
  17.  
  18. function otherFunc(booltestvar){ ... }
  19.  
  20. function otherFunc(){ ... }
Add Comment
Please, Sign In to add comment