Flatiron Experience


Blog

Arrays in Java

There are two ways you can create an array in Java (Array and ArrayList). ArrayList is much more flexible since you are able to change the length of the array with methods that are acquired by importing ArrayList and Collections. We will first go over the Array before getting into the ArrayList.


Java OOP (classes and constructors)

We are going to cut to the chase and start off with how to create a class in Java. We are going to start off by creating a file called Fish.java. We are going to create our Object Oriented class in the Fish.java file and afterwards, create our Fish in our Main method in the Main file inside:


React (fetch vs axios)

Both fetch and axios are used to make a request to an api to get back some data from them. Although they are similiar, axios is the more advanced way of making requests to an api. I would say that the biggest difference between the two is that you get a Json response in axios, however, with fetch, you have to convert the data to Json.


Java OOP (this vs super)

In this post, I am going to cover two topics:


React Lifecycles

React lifecycles has three phases in which you can influence and monitor your React component.