UNPKG

decova-dotnet-developer

Version:

This package provides fundumentals that a .net developer may miss while working with Typescript, whether they are missing functinalities or funcionalities provided in a non-elegant design in javascript. Bad naming, bad design of optional parameters, non-c

11 lines 363 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); describe('Array.x', () => { it('s "Contains" method works correctly', () => { const arr1 = [1, 3, 5, 7, 9]; const arr2 = [2, 4, 6, 8, 10]; arr2.Union(arr1); console.log(arr1.Union(arr2)); }); }); //# sourceMappingURL=Array.x.spec.js.map