Index: typescript/src/index.ts =================================================================== diff -u -r6839a168888777645f7bf34bb2c1340f94a05ecd -rffd4c02b8351cba5d3d9638ad94d86f12111e50b --- typescript/src/index.ts (.../index.ts) (revision 6839a168888777645f7bf34bb2c1340f94a05ecd) +++ typescript/src/index.ts (.../index.ts) (revision ffd4c02b8351cba5d3d9638ad94d86f12111e50b) @@ -45,4 +45,19 @@ // return name; // } -console.log(printME("test","test2")); \ No newline at end of file +console.log(printME("test","test2")); + +let array = new Array; +array.push(1); +array.push(resultCar); +array.push('3'); + +console.log(array); + +let numbers = [1,2,3]; +let strings = ['Hello','World']; +console.log(numbers, strings); + +let a = [1,2,3]; +let o = {name: 'Jack', age: 32}; +console.log(Array.isArray(a), Array.isArray(o)); \ No newline at end of file