I cam across this in the daggy code and was wondering what it meant. It resembles a tuple, but that's not supported
const typeRep = (0, (...args) => makeValue(fields, proto, args))
What is the purpose of the 0 in the first position of the parnes statement? I experimented with a couple simple examples
const t = (1, 10)
//=> 10
and
const t = (1, 10, 100)
//=> 100
As far as I can tell the expression throws away all but the last item in the parens. DOes anybody have the lowdown on what is happening here?