var arr = ['one' , 'two' , 'three'];
var x;

for(x of arr)
{
    console.log(x);
}