Advertisement
winone1208

JS function

Sep 5th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript" >
  2.  
  3. function ilov(x,y){
  4.     document.writeln("I love " + x + " and " + y + "<br />")
  5.     }
  6.  
  7. ilov("FF8","pizza")
  8. ilov("FF7","tatoo")
  9.  
  10. function sum(x,y)
  11. {alert(x+y)}
  12. sum(3,5)
  13.  
  14. function sum1(a,b){
  15.     var c=a+b;
  16.     return c;
  17. }
  18.  
  19. document.writeln(sum1(3,6));
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement