GitHub Package
the javascript

25 - Default Parameters

TypeCzech cannot see default parameters, as it runs before the actual function does, but it can see how many parameters there are in a function call. So the trick is to verify different signatures according to the number of parameters. In the upper example to the left, a ['string', 'number'] is checked for when there are two parameters. If there is only one parameter then it must be a 'string'. Otherwise no type checks, which results in both defaults of 'Denzel Washington 66' being used. So defaults are assumed correct.

The lower example to the left, always expects the first parameter to be a 'string'. The second parameter is ignored as an extra parameter.

Console Output

Contents 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43    101 102 103 201 202 203 204 301 302 303 304 401 402 403 404 501 502 503 504 601 602 603 604    700 701 702 703 704 705 706 707 708 709 710 © 2024 Steen Hansen