I\'m learning to use object literals in JS, and I\'m trying to get a function inside an object to run by calling it through another function in the same object. Why isn\'t t
That code is only a declaration. You need to actually call the function:
runApp.init();
Demo: http://jsfiddle.net/mattball/s6MJ5/