|
|
|
|
|
by olamide203
1397 days ago
|
|
Nice tip, i'm planning to add an identifier node class so that you can pass a scope with the values to be used during evaluation.
Eg. const a = 2;
const b = 6;
const c = 3
const expression = new Expression('a \ b * c')
const result = expression.scope({a, b, c}).evaluate();
document.getElementById("app").innerHTML `${a} \ ${b} *
${c}= ${result}`
|
|