Details
Assignee
Michael OffnerMichael OffnerReporter
Ryan DebaRyan DebaPriority
MajorNew 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
Affects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Ryan Deba
Ryan DebaPriority
New 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
Affects versions
Created 16 October 2019 at 21:39
Updated 6 March 2025 at 11:28
Scenario: call map() on an array that contains null values.
What I expected:
1) The new array should have the same length as the original array.
2) Each item in the new array should have the value returned from the map function.
What actually happened:
1) If the original array has nothing but null values, the new array has a length of 0.
2) If the original array contains a mix of null and non-null values, it is impossible to map the null values to a different value.
TryCF gist: https://trycf.com/gist/f586d22f312910ec1814b235522f97fe/lucee5?theme=monokai
a = [JavaCast("null", "")]; //a = [JavaCast("null", ""), ""]; b = a.map(function(item) { return "foo"; }); if (a.len() != b.len()) { writeoutput("Fail: array lengths should be the same"); } else if (IsNull(b[1])) { writeoutput("Fail: b[1] should be 'foo'"); } writedump(var=a, label="a"); writedump(var=b, label="b");