let a = 0, b = 1; function swap (c,d) { var c = a; a = b; b = c; } swap(a,b); console.log(a); // 1 console.log(b); // 0