List of questions
Related questions
Question 72 - Certified JavaScript Developer I discussion
Refer to the code below:
Let str = 'javascript';
Str[0] = 'J';
Str[4] = 'S';
After changing the string index values, the value of str is 'javascript'. What is the reason for this value:
A.
Non-primitive values are mutable.
B.
Non-primitive values are immutable.
C.
Primitive values are mutable.
D.
Primitive values are immutable.
Your answer:
0 comments
Sorted by
Leave a comment first