Test of coma after last object property

This works in Chrome, yet fails in IE11.

by Anton

JavaScript

var obj = {
    a: 'A',
    b: 'B',
    c: 'C',
}

alert(obj.a + obj.b + obj.c + ' - works!');