
Making a tiny .NET Core 3.0 entirely self-contained single executable - Scott Hanselman
[1, 2, 3, 4, 5].map(console.log);// The above is equivalent to[1, 2, 3, 4, 5].map( (val, index, array) => console.log(val, index, array) );// and not equivalent to[1, 2, 3, 4, 5].map( val => console.log(val) );