How can I remove an object from an array? I wish to remove the object that includes name Kristian from someArray. For example:
Kristian
someArray
som
someArray = jQuery.grep(someArray , function (value) { return value.name != 'Kristian'; });