[심화] Filter - 섹터(Sector) Status, Condition
모든 컬렉션에서 원하는 섹터를 필터링해서 연결하거나 수집할 수 있습니다. 필터를 사용하는 방법이 알고 싶다면 이 페이지가 도움이 됩니다.
Last updated
Was this helpful?
모든 컬렉션에서 원하는 섹터를 필터링해서 연결하거나 수집할 수 있습니다. 필터를 사용하는 방법이 알고 싶다면 이 페이지가 도움이 됩니다.
Last updated
Was this helpful?
Was this helpful?
//if 문을생략하고 조건을 넣음.
sector.orderCount > 0 || sector.orderCount == _c.activeSector.orderCount// 직접 조건에 따른 return 을 해주는 경우
for(...) {
if(...) {
return true;
}
}
return false;