Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Calculations with exponential values

Avatar

Level 2

Good afternoon, someone on the forum knows if in livecycle designer to perform calculations with exponential values?

For example:

calculo.jpg

Thanks.

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

In JavaScript you can use Math.pow(x,y), so;

Math.pow(9,2) + Math.pow(5,3)

Gives you 206

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

Hi,

In JavaScript you can use Math.pow(x,y), so;

Math.pow(9,2) + Math.pow(5,3)

Gives you 206