JavaScript Quiz: Variable in Array

By Xah Lee. Date: . Last updated: .
// js quiz. what the following print.
let x = "a";
let r = [3,x];
x = "b";
console.log(r);

let y = [2];
let r2 = [3,y];
y[0] = 4;
console.log(r2);
BUY ΣJS JavaScript in Depth