args.setPromise(WinJS.UI.processAll().then(TodoList.init()));
The above statement throws me an exception that TodoList is undefined.Actually, TodoList.js is a Javascript file located in the js folder of the Metro App Blank Project along with default.js.I am calling the init() function of the TodoList js file.What is wrong here?