var o = { c: 'hello'}console.log(o['a', 'b', 'c']); // hello ==> o['c']
var a = (1, 2, 3);
console.log(a); // 3