TypeScript/tests/baselines/reference/arrayConcat2.js
2014-07-12 17:30:19 -07:00

17 lines
275 B
TypeScript

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