sajeeb sarkar

Results 1 comments of sajeeb sarkar

function changeValue(a) { console.log('Value of a inside function before changing: ' + a); a = 10; console.log('Value of a inside function after changing: ' + a); return a; } var...