List of all binary operators in JavaScript

后端 未结 3 1761
孤独总比滥情好
孤独总比滥情好 2020-12-30 08:09

I am trying to understand what is possible with binary operators (only binary operators) in JavaScript. So far the list of binary operators I have discovered are the the fol

3条回答
  •  天涯浪人
    2020-12-30 08:25

    There are the following arithmetic operators supported by the JavaScript language.

    Assume variable A holds 10 and variable B holds 20 then:

    Enter image description here

    Enter image description here

    Enter image description here

    Enter image description here

    Enter image description here

    Enter image description here

    Here is the original page link.

提交回复
热议问题