Page 130 - CITS - Computer Software Application -TT
P. 130

COMPUTER SOFTWARE APPLICATION - CITS



           JavaScript Arithmetic Operators
           Arithmetic Operators are used to perform arithmetic on numbers:

           Arithmetic Operators Example
           let a = 3;
           let x = (100 + 50) * a;
                                Operator                                        Description
                                   +                            Addition
                                    -                           Subtraction
                                   *                            Multiplication
                                   **                           Exponentiation (ES2016)
                                    /                           Division
                                   %                            Modulus (Division Remainder)
                                   ++                           Increment
                                   --                           Decrement
           Note
           Arithmetic operators are fully described in the JS Arithmetic chapter.
           JavaScript Assignment Operators

           Assignment operators assign values to JavaScript variables.
           The Addition Assignment Operator (+=) adds a value to a variable.
           Assignment
           let x = 10;

           x += 5;
                       Operator                          Example                         Same As
               =                                x = y                            x = y
               +=                               x += y                           x = x + y
               -=                               x -= y                           x = x - y
               *=                               x *= y                           x = x * y
               /=                               x /= y                           x = x / y
               %=                               x %= y                           x = x % y
               **=                              x **= y                          x = x ** y
           Note
           Assignment operators are fully described in the JS Assignment chapter.
           JavaScript Comparison Operators

                                Operator                                        Description
                                   ==                           equal to
                                  ===                           equal value and equal type
                                   !=                           not equal
                                  !==                           not equal value or not equal type
                                   >                            greater than
                                   <                            less than
                                   >=                           greater than or equal to





                                                           117

                             CITS : IT&ITES - Computer  Software Application - Lesson 37 - 46
   125   126   127   128   129   130   131   132   133   134   135