Advertisement
rony2605

Funcao mutiplicar por 3

Mar 8th, 2013
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //This is what a function looks like
  2.  
  3. var divideByThree = function (number) {
  4.     var val = number / 3;
  5.     console.log(val);
  6. };
  7.  
  8. divideByThree(9);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement