//// [arrayConcat2.ts] var a: string[] = []; a.concat("hello", 'world'); a.concat('Hello'); var b = new Array(); b.concat('hello'); //// [arrayConcat2.js] var a = []; a.concat("hello", 'world'); a.concat('Hello'); var b = new Array(); b.concat('hello');