Title.
In reference to my topic here, an answer to my topic suggested to use the addon ‘Convert String to Numeric’, which eventually involved like an additional 4 more steps
(get, convert, get, convert, evaluate).
A suggestion I was given somewhere else involved using ‘Evaluate Javascript’ which potentially removes 2 steps
(get, get, use JS:
return Number({proposal_totalAmount}) - Number({proposalDiscountAmount})
(script might be wrong, but you should get the idea here)
)
It made me wonder: in this case, would using the Addon be better than Javascript in terms of speed? Related: would lesser steps == more efficient/faster test cases?