Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function hi(a,b) {
  2. return a*b;
  3. }
  4.  
  5. function hello(a,b) {
  6. return hi(a,b+1);
  7. }
  8.  
  9. hello(3,3);
  10.  
  11. return hi(9+1);
  12.  
  13. if (x == 0 && y == 1)
  14.  
  15. condicao = x == 0 && y == 1;
  16. if (condicao)
  17.  
  18. hello(3,3) {
  19. //hi(3, 3+1)
  20. return hi(3,4);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement