Easy
This question is a daily question and will count towards your daily streak.
What will this code output?
1let arr = [1, 2, 3];2arr.push(4);3arr = [5, 6, 7];4console.log(arr);
1let arr = [1, 2, 3];2arr.push(4);3arr = [5, 6, 7];4console.log(arr);