We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
With Map:
var map = Immutable.Map({one: 'one', two: 'two', three: 'three'}); map.keySeq().last(); // 'three'
With List though:
var list = Immutable.List(['one', 'two', 'three']); list.keySeq().last(); // -1
Am I missing something or is this in fact a bug?