Skip to content

Instantly share code, notes, and snippets.

@matheusml
Last active April 15, 2016 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matheusml/54acafaabd220da0925d57d8ba5975d4 to your computer and use it in GitHub Desktop.
Save matheusml/54acafaabd220da0925d57d8ba5975d4 to your computer and use it in GitHub Desktop.
var printSquares = function(n) {
if (n > 0) {
printSquares(n-1);
console.log(n*n);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment