Guest User

Untitled

a guest
Feb 21st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. # Example Code
  2.  
  3. ## Math functions
  4.  
  5. ```
  6. function operation(input A, inputB){
  7. return ;
  8. }
  9. ```
  10.  
  11. ## Click handlers
  12.  
  13. ```
  14. $("button").click(function(){
  15. var inputA = $("#inputA").val();
  16. var inputB = $("#inputB").val();
  17. operation(inputA, inputB);
  18. });
  19. ```
Add Comment
Please, Sign In to add comment