1. Temporary variable method

	let a=5;
	let b=8;
	let tmp=a;
	a=b;
	b=tmp;
Copy the code

2. Addition and subtraction

	a+=b;
	b=a-b;
	a=a-b;
Copy the code

3. Deconstruction

	[a,b]=[b,a];
Copy the code

4, array method, object method skip