var arrayList = new Array(); arrayList.push(1); arrayList.push(2); arrayList.push(3); arrayList.push(4);"/> var arrayList = new Array(); arrayList.push(1); arrayList.push(2); arrayList.push(3); arrayList.push(4);">
Home > Article > Web Front-end > Regarding the problem that the find method in Js does not support IE
Recently, I encountered a JavaScript problem during front-end development.
<script type="text/javascript"> var arrayList = new Array(); arrayList.push(1); arrayList.push(2); arrayList.push(3); arrayList.push(4); arrayList.find(function (val) { if (val == 4) { console.log('This is a test'); } }); </script>
Using Chrome and Firefox, the running results are normal. However, the error "The object does not support the find attribute or method" did appear in IE.
After reading the official document, I found that it does not support IE.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find
The above is the detailed content of Regarding the problem that the find method in Js does not support IE. For more information, please follow other related articles on the PHP Chinese website!