DEV Community

Discussion on: What’s your favorite JS interview question?

Collapse
 
not_jffrydsr profile image
@nobody

What's difference between this


kung.prototype.fu = function() { juli.do_the_thing(); 
}

and this


class kung {

  fu() { 
   do_the_thing(juli);
    }
 }