Skip to content

Instantly share code, notes, and snippets.

@arn-e
Created September 20, 2012 20:18
Show Gist options
  • Save arn-e/3758100 to your computer and use it in GitHub Desktop.
Save arn-e/3758100 to your computer and use it in GitHub Desktop.
simple postfix
function simple_postfix(input){
val = input.split(' ');
return eval(val[0] + val[2] + val[1]);
}
console.log("Result is : " + simple_postfix("4 2 +"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment