Skip to content

Instantly share code, notes, and snippets.

@rishabhjain9191
Last active May 11, 2018 05:03
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 rishabhjain9191/f2d73d9fe279e4d34ac2776db9c15409 to your computer and use it in GitHub Desktop.
Save rishabhjain9191/f2d73d9fe279e4d34ac2776db9c15409 to your computer and use it in GitHub Desktop.
const decisionTree = {
DRINKS: {
ALCOHOLIC: {
PREFREENCES: {
WINE: {
DRINK_NAME: NULL,
},
BEER: {
DRINK_NAME: NULL,
}
}
},
NON_ALCOHOLIC: {
PREFREENCES: {
MOCKTAILS: {
DRINK_NAME: NULL,
},
SOUP: {
SOUP_NAME: NULL,
}
}
},
},
MAIN_COURSE: {
PREFERENCES: {
CHINESE: {
DISH_NAME: NULL,
},
MEXICAN: {
DISH_NAME: NULL,
},
},
},
DESERTS,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment