Diziyi küçülttüğümde, sıfır sayısını elde etmeye çalışıyorum, ancak fonksiyonun davranışını net olarak anlamıyorum
[].reduce(function(previousValue, currentValue){
return Number(previousValue) + Number(currentValue);
});
sonuç
TypeError: Reduce of empty array with no initial value
Görünüşe göre dizi boşsa onu azaltamam
[""].reduce(function(previousValue, currentValue){
return Number(previousValue) + Number(currentValue);
});
sonuç
""
Dizideki tek öğe boş bir dizeyse, boş bir dize alır