I have this code here:
let a = 8, b = 6;
(() => {
"use strict";
// change code below this line
const [a, b] = [b, a]
// change code above this line
})();
console.log(a); // should be 6
console.log(b); // should be 8
My question is, how a and b enter the function?