Details
Assignee
Michael OffnerMichael OffnerReporter
Brad WoodBrad WoodNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
Priority
Minor
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Brad Wood
Brad WoodNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
Priority
Created 14 August 2019 at 14:16
Updated 6 March 2025 at 11:35
https://www.sitepoint.com/es6-arrow-functions-new-fat-concise-syntax-javascript/
When a fat arrow function only has only param, the parentheses should be optional:
prices = smartPhones.map( smartPhone => smartPhone.price );
Right now Lucee requires this syntax:
prices = smartPhones.map( ( smartPhone ) => smartPhone.price );