@tomm
Slowly becoming a pro
I recently learned web development and now writing apps for a living.
Nothing here yet.
No blogs yet.
Function Declaration Function Declaration is creating a named function function foo ( ) { return "Hello" ; } Function Expression A Function Expression defines a function as a part of a larger expression syntax. Functions defined via Functions Expressions can be named or anonymous. //anonymous function expression var foo = function ( ) { return "foo" ; } //named function expression var bar = function bar ( ) { return "bar" ; } // named function expression using arrow functions var baz = () => { return "baz" }
Yes. TravisCI support all the databases like MySql, Sqlite3, PostgreSql, MariaDB, MongoDB, CouchDB. Databases are not started on boot. Add it to .travis.yml to start it: services: - mongodb Read more on Travis-CI docs
Yes, I think Universal/isomorphic apps will play a huge role in web app development. The key reason is that no body wants to miss SEO and hence server-side rendering is required, but we also want our apps to be superfast which can be achieved via client-side rendering. So if Universal apps offer both, why not roll with it! :)