Jump to content
  • 0

Выборочное скрытие ключей объекта в цикле for in


freeneutron
 Share

Question

Скажите пожалуйста можно ли в JavaScript частично скрыть ключи объекта при переборе в цикле for in? Например, если есть объект:

a = {
a1:'a1',
b1:'b1',
b2:'b2'
}

, то мы можем как-то, желательно кроссбраузерно, поколдовать над ним, что бы циклы, на подобие:

for(i in a)console.log(i)

, пробегали только по элементам: i='b1', i='b2'и напрочь игнорировали бы элемент i='a1' ?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
желательно кроссбраузерно

сомневаюсь http://learn.javascript.ru/play/9qPgfb

var obj = {
prop1: 'some_value',
prop2: 'any_value'
};

Object.defineProperty( obj, 'prop1', {
enumerable: false
});

Object.keys( obj ).forEach( function( key ) {
alert( key );
});

IE<9, Opera<12, Safari<5.1.4

Edited by nerv
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy