📝 Posted on 2021-08-30T18:03:21Z
⏳ 1 min read
In javascript 0 * -1 = -0 !
#javascript#beginners#webdev
Do you know when we evaluate this
0 * -1
in javascript we will get -0
because javascript can hold positive 0 (+0) and negative 0 (-0).Why +0 and -0 ?
Because the sign (+ and -) will represent the axis or direction.