ChrisB: Arrays

Beitrag lesen

Hi,

Reicht es aus, wenn mann dies so schreiben würde?

var InPr = new Array;
   InPr.push(0.0, 85.0);
   InPr.push(10.0, 87.4);
   InPr.push(20.0, 90.0);
   InPr.push(30.0, 91.);
   InPr.push(40.0, 93.5);
   InPr.push(50.0, 94.1);

  
Nein, das würde die Werte alle nacheinander in InPr einfügen, so dass du nur ein „ein-dimensionales“ Array erhältst.  
  
Wenn du Arrays in dein Array pushen willst – dann musst du diese Arrays selber erst mal erzeugen.  
  
MfG ChrisB  
  

-- 
Autocomplete has spoiled me to a point where it happens every so often that I encounter a CAPTCHA, and I just type in the first character … and then wait for the rest of the code to be automatically suggested :/