Javascript examples for jQuery:Array
Remove an array object item in javascript
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(window).load(function(){//from w w w . j a v a2 s . c o m var array = [{ id: 1, name: 'test' }, { id: 2, name: 'test2' }]; array.forEach(function(arr, i) { delete array[i].id; }); console.log(array); }); </script> </head> <body> </body> </html>