Skip to content

Instantly share code, notes, and snippets.

@sontx
Created May 28, 2016 09:25
Show Gist options
  • Save sontx/e41047a23ef431b1a819eb01f1a63b86 to your computer and use it in GitHub Desktop.
Save sontx/e41047a23ef431b1a819eb01f1a63b86 to your computer and use it in GitHub Desktop.
Blog: Tổng quan về sử dụng mô hình MVC để xây dựng web động
function factorial(n) {
if (n == 0) {
return 1;
}
return n * factorial(n - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment