Skip to content

Instantly share code, notes, and snippets.

@gotoweb
Created March 4, 2022 02:59
Show Gist options
  • Save gotoweb/4fb6ac56b64fa7335eae0c404e7534c5 to your computer and use it in GitHub Desktop.
Save gotoweb/4fb6ac56b64fa7335eae0c404e7534c5 to your computer and use it in GitHub Desktop.
const items = [
{
id: 7,
title: "수도 이전 공약",
desc: "부산을 대한민국의 수도로 지정하겠습니다!"
},
{
id: 3,
title: "개발자 임금 공약",
desc: "부산 근무 개발자들의 연봉을 2배로 올리겠습니다!"
}
]
items.find(item => item.id === 7) // id가 7번인 녀석만 골라내기
items.find(item => item.title === '개발자 임금 공약') // 제목이 '개발자 임금 공약'인 녀석만 골라내기
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment