what does this line mean z = (++b+—a)%5

```
var a = 3
var b = 2
z = (++b+—a)%5
document.write(z)
Was this page helpful?