Environment and Text/Math Libraries

When the app starts, it will try to learn about its environment, and return data such as:

  • Country
  • Zip
  • Browser
  • Device
  • Timezone etc.

Such information could be used in your logic.

For example, say you are building a sales agent that charges different prices based on location. In this case, you could check if ${E.countryCode} = 'US' and present something there, or for 'FR' offer something different.


Text library

For text manipulation, we included the Voca library, available as ${E.Text}{

Here is a sample list of available items that show up in the popup:

Choose the function you wish to use, and consult Voca if you need more in-depth explanations.

It is very important to not forget to add quotes around your term, e.g.

${E.Text}{lowerCase( ' ${term} ' )}


Math library

For mathematical operations, we included the mathjs library, available as ${E.Math}{

Here is a sample list of available items that show up in the popup:

Chart library

For graphics, we are in the process of including the chartjs library.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.