Jump to content
  • 0

Оператор return


uefa
 Share

Question

11 answers to this question

Recommended Posts

  • 0

2YETI, он пока сам не понимает, что ему это не нужно. Такое бывает, когда не знаешь самых азов программирования))

2uefa, на ваш вопрос никто не ответит, ибо со своим невежеством надо бороться самому.

Link to comment
Share on other sites

  • 0
Такое бывает, когда не знаешь самых азов программирования))

Да может дело и не в "азах программирования". Просто по началу не удается сформулировать мысли правильно. А "азы программирования" - штуковина абстрактная. Тем более касательно оператора return. Вот пишут же профессионалы так:

 if ( IE ) return node.innerText;
else
{
var range = document.createRange( );
range.selectNodeContents ( node );
return range.toString();;
}

или так:

 if (el == null) return null;
else if (el.nodeType == 1 &&
((!isUndefined(vl) && el[cp] == vl) ||
('string' == typeof cp && DOM.hasTagName(el, cp)) ||
el == cp)) return el;
else return arguments.callee(el.parentNode, cp, vl);

Link to comment
Share on other sites

  • 0

2AKS, я понимаю это дословно.

А как сделать, чтобы значение конкретной переменной функция возвращала, а выполнение свое продолжала до конца?

т.е. человек хочет:

function foo() {
var bar = "Hello";
return bar;
alert(bar);
}
foo(); //чтобы вызов этой функции и возвращал значение, и выполнил alert(bar);

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