Formulas with NodeJS

(this is only a POC / test / example)


Example:

{
	"operation": "+",
	"operands": [
		1, 2, {"operation": "*", "operands": [3, 4]}
	]
}

Result: 15

Explanation: this Json represents the expression: 1 + 2 + (3 * 4)


How to Run:

npm start



See also: