Skip to content

Instantly share code, notes, and snippets.

View ytiurin's full-sized avatar

Eugene Tiurin ytiurin

View GitHub Profile
@ytiurin
ytiurin / factorial.js
Created October 18, 2016 12:15
Calculate extra large factorial
function factorial(userInt)
{
if(userInt===0)
return '1'
if(!userInt)
return ''
var i, nextNumber, carret,