Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Short-circuit evaluation and return for && || #15

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Short-circuit evaluation and return for && || #15

wants to merge 2 commits into from

Conversation

ghost
Copy link

@ghost ghost commented Sep 13, 2019

  1. && возвращает первый операнд который привелся к false. Если такового не оказалось, то возвращается последний операнд (истинный).
    2 && 0 && 'string' => 0
    '' && 4 => ''
    0 && 6 => 0
    4 && 3 => 3
  2. || возвращает первый операнд который привелся к true. Если такового не оказалось, то возвращается последний операнд (ложный).
    '' || 4 => 4
    0 || 6 => 6
    4 || 3 => 4
    '' || 0 || null => null

Так же следует отметить, что используется 'short-circuit evaluation', то есть функция console.log() в примере ниже не исполнится.
0 || true || console.log('wow')

1) && возвращает первый операнд который привелся к false. Если такового не оказалось, то возвращается последний операнд (истинный).
2 && 0 && 'string' => 0
'' && 4 => ''
0 && 6 => 0
4 && 3 => 3
2) || возвращает первый операнд который привелся к true. Если такового не оказалось, то возвращается последний операнд (ложный).
'' || 4 => 4
0 || 6 => 6
4 || 3 => 4
'' || 0 || null => null

Так же следует отметить, что используются 'short-circuit evaluation', то есть функция f() в примере ниже не исполнится.
'' || true || f() => true
@ghost ghost changed the title Short-circuit evaluation and return for && | | Short-circuit evaluation and return for && || Sep 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants