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!
小伙看你根骨奇佳,潜力无限,来学PHP伐。
comma operator
var x = 0; var y = 1; var z = (x, y); // 1 var w = y; // 2
It’s the same as your example
comma operator
It’s the same as your example