array.entries()是entries函數怎麼使用中的內建函數,用來取得包含陣列每個索引的鍵和值對的新Array,以下我們來看entries函數的具體使用方法。
我們先來看看entries函數的基本語法
array.entries();
它會傳回索引陣列以及array.entries()函數將在其上運行的給定數組的值。
下面我們來看具體範例
array.entries()方法用於查找任何給定數組中每個索引的鍵和值對。
程式碼如下
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script type="text/javascript"> var array = ["php", "gfg", "Jhon"]; var iterator = array.entries(); console.log(iterator.next().value); console.log(iterator.next().value); console.log(iterator.next().value); </script> </body> </html>
執行效果如下:
#這篇文章到這裡就全部已經結束了,更多精彩內容大家可以追蹤php中文網的其他相關專欄教學! ! !
以上是entries函數怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!