Examples

AskScript:

for(let index in itemPrices) {
    ...
}

translates to:

<forIn variableDeclaration={<set name={'index'} type={'any'} />} value={<ref name={'itemPrices'} />}>
	...
</forIn>