function test(){
this['fake'] = () =>{
console.log(arguments)
}
}
var a = new test('a');
a.fake('dummyArguments')
=> 'a'
function test(){
this['fake'] = function() {
console.log(arguments)
}
}
var a = new test('a');
a.fake('dummyArguments')
=> 'dummyArguments'