class Innocow { getDescription() { return "We are " + "experts at parts of " + "the web experience " + "that you don't see."; } getExpertise() { var technologies = [ "web-applications", "web-architecture", "php", "laravel-symfony-zend", "wordpress", "javascript", "linux", "lamp-stack", "sql-nosql", "devops", "backend", "fullstack" ]; var t = technologies[ Math.floor( Math.random() * technologies.length ) ]; return t + " and others!"; } /** * Store email so cannot be * spam parsed by spiders. */ contactUs() { var user = "hello"; var domain = "innocow.com"; return( `${user}@${domain}` ); } } i = new Innocow; console.log( i.getDescription() ); console.log( i.getExpertise() ); console.log( i.contactUs() );