Why would you want to keep the VARIABLE data?
Here:
HTML Code:
function onCreated()
{
temp.myList = {"hey", "hi", "lol"};
for (currentItem: temp.myList)
echo(currentItem);
echo(currentItem);
scheduleevent(3, "Repeat", "");
}
function onRepeat()
{
echo(currentItem);
}
using temp. prefix's won't STORE the VARIABLE data.