Answers for "mutable and immutable"

C#
2

A mutable object

Mutable is a type of variable that can be changed. 
In JavaScript, only Objects and Arrays(technically a type of object) are 
mutable, not primitive(immutable) values.

Immutables are the objects whose state cannot be changed once the object is 
created. Boolean, Null, Undefined, Number, String, and Symbols are immutable.
Posted by: Guest on January-02-2021
0

meaning immutable and mutable

A mutable object can be changed after it's created, and an immutable object can't.
Posted by: Guest on September-02-2021

Code answers related to "mutable and immutable"

C# Answers by Framework

Browse Popular Code Answers by Language