app.get(name)
Returns the value of name
app setting, where name
is one of strings in the app settings table. For example:
1 2 3 4 5 6 | app.get( 'title' ); // => undefined app.set( 'title' , 'My Site' ); app.get( 'title' ); // => "My Site" |
app.get(name)
Returns the value of name
app setting, where name
is one of strings in the app settings table. For example:
1 2 3 4 5 6 | app.get( 'title' ); // => undefined app.set( 'title' , 'My Site' ); app.get( 'title' ); // => "My Site" |
Designed by : w10schools
service@w10schools.com
Please login to continue.