Value.As

La función Value.As establece el tipo de un valor.

Sintaxis

Value.As(
    value as any,
    type as type
) as any

Parámetros
  • value: valor cuyo tipo desea fijarse
  • type: tipo a aplicar
Ejemplos

Podemos establecer el tipo de un valor con el siguiente código:

let
    data = 18
in
    Value.As(
        data,
        type number
    )

18

Función M Value.As
Categoría
Funciones de valor
Enviado por admin el Dom, 30/08/2020 - 17:46