Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6170423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:02:01+00:00 2026-05-23T23:02:01+00:00

My Object How to remove keys like UserID, UserName from it… i mean selected

  • 0

My Object

How to remove keys like UserID, UserName from it… i mean selected keys… delete operator is not working in my case.

for (i=0 i <obj.length; i ++) {
    delete obj[i]['keyName']; 
}

The above does not work, neither throws an error. Any other way…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T23:02:03+00:00Added an answer on May 23, 2026 at 11:02 pm

    How about this solution….

    Array.prototype.containsValue = function (value) {
            for (var k in this) {
                if (!this.hasOwnProperty(k)) {
                    continue;
                } //skip inherited properties
                if (this[k] == value) {
                    return true;
                }
            }
            return false;
        };
    
    for (var key in Object) {
        var unwantedKeys = ['UserName', 'UserID'];
        if (unwantedKeys.containsValue(key)) continue;
        // Play with your Object it won't contain these unwanted keys.
    }
    

    Delete should work, i am not sure about the mistake you are doing..

    http://jsfiddle.net/spechackers/43hTD/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to remove the dbo prefix from the Object Explorer so I can
I would like to take an object and remove some methods from it. i.e.
Why isn't Collection.remove(Object o) generic? Seems like Collection<E> could have boolean remove(E o); Then,
I am trying to remove an object from the parent environment. rm_obj <- function(obj){
I have a vector of pointers to objects. I'd like to remove objects from
I'd like to remove certain members of an object (for the sake of argument,
Repository pattern is used to abstract from particular database and object-relation-mapping technology(like EF) used.
Is there any way to manually remove an object which the garbage collection refuses
I have an datetime object that I want to remove one hour to display
I want to remove all null properties in a generic object. It doesn't have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.