let a = "red"; let b = "blue"; let c = a; // red a = b; //over-rides to blue b = c; console.log(a); console.log(b);