I want to assign the value of this replaced value back to the same variable.{%= replaceAll(itin_1_img_alt,"-"," ") %} something like, {% let itin_1_img_alt = "This-is-my-ALT-tag" %} {% itin_1_img_alt = replaceAll(itin_1_img_alt,"-"," ") %} Thanks,
I am new to AJO and would like to code a basic for loop, something like this in JavaScript, for (let i = 0; i < cars.length; i++) { text += cars[i] + "Car";} Any suggestions?