-
How Long Does It Take To Learn Excel?
Excel is one of the most widely used programs in the world. A recent survey stated that approximately 2 out of 3 US companies still…
-
Do professional web developers use bootstrap?
Yes. Professional web developers do use bootstrap. They also use the tools and frameworks at their disposal that make the most sense for the project…
-
Should I learn PHP or React?
There is no right or wrong answer here. You need to consider what you are trying to build. PHP is great for back end programming…
-
Is Javascript enough to get a job?
Yes, but if Javascript is all you know then you will have limited opportunities. If you add HTML, and CSS to Javascript then you’re starting…
-
What is a stateless component in React?
Stateless components in React are components that don’t manage data. For example, a stateless component might render the same thing each time, like a logo…
-
Where should functions in function components go?
It is technically possible to define functions inside functional components as in the following example: The main issue with the above example is that myInsideFunction…
-
Conditional rendering in React
Conditional rendering is the act of showing/hiding your elements/components based on the state of your application. Just like in any framework/language this can be done…
-
onClick with a parameter in React
It can be difficult to understand just how to pass a parameter to a React function from an onClick call, and it can even be…
-
Injecting singletons into your React components
Sometimes you’ll need to use the singleton pattern in your applications and there is an easy way to inject these into your React components. This…
-
Where is this (default) prop coming from?
This post is just a quick refresher for the times when you might find yourself mystified as to where a component is getting a certain…