您可以使用indexOf()方法來查找特定元素在pel數組中的位置或索引。
例如,如果您想要查找元素"apple"在pel數組中的位置,可以使用以下代碼:
var pel = ["banana", "apple", "orange", "grape"];
var index = pel.indexOf("apple");
console.log(index); // 輸出結果為 1,表示"apple"在數組中的位置為1
如果pel數組中不存在要查找的元素,indexOf()方法將返回-1。