If you like SEOmastering Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...

 

What is mutable

Started by chinmay.sahoo, 04-26-2016, 07:34:30

Previous topic - Next topic

chinmay.sahooTopic starter

When we declare const, the members in the data cannot be changed. If we require to change one of the data then we can declare to be mutable. It specify that the member can be updated even it is member of the constant object.


TomClarke

Mutable and immutable are words meaning "can change" and "cannot change" respectively. The meaning of the words is the same in the IT context:
- a mutable string can be changed
- an immutable string cannot be changed.


If you like SEOmastering Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...