Skip to content

Instantly share code, notes, and snippets.

@mhingston
Created October 14, 2016 10:54
Show Gist options
  • Save mhingston/0905ec8a396fc16944b358d4edbe2d82 to your computer and use it in GitHub Desktop.
Save mhingston/0905ec8a396fc16944b358d4edbe2d82 to your computer and use it in GitHub Desktop.
Calculate without eval
const calculate = (expression) =>
{
return new Function(`return ${expression}`)();
}
calculate('1+2/3*4')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment