我在這裏有一個數據集合,您可以在下面看到。 我想要的是獲得那個element
的index
,它在數組中具有唯一值。查找在數組中沒有任何重複的元素索引
var setArray = [ false, true, false, false ]
// Sample result will be 1, the index of unique value in array is true
// and has a index of 1
// code here to get the index...
我該如何解決這個問題?
是值只有永遠會是真的還是假的? – CBroe
請添加更多用例以及您嘗試的內容。 –
嘿約翰,檢查我的答案,應該是你正在尋找的。 :) –