Javascript Numbers- Immutable
Solution 1:
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
.
Solution 2:
C# also allows a programmer to create an object that cannot be modified after construction (immutable objects). If you assign a new object in C# to an immutable object, like say a string. You are getting a new string rather than modifying the original.
What you demonstrated here isn't all that different. You can try a const
instead
const x = 6 / 2;
console.log(x); // 3
x = 8;
console.log(x); // 3
Syntax
const varname1 = value1 [, varname2 = value2 [, varname3 = value3 [, ... [, varnameN = valueN]]]];
Browser compatibility
The current implementation of const is a Mozilla-specific extension and is not part of ECMAScript 5. It is supported in Firefox & Chrome (V8). As of Safari 5.1.7 and Opera 12.00, if you define a variable with const in these browsers, you can still change its value later. It is not supported in Internet Explorer 6-9, or in the preview of Internet Explorer 10. The const keyword currently declares the constant in the function scope (like variables declared with var).
Post a Comment for "Javascript Numbers- Immutable"