Garden 🌻

+ Operator

+ adds two integers together.

1 + 2 //-> 3

You can use += to add and assign to a variable.

let i = 3
i += 4
i //-> 7