javascript - How to add method to existing object in Coffeescript? -



javascript - How to add method to existing object in Coffeescript? -

lets object created function:

myobject = somefunction();

so now, myobject object.

how add together new method object? next not work in coffeescript:

myobject.newmethod: (something) -> # stuff here

i not able edit object definition in somefunction(), have add together method object after fact. proper syntax here?

it myobject.newmethod = (something) ->.

you utilize colon when declaring property, , assignment operator when assigning property. time declare property, when object beingness created. true in javascript.

var myobject = {foo: 'bar'}; myobject.baz = 'quux';

the best practice not modify objects don't own (somefunction owns object). should instead create function takes kind of object argument.

javascript coffeescript

Comments

Popular posts from this blog

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -