I have a basic Chrome App that I'm building that constructs strings like this:
"1 + 4 - 3 + -2"
Seeing as you can't use eval()
in Chrome Apps, how can I get the answer to a string like so?
eg. If this was just a normal webpage I would use something like this:
var question = {
text: "1 + 4 - 3 + -2",
answer: eval(this.text)
}
Is there any possible way of replacing eval()
with something else to answer a string like question.text
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…