FrontendInterviews.dev

677. Array.from with length Object

Easy•

Predict the output.

const a = Array.from({ length: 3 }, (_, i) => i)
console.log(a.join('-'))

What is printed in the console?

Select an option and submit your answer.
Next Problem