You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
number 형태의 key를 가지고 있는 경우, 해당 숫자의 크기 오름차순으로 array 구성
string type의 경우 각각의 단어가 array 형태로 제공
constobj={x: 'xxx',y: 1};Object.values(obj);// ['xxx', 1]constobj=['e','s','8'];// same as { 0: 'e', 1: 's', 2: '8' };Object.values(obj);// ['e', 's', '8']// when we use numeric keys, the values returned in a numerical // order according to the keysconstobj={10: 'xxx',1: 'yyy',3: 'zzz'};Object.values(obj);// ['yyy', 'zzz', 'xxx']Object.values('es8');// ['e', 's', '8']
Object.entries
Object.key, Object.values 처럼 [key, value]를 array 한쌍으로 제공