List of questions
Related questions
Question 129 - Certified JavaScript Developer I discussion
Refer to the code below:
function changeValue(param) {
Param =5;
} Let a =10;
Let b =5;
changeValue(b);
Const result = a+ " - "+ b;
What is the value of result when code executes?
A.
10 -10
B.
5 -5
C.
5 - 10
D.
10 - 5
Your answer:
0 comments
Sorted by
Leave a comment first