Merge pull request #207 from dulcetti/feature/add-dulcetti

Feature/add dulcetti
This commit is contained in:
Luke Oliff 2018-10-08 08:37:47 -07:00 committed by GitHub
commit 674e5b88e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View File

@ -245,6 +245,11 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU
- [![github-alt][github-img]](https://github.com/TheByteStuff )
[![twitter-alt][twitter-img]](https://twitter.com/thebytestuff)
### Bruno Dulcetti
- I'm a Front-End developer and work with React, React Native, Angular, AngularJS, ES6, CSS3, HTML5, UX and others technologies.
- [![github-alt][github-img]](https://github.com/dulcetti )
[![twitter-alt][twitter-img]](https://twitter.com/dulcetti)
# C
### Celso Uliana

18
code/dulcetti.js Normal file
View File

@ -0,0 +1,18 @@
class Beer {
constructor(name = 'Dulcetti', beerName = 'Karmeliet') {
this.name = name;
this.beerName = beerName;
}
sayHello() {
console.info(`Hello, ${ this.name }. Do you wanna a ${ this.beerName }?`)
}
}
// Hello with modified infos
const myInfos = new Beer('Bruno', 'Duvel');
myInfos.sayHello();
// Hello with default infos
const defaultBeer = new Beer();
defaultBeer.sayHello();