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.
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 
 ))); 
  
 // 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)

 display 
 ( 
 '5 + 10:' 
 , 
 ee 
 . 
 Number 
 ( 
 5 
 ) 
 . 
 add 
 ( 
 ee 
 . 
 Number 
 ( 
 10 
 ))) 
 # 15 
 display 
 ( 
 '5 + 10.2:' 
 , 
 ee 
 . 
 Number 
 ( 
 5 
 ) 
 . 
 add 
 ( 
 ee 
 . 
 Number 
 ( 
 10.2 
 ))) 
 # 15.2 
 display 
 ( 
 '5 + -10.2:' 
 , 
 ee 
 . 
 Number 
 ( 
 5 
 ) 
 . 
 add 
 ( 
 ee 
 . 
 Number 
 ( 
 - 
 10.2 
 ))) 
 # -5.199999999 
Create a Mobile Website
View Site in Mobile | Classic
Share by: