Skip to content

Instantly share code, notes, and snippets.

@davidroyer
Created March 20, 2019 16:58
Show Gist options
  • Save davidroyer/1d736667955d86de934bee9af7ea14ee to your computer and use it in GitHub Desktop.
Save davidroyer/1d736667955d86de934bee9af7ea14ee to your computer and use it in GitHub Desktop.
createCustomProgramList() {
const customProgramList = this.programs.map(program => {
if (program.tagNames.includes("Adult Education")) {
program.degree_level = "Adult Education";
}
return program;
});
return customProgramList;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment