I was reading through another script and came across two lines that I don't understand what's happening. I searched the help for ":=" but it didn't return any results. Can someone explain what's happening in the second line? I assume it's storing a value into the last index of an array.
smoothPeriod = 0.0
smoothPeriod:= (0.33 * period) + (0.67 * nz(smoothPeriod[1]))