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