app.get(name)
Returns the value of name app setting, where name is one of the strings in the
app settings table. For example:
app.get('title');
// => undefined
app.set('title', 'My Site');
app.get('title');
// => "My Site" Returns the value of name app setting, where name is one of the strings in the
app settings table. For example:
app.get('title');
// => undefined
app.set('title', 'My Site');
app.get('title');
// => "My Site"