How can I scope variables to have expressions with other variables in the same scope? I tried this but it doesn't work. I want c to equal b + 2
then I want to be able to get the result of any variable in the scope.
let scope = {
a: '= b + c',
b: 1,
c: 2
};
console.log(math.evaluate('a'), scope);