✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Given the following function:
function add(x) {
return y => y + x;
}
What term describes the mechanism that allows the inner anonymous function (y => y + x) to access the x variable from its containing add function, even after add has finished executing?