Value.Type
Vraća tip date vrednosti.
Syntax
Value.Type(
value as any
) as type
Remarks
Vraća tip date vrednosti.
value: Vrednost čiji tip se vraća.
Examples
Example #1
Vratite tip navedenog broja.
Value.Type(243.448)
Result:
type number
Example #2
Vratite tip navedenog datuma.
Value.Type(#date(2010, 12, 31))
Result:
type date
Example #3
Vratite tip navedenog zapisa.
Value.Type([a = 1, b = 2])
Result:
type record
Category
Values