List of questions
Related questions
Question 38 - Certified JavaScript Developer I discussion
Refer to the code below:
Function changeValue(obj) {
Obj.value = obj.value/2;
}
Const objA = (value: 10);
Const objB = objA; changeValue(objB); Const result = objA.value; What is the value of result after the code executes?
A.
10
B.
Nan
C.
5
D.
Undefined
Your answer:
0 comments
Sorted by
Leave a comment first