array.reduceright()是javascript中的內建函數,用於將給定數組的元素從右向左轉換為單一值。所以下面我們就來看看reduceRight函數的具體使用方法。
我們來看看reduceRight函數基本語法
array.reduceRight(previousValue, currentValue)
兩個參數previousValue和currentValue,它們表示給定輸入數組的上一個和當前元素。
下面我們來看兩個具體的範例
範例1:
程式碼如下
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script> const A = [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8 ] ]; a = A.reduceRight((previousValue, currentValue) => previousValue.concat(currentValue)); document.write(a); </script> </body> </html>
輸出結果為:7,8,4,5 ,6,1,2,3
例2:
#程式碼如下
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script> const A = [ [ 1, 2, 3 ], [ "a", "b", "c" ], [ 7, 8 ] ]; a = A.reduceRight((previousValue, currentValue) => previousValue.concat(currentValue)); document.write(a); </script> </body> </html>
輸出結果為:7,8,a,b,c,1,2, 3
這篇文章到這裡就已經全部結束了,更多精彩內容大家可以關注php中文網的其他相關欄位教學! ! !
以上是reduceRight函數怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!