javascript numbers- immutable

前端 未结 2 1150
醉梦人生
醉梦人生 2020-12-02 00:28

I come from c# background where immutable is achieved with public get ,private set properties. I have read that numbers in javascript are immutable so how can I do the follo

2条回答
  •  一整个雨季
    2020-12-02 00:51

    The numbers themselves are immutable. The references to them that are stored in the variable are not.

    So 6 / 2 gets you a reference to the immutable 3, and then = 8 assigns a new reference to the immutable 8.

提交回复
热议问题