Y
Hacker News
new
|
ask
|
show
|
jobs
by
lhorie
6136 days ago
Does this count as an anonymous recursive function?
a = (function(x) {return x == 0 ? 1 : x * arguments.callee(x - 1)})(8);