Feedback
Choose an option below
20
undefined
NaN
10
Hint
1let x = 10;2 3function modifyValue(input) {4 input = 20;5}6 7modifyValue(x);8console.log(x);