(this is only a POC / test / example)
{
"operation": "+",
"operands": [
1, 2, {"operation": "*", "operands": [3, 4]}
]
}
Result: 15
Explanation: this Json represents the expression: 1 + 2 + (3 * 4)
npm start
See also:
(this is only a POC / test / example)
{
"operation": "+",
"operands": [
1, 2, {"operation": "*", "operands": [3, 4]}
]
}
Result: 15
Explanation: this Json represents the expression: 1 + 2 + (3 * 4)
npm start
See also: