Category : JavaScript

How to Convert Hex Colors to RGB

How to Convert Hex Colors to RGB

Before we start to write code and convert our colors, we need to understand both systems’ notations, so let’s begin! Hex Color Notation For Hex colors, we have the following pattern: RRGGBB where RR represents red color, GG green color, […]

Category : JavaScript

Is everything an object in JavaScript?

Is everything an object in JavaScript?

You probably heard at least once this assertion “In JavaScript, everything is an object”. There are some reasons for this statement, but in fact, this statement is a misconception. The truth is that most of the values in JavaScript can […]