The ECMAScript 2015 standard introduces the "<tt>...</tt>" operator,<ref>{{Cite web|title=Rest and Spread operator: Three dots that changed JavaScript|url=https://www.wisdomgeek.com/development/web-development/rest-and-spread-operator-three-dots-that-changed-javascript/|date=2019-10-17|website=Wisdom Geek|language=en-US|access-date=2020-05-28}}</ref> for the related concepts of "spread syntax"<ref>{{cite web|url=https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Spread_operator|title=Spread syntax}}</ref> and "rest parameters"<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters| title = rest parameters}}</ref>
'''Spread syntax''' provides another way to destructure arrays. It indicates that the elements in a specified array should be used as the parameters in a function call or the items in an array literal.