Help for this page

Select Code to Download


  1. or download this
    meth = "name"
    obj.meth()
    
  2. or download this
    > obj = { name : function () {return "called" } }
    Object { name: name() }
    ...
    "name"
    > obj[meth]()
    "called"