摘要:一些ES6语法之对象与function函数

a = function(e){return e;}
var ff=(Object(a)(function(e){alert(e);return 2;})(d=1))

//Object(a)定义一个以a函数为原型的对象

//参数的传递过程:(d=1)将被传递到(function(e){alert(e);return 2;}),2被传递到Object(a)

链接:
https://www.keepnight.com/archives/138/