Author Archives: duplich

Read some smart stuff by: duplich

React Cheat Sheet

Inheriting Methods & Properties

When creating a new Class you can inherit and use the properties and methods from the parent Class with calling super(); in your constructor();

Class Human(){ constructor(){ this.race = "Human"; } printRace(){console.log(this.race)} } Class Person extends Human { constructor(){ this.name = "Jasmin"; super(); // <= this executes the initializaton of the parent methods and properties } printName(){ console.log(this.name) } me = new Person(); me.printName() // "Jasmin"…
SCRUM events and their meanings

SCRUM events and their meanings

Hello there, I bet you already heard of SCRUM / Agile development and you might wonder what kind of benefit it actually brings. Well, It…

Requirement Engineering

Requirement Engineering

Almost every potential client that came to me from the start of my career, had a great idea about how to make this world a…