Home | Mailing List | Blog | Tutorial Videos

Array Method Binding

What gets logged in the following scenario?

const map = ['a', 'b', 'c'].map.bind([1, 2, 3]);
map(el => console.log(el));

Select one: