Answered
Using "+" with getField("num.CD.BPAC.01").value;
When is it appropriate to use the + sign with getField? I have seen it written these two ways and both seem to work the same:
var num = getField("num.CD.BPAC.01").value;
and
var num = +getField("num.CD.BPAC.01").value;
