标签:this color es6语法 return tom style es5 console 引入
我们在日常开发中,如果我们使用es5则可以直接在浏览器里面写JavaScript脚本。一点问题也没有。
但是在写es6语法的JavaScript代码的时候,我们就需要引入babel翻译器了。
例如:
<script type="text/babel"> const person = { name: ‘tom‘, getName: function() { return setTimeout(() => this.name, 1000); } } console.log(person); </script>
标签:this color es6语法 return tom style es5 console 引入
原文地址:https://www.cnblogs.com/wanlibingfeng/p/9599401.html