Appearance
使用逗号操作符可以在一条语句中执行多个操作
var num1 = 1, num2 = 2, num3 = 3;
逗号操作符还可以用于赋值,返回表达式中的最后一项
var num = (5, 1, 4, 8, 0); // num 的值为0