I can't seem to access the local
scope within my ListEach:
writeDump(local.woCoreID); // outputs expected values
// LOOP OVER LIST AND SEPARATE TEXT FROM INTEGERS
ListEach(local.__userSuppliedWorkoutTagList, function (item) {
writeDump(item) // outputs expected values
writeDump(local.woCoreID); // key [woCoreID] doesn't exist
});
when I try to access the local.woCoreID, I get an error message, key [woCoreID] doesn't exist
. Why is that when I can dump it before the ListEach and I see the value is there. What am I missing here?
I'm using Lucee 5.x