3 lines
89 B
JavaScript
3 lines
89 B
JavaScript
f=()=>f();f();
|
|
/* This also does the same thing, but is harder to read */
|
|
(f=()=>f())();
|