_c.keys
_c.keys
개요
예시
let arr = _c.keys;
for (let i = 0; i < arr.length; i++ ) {
// 반복문을 통해 현재 Collection에서 사용되는 키값에 접근할 수 있습니다.
if (arr[i] == 'UserName') {
...
}
}

Last updated
Was this helpful?
_c.keys
let arr = _c.keys;
for (let i = 0; i < arr.length; i++ ) {
// 반복문을 통해 현재 Collection에서 사용되는 키값에 접근할 수 있습니다.
if (arr[i] == 'UserName') {
...
}
}

Last updated
Was this helpful?
Was this helpful?