List of mathematical symbols with their JavaScript equivalent.
Of course. Here is the completed table with the added "Python" and "Go" columns.
| Symbol | Name | Since | Example | JavaScript | Python | Go |
|---|---|---|---|---|---|---|
― |
Horizontal bar for division | ~1300 | a / b |
a / b |
a / b |
|
+ |
Plus sign | 1360 | a + b |
a + b |
a + b |
|
- |
Minus sign | 1489 | a - b |
a - b |
a - b |
|
√ |
Radical symbol | 1525 | Math.sqrt(x) |
import math math.sqrt(x) |
import "math" math.Sqrt(x) |
