Timeline for Tips for golfing in JavaScript
Current License: CC BY-SA 3.0
4 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Feb 12, 2022 at 23:19 | comment | added | Yukulélé |
you can save 1 byte: f=x=>x?f(x-1)+" "+x:0 ==> f=x=>x&&f(x-1)+" "+x
|
|
| Oct 5, 2017 at 5:43 | comment | added | Patrick Roberts |
You may not be able to do [x,]+y, but you can do [x,,]+y. Though it occurs to me that's the same amount of bytes as x+','+y, so nevermind.
|
|
| Apr 13, 2017 at 12:39 | history | edited | Community Bot |
replaced http://codegolf.stackexchange.com/ with https://codegolf.stackexchange.com/
|
|
| Mar 20, 2017 at 19:17 | history | answered | ETHproductions | CC BY-SA 3.0 |