Guest User

Untitled

a guest
Feb 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. var myfunc = function(param){
  2. var json = {
  3. "result":"ok",
  4. "parametr" : param
  5. };
  6. document.write(json);
  7. } ;
  8.  
  9. If(x > y)
  10. {myfunc(1);}
  11. else
  12. {myfunc(0);}
Add Comment
Please, Sign In to add comment