Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyJavaScriptarray map filter reduceSingle-choice MCQ1,224 views

What will be logged?

let arr = ["a", "b", "c"]; arr.splice(2, 0, "b"); console.log(arr);