File size: 103 Bytes
1e92f2d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
function c(a, b) {
  var x = b;
  return [`${a}${x}`, a];
}

const d = c("1", "2");

const [e, f] = d;