You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So in the Numeric Operations section, I think integer division should be covered as it may be a bit confusing that 4999/1000 gives 4 and not 5 to people coming from languages like javascript where numbers aren't separated into ints and floats.
Something like -
With integers, division is automatically floored so doing 4999/1000 will give 4 and not 5.