From 0f9e5e6dbf459b14c1da7f9202047a4ae8061686 Mon Sep 17 00:00:00 2001 From: Bruno Dulcetti Date: Sat, 6 Oct 2018 19:35:30 -0300 Subject: [PATCH 1/2] Add Dulcetti profile at README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 06ba005..34103f5 100644 --- a/README.md +++ b/README.md @@ -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 From 64acf712cd7fd324457ec1ad2e4dda94402846f2 Mon Sep 17 00:00:00 2001 From: Bruno Dulcetti Date: Sat, 6 Oct 2018 19:35:52 -0300 Subject: [PATCH 2/2] Add Hello World code example --- code/dulcetti.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 code/dulcetti.js diff --git a/code/dulcetti.js b/code/dulcetti.js new file mode 100644 index 0000000..7f98221 --- /dev/null +++ b/code/dulcetti.js @@ -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();