I don't understand the use of "*" in this context
# announcements
r
I don't understand the use of "*" in this context
s
It is the so-called ‘spread’ operator
r
Thanks
k
Note that
*
makes an extra array copy, which might have performance implications.
👍 2