showing results for - "tuple javascript"
Sophie
14 Oct 2016
1function getTuple(){
2   return ["Bob", 24];
3}
4var [a, b] = getTuple();
5// a === "bob" , b === 24 are both true
6