Jump to content
  • 0

Объясните код !


cypler
 Share

Question

11 answers to this question

Recommended Posts

  • 0

var i = 4;

Создается глобальная переменная с именем i

var shooter = function me() {}

Создается переменная shooter, которая будет ссылаться на именованную функцию me

shooter.i = i;

Функции me (по сслыке через переменную shooter) будет добавлено свойство i, ккоторому будет присвоено значение глобальной переменной i

shooter();

Вызов функции me по ссылке через переменную shooter

alert( me.i );

Вызов функции alert и передача ей в качестве параметра свойства i функции me

  • Like 2
Link to comment
Share on other sites

  • 0

Еще вопрос. Вот код:

function filter(arr, func) {

var result = [];

for(var i=0; i<arr.length; i++) {

var val = arr;

if (func(val)) {

result.push(val);

}

}

return result;

}

function inBetween(a, b {

return function(x) {

return x >=a && x <= b;

};

}

var arr = [1, 2, 3, 4, 5, 6, 7];

alert( filter(arr, inBetween(3,6)) ); // 3,4,5,6

Я правильно понимаю что в шестой строчке if (func(val)) вместо func(val) подставляется inBetween(3,6) и получается

if (inBetween(3,6)(val)), а val передается в return function(x) вместо х ????

Edited by cypler
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy