This appointment destructuring .
Destructuring destination syntax is a JavaScript expression that allows you to unpack values from arrays or properties from objects into various variables.
Example (ES6):
var person = {firstname: 'john', lastname: 'doe'};
const firstname = person.firstname;
const lastname = person.lastname;
const { firstname, lastname } = person;
Further information can be found on MDN.
EDIT: , Python, Python.
Python2.7:
>>> _tuple = (1, 2, 3)
>>> a, b, c = _tuple
>>> print(a, b, c)
(1, 2, 3)
Python3, PEP 3132, :
>>> _range = range(5)
>>> a, *b, c = _range
>>> print(a, b, c)
0 [1, 2, 3] 4
, , , JS.