I need at least such an atm function:
function ExampleClass() { } ExampleClass.prototype.__noSuchMethod__ = function() { console.log("No such method, maybe you should try reading the docs?"); } example = new ExampleClass(); example.eatPizza();
Is it not yet implemented in v8, or at least emulated differently?
Has anyone implemented such a feature in their projects?
thanks
source share