You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure if that really should qualify as a valid expression, since it is missing an explicit operator. But I don't have another hard argument against adding this convenience right now since it is what (we lazy) humans may like to do.
import ShuntingYard from "shunting-yard.js"
const shuntingYard = new ShuntingYard();
console.log(shuntingYard.resolve("4(6)"))
The operation listed above return
4
instead of an expected24
I can actually work on this
The text was updated successfully, but these errors were encountered: