function f() {
    var FileSize = "250";
    var Ana = new Array;
    Ana["231.78"] = "2.14";
    Ana["234.95"] = "2.11";
    Ana["238.12"] = "2.08";
    Ana["241.30"] = "2.05";
    Ana["244.47"] = "2.02";
    Ana["250.82"] = "1.97";
    Ana["254.00"] = "1.95";
}
f();
I don't know how to write my request. I have a value (250) and need to test the Array until the ID of my Array is less than my "FileSize". In my example, the result should be 1.97.
 
     
    