Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@iMerica
Last active July 30, 2018 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iMerica/de2bff689e082cfa8de13cfa90f7e319 to your computer and use it in GitHub Desktop.
Save iMerica/de2bff689e082cfa8de13cfa90f7e319 to your computer and use it in GitHub Desktop.
Work At A Startup Job Filter
const findJobs = (remote, min_salary) => {
return window.TOP_LEVEL_PROPS.companies.filter(
company => company.jobs.filter(
job => ((job.remote_ok === remote) && (job.salary_max >= min_salary))
).length > 0
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment