The code in js is as follows:
function ff(a,b){...};
(0,ff)(_a,_b); // ~>1
ff(_a,_b); // ~>2
What is the difference between 1 and 2?
//You can Baidu comma operator!
阿神2017-05-19 10:48:05
comma operator
var x = 0;
var y = 1;
var z = (x, y); // 1
var w = y; // 2
It’s the same as your example