ee.Number.add

  • The Number.add() method adds the first value (left) to the second value (right).

  • Both the left and right arguments must be of type Number.

  • The method returns a Number type representing the sum of the two input values.

  • Examples are provided in both JavaScript and Python, demonstrating how to use the add() method with different numeric values.

Adds the first value to the second.

UsageReturns
Number.add(right)Number
ArgumentTypeDetails
this: leftNumberThe left-hand value.
rightNumberThe right-hand value.

Examples

Code Editor (JavaScript)

print('5 + 10', ee.Number(5).add(ee.Number(10)));  // 15
print('5 + 10.2', ee.Number(5).add(ee.Number(10.2)));  // 15.2
print('5 + -10.2', ee.Number(5).add(ee.Number(-10.2)));  // -5.199999999

Python setup

See the Python Environment page for information on the Python API and using geemap for interactive development.

import ee
import geemap.core as geemap

Colab (Python)

print('5 + 10:', ee.Number(5).add(ee.Number(10)).getInfo())  # 15
print('5 + 10.2:', ee.Number(5).add(ee.Number(10.2)).getInfo())  # 15.2
print('5 + -10.2:',
      ee.Number(5).add(ee.Number(-10.2)).getInfo())  # -5.199999999