jquery Programming Glossary: publicapi
Simple javascript inheritance using $.extend and module pattern http://stackoverflow.com/questions/16659326/simple-javascript-inheritance-using-extend-and-module-pattern Risk possible wag of the finger from Doug Crockford Consider this just run in any js console var Animal function var publicApi Name 'Generic' IsAnimal true AnimalHello animalHello GetHelloCount getHelloCount var helloCount 0 function animalHello helloCount.. true AnimalHello animalHello GetHelloCount getHelloCount var helloCount 0 function animalHello helloCount console.log publicApi.Name ' says hello animalHello ' function getHelloCount callback callback.call helloCount return publicApi var Sheep function.. console.log publicApi.Name ' says hello animalHello ' function getHelloCount callback callback.call helloCount return publicApi var Sheep function name var publicApi Name name 'Woolie' IsSheep true SheepHello sheepHello function sheepHello publicApi.AnimalHello..
|