☠️IEで「オブジェクトは 'find' プロパティまたはメソッドをサポートしていません。」と言われたとき2020/10/30に公開1件JavaScriptIEtecharray.find() は対応していなかったので、 array.filter(function (x) { return x.Id === e })[0]; で対応した 参考:javascript — 「オブジェクトはIE」のプロパティまたはメソッド「find」をサポートしていません Discussionstandard software2020/11/03findIndex や find を作るのは難しくないですよ。 https://github.com/standard-software/partsjs/blob/master/source/array/array_common.js#L279 ポリフィル入れるのもいいかも。 https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Array/find
standard software2020/11/03findIndex や find を作るのは難しくないですよ。 https://github.com/standard-software/partsjs/blob/master/source/array/array_common.js#L279 ポリフィル入れるのもいいかも。 https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Array/find
Discussion
findIndex や find を作るのは難しくないですよ。
ポリフィル入れるのもいいかも。