2
0

📝 Add set variable upper and lower case examples

This commit is contained in:
Baptiste Arnaud
2023-04-03 16:54:53 +02:00
parent 49071b73b6
commit 14abe76691

View File

@ -44,6 +44,16 @@ Extract the first name from a full name:
{{Full name}}.split(' ')[0]
```
Transform existing variable to upper case or lower case:
```
{{Name}}.toUpperCase()
```
```
{{Name}}.toLowerCase()
```
## Code
The code value should be written Javascript. It will read the returned value of the code and set it to your variable.