/ Published in: JavaScript
URL: http://ricardo.cc/2011/06/02/10-CoffeeScript-One-Liners-to-Impress-Your-Friends.html
When you use the + operator on an Array, it converts it to a string.[].toString() is the same as [].join(','), which gives an empty string in case the array value is undefined or null. This also works in Javascript ([undefined] + "b" === "b").
Expand |
Embed | Plain Text
var i; for (i = 1; i <= 100; i++) { console.log([!(i % 3) ? 'fizz' : void 0] + [!(i % 5) ? 'buzz' : void 0] || i); }
You need to login to post a comment.
