Skip to content
文章目录

箭头函数与普通函数区别

箭头函数

js
const fun = () => {
  console.log('test')
}