Advertisement
MrsMcLead

function

Apr 4th, 2013
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // JavaScript Document
  2. var result;
  3.  
  4. function cube(x)
  5. {
  6.     result = x * x * x;
  7.     return result;
  8. }
  9.  
  10. document.write(cube(3));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement