Can an array be removed from an object? For instance, suppose I have an object named response with an array inside it called items:
var response = { success: false, items:[] };
What is the method to remove 'items' from the response object?
Thanks