ee.Number.add Stay organized with collections Save and categorize content based on your preferences.
Page Summary
The
Number.add()method adds the first value (left) to the second value (right).Both the
leftandrightarguments must be of typeNumber.The method returns a
Numbertype 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.
| Usage | Returns |
|---|---|
Number.add(right) | Number |
| Argument | Type | Details |
|---|---|---|
this:left | Number | The left-hand value. |
right | Number | The right-hand value. |
Examples
Code Editor (JavaScript)
print('5 + 10',ee.Number(5).add(ee.Number(10)));// 15print('5 + 10.2',ee.Number(5).add(ee.Number(10.2)));// 15.2print('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 usinggeemap for interactive development.
importeeimportgeemap.coreasgeemap
Colab (Python)
display('5 + 10:',ee.Number(5).add(ee.Number(10)))# 15display('5 + 10.2:',ee.Number(5).add(ee.Number(10.2)))# 15.2display('5 + -10.2:',ee.Number(5).add(ee.Number(-10.2)))# -5.199999999
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.