matician - v2.0.0
    Preparing search index...

    Function add

    • Adds two numbers together.

      Parameters

      • augend: number

        The number to which another number (the addend) is added.

      • addend: number

        The number that is added to the augend.

      Returns number

      The sum of the augend and addend.

      add(2, 3); // returns 5
      add(-1, 1); // returns 0