I've two variables and i wanna swap them without using third variable.
Ex:
let a = 'value1',
b = 'value2';
Result:
a = 'value2',
b = 'value1'
is this possible?
I've two variables and i wanna swap them without using third variable.
Ex:
let a = 'value1',
b = 'value2';
Result:
a = 'value2',
b = 'value1'
is this possible?