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

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

const [e, f] = d;