LoginSignup
6
6

More than 5 years have passed since last update.

スワップ

Posted at

余計な変数を使わないスワップ

var a = 0;
var b = 1;

console.log(a, b); // 0 1

a  = [b, b = a][0];

console.log(a, b); // 1 0
6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6