1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
x=1;
x1=1; //12
x2=1; //12
x3=1; // 12
x4=1; // 12
x5=1; //[1:12]
x6=1; //[1:2:12]
x7=1; //[1:12
x8=1; //[1 12]
x9=1; //[1:12] //[12:34]
x10=1; //
x11=1; //
x12=1; //[12]
x13=10; // [10:Small, 20:Medium, 30:Large]
x13a=10; // [10:Small, 20: 34 Medium, 30:Large 12]
x14=10; //[10:100, 20:101, 30:102]
x15=10; //parameter
x16=10; //[0, 1, 2, 3]
x17="text"; // parameter
x18="text"; //[foo, bar, baz]
x19="text"; //[0:text, 1:foo, 2:bar, 3:hello]
x20="text"; //[foo:10, bar:10, baz:30]
x21="text"; //[foo:yes, bar:no, baz:mgiht]
x22=[12,34]; //[23,4]
x23=[12,34]; //[23,4,23,4,45]
x24=[12,34,2,3,41,23]; //[23,4,2,3,4,6]
x25=12; x26="text"; //[1:34]
x27=12; //end parameter
x28=-12;
x29=!1;
x30=["new","secon"];
x31=["new","second"]; //[new,second]
x32=["new","second"]; //["new",second]
|