当前位置:网站首页>4.4 Eval function replaces function

4.4 Eval function replaces function

2022-06-21 08:16:00 LetsStudy

Document address :https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval

 

let text = 'hello world'
eval("!function x(){console.log(`${text}`)}()");
Function(!function x(){console.log(`${text}`)}()
)()
// The execution results of the above two statements are consistent ,eval Not recommended 

原网站

版权声明
本文为[LetsStudy]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202221501080581.html