how do I get the nth element of a sequence ? `mySe...
# announcements
l
how do I get the nth element of a sequence ?
mySequence.take(n + 1).last()
doesnt feel right to me
a
elementAt(n)
l
thanks