jouni-kantola / calculator

Calculate arithmetic expression string.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Calculator

Parse and evaluate arithmetic expression string.

Usage

Pass in infix expression.

node index "10^2+(5+5)*2"
# => 120

Test

npm test

Internals

Infix expression string is tokenized and then converted to postfix with shunting yard algorithm before evaluated.

About

Calculate arithmetic expression string.

License:MIT License


Languages

Language:JavaScript 100.0%