2018-03-24 16:22:20 +05:30

6 lines
83 B
JavaScript

var a = 1,
b = 2,
c = 3;
var result = (a, (b, c));
expect(result).toBe(c);