Skip to content

Instantly share code, notes, and snippets.

@alexandervasyuk
Created October 6, 2014 23:54
Show Gist options
  • Save alexandervasyuk/71b8ea18961a9ad5f832 to your computer and use it in GitHub Desktop.
Save alexandervasyuk/71b8ea18961a9ad5f832 to your computer and use it in GitHub Desktop.
var evaluate = function(node) {
var token = node.data;
if (token instanceof Operator) {
return token.applyFunction(evaluate(node.left), evaluate(node.right));
} else {
return node.data;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment