JavaScript Quiz: Variable in Array
// 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);
// 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);