# Expresiones útiles para n8n

## Leer un campo

```text
{{ $json.nombre }}
```

## Convertir texto a mayúsculas

```text
{{ $json.nombre.toUpperCase() }}
```

## Valor alternativo

```text
{{ $json.telefono || 'Sin teléfono' }}
```

## Fecha actual

```text
{{ $now.toISO() }}
```

## Condición sencilla

```text
{{ $json.total > 100 ? 'prioritario' : 'normal' }}
```
