<script>
// 箭头函数的定义方式:
// 1.定义函数的方式:function
const aaa=function(){
}
// 2.对象字面量中定义函数
const obj={
bbb:function(){
}
}
// 3.ES6中的箭头函数
// const ccc=(参数列表)=>{
// }
const ccc=()=>{
}
</script>
标签:function,const,函数,箭头,ccc,定义
来源: https://www.cnblogs.com/jimyking/p/14880870.html