Skip to content

Instantly share code, notes, and snippets.

@mariucagl
Created December 11, 2012 21:25
Show Gist options
  • Save mariucagl/4262255 to your computer and use it in GitHub Desktop.
Save mariucagl/4262255 to your computer and use it in GitHub Desktop.
funcion a la cual le indicas un numero y te lo multiplica por si mismo 3 veces.
var cube = function(n){
return n*n*n;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment