mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2025-11-20 17:48:34 +00:00
* update theme * fix tab issues * update readme * editor * revert tab change * change editor config back to 4 spaces for tabs * fix admons that broke when enforcing 4 spaces per tab * update README
1.0 KiB
1.0 KiB
| title | description | contentType |
|---|---|---|
| Data transformation functions | Introduction to data transformation functions for expressions. | overview |
Data transformation functions
Data transformation functions are helper functions to make data transformation easier in expressions.
!!! note "JavaScript in expressions" You can use any JavaScript in expressions. Refer to Expressions for more information.
For a list of available functions, refer to the page for your data type:
Usage
Data transformation functions are available in the expressions editor.
The syntax is:
{{ dataItem.function() }}
For example, to check if a string is an email:
{{ "example@example.com".isEmail() }}
// Returns true