Jump to content
  • 0

Логический оператор !


DivMan
 Share

Question

9 answers to this question

Recommended Posts

  • 0
Он всегда приводит к true и с ним сравнивает?

 

Он приводит к логическому типу (boolen) и меняет на обратное

 

К примеру:

!0;//приводит к логическому false и меняет на обратное, вернет true!1;//приводит к логическому true и меняет на обратное, вернет false
Link to comment
Share on other sites

  • 0

По спецификации алгоритм такой

- преобразовываем выражение к значению Boolean
- если результат равен true возвращаем false
- возвращаем true


Можно представить в виде функции

var not = function(expr) {  expr = !!expr;    if (expr === true) return false;    return true;  };not(1 > 2);   // truenot(1 < 2);   // false
Link to comment
Share on other sites

  • 0

 

По спецификации алгоритм такой

- преобразовываем выражение к значению Boolean

- если результат равен true возвращаем false

- возвращаем true

Можно представить в виде функции

var not = function(expr) {  expr = !!expr;    if (expr === true) return false;    return true;  };not(1 > 2);   // truenot(1 < 2);   // false

 

 

А как переменная получает значение у само самой? 

expr = !!expr;

Edited by DivMan
Link to comment
Share on other sites

  • 0

А как переменная получает значение у само самой?  expr = !!expr;

это двойное отрицание. Фактически приведение к булеву типу. При отрициании производится приведение типа автоматом, а при повторном отрицании возвращается булево значение исходной переменной.

Link to comment
Share on other sites

  • 0
Или это параметр?

 

Выражение !!expr (двойное логическое отрицание) является аналогом Boolean(expr) , оба действия это явное приведение к логическому типу.

 

https://learn.javascript.ru/types-conversion

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