Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
JavaScript
hard
JavaScript
object destructuring
Single-choice MCQ
What does the snippet log?
const [a,...r]=[1,2,3]; console.log(r);