Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyJavaScriptlet const var and scopeSingle-choice MCQ

Which statement about `const` is correct?

const arr = [1, 2, 3]; arr.push(4); console.log(arr.length);