Solved
Forum Discussion
ayush_vipul
7 years agoNew Contributor III
thanks @tstack .This was the exact use case.
Also do we have a total number of libraries we can add to a pipeline ?
Do we have a standerd IDE to write expressions ?
or if you can suggest any extension for VS code.
tstack
7 years agoFormer Employee
I donโt think so.
The expression language is mostly a subset of JavaScript, so I would just use an editor with support for that. The main difference is that expression language is just expressions, not statements. Donโt try to use things like if
or function()
, you need to stick to arrow functions (e.g. (x, y) => x + y
). One addition to the e-lang that is not in JavaScript is the match
operator. You might find that useful if you have to do a lot of conditionals.
- ayush_vipul7 years agoNew Contributor III
Thanks @tstack
This helped me a lot.
๐