Skip to content

Instantly share code, notes, and snippets.

@m-yahya
Created April 28, 2021 15:17
Show Gist options
  • Save m-yahya/1c198d6e458444db1afca80ac505d111 to your computer and use it in GitHub Desktop.
Save m-yahya/1c198d6e458444db1afca80ac505d111 to your computer and use it in GitHub Desktop.
Tutorial: Nested UI from JSON data and Tree view
// evaluate expressions
const createList = (items) => {
switch ($.type(items)) {
case "object":
getItems(items);
break;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment