How can I use js eval to return a value?

前端 未结 7 1502
死守一世寂寞
死守一世寂寞 2020-12-13 13:13

I need to evaluate a custom function passed from the server as a string. It\'s all part of a complicated json I get, but anyway, I seem to be needing something along the lin

相关标签:
7条回答
  • 2020-12-13 13:37

    In 2019 using Template Literals:

    var customJSfromServer = "2+2+2;"
    var evalValue = eval(`${customJSfromServer}`);
    alert(evalValue) ;// should be "6";
    
    0 讨论(0)
提交回复
热议问题