Xóa một phần tử trong mảng myArray có trường field = value

myArray = myArray.filter(function( obj ) {
    return obj.field !== 'value';
});