我想转此
function sum(a, b) {
return a + b;
}
module.exports = sum;
进入es6。我有babel预设2015但当我尝试运行以下代码时仍然出现错误:
export default sum(a, b) => {
return a + b;
}
我的es6功能和导出有什么问题?
答案 0 :(得分:1)
它可能是
c.customerid = o.customerid
或
select customerid from Customers as c where not exists(
select customerid from Customers as c2 where c2.customerid < c.customerid)
你也可以在这里试试:https://babeljs.io/repl,并查看已编译的代码。