#100daysofcode
Read more stories on Hashnode
Articles with this tag
Object.entries() is used for listing all key-value pairs in an object. It accepts an object as a argument, and returns an array enumerating the...
Here is a list of some useful git commands. Initialize empty Git repository git init Stage a file git add filepath Stage all files git add . Commit...
When building a website, it is important to consider the audience (users). There are different categories of people that have access to the internet...
It is easy to truncate a single-line text. white-space: nowrap; overflow: hidden; text-overflow: ellipsis; Multi-line Tuncation However,...
A library and a Framework are both reusable code written to solve problems. To know the difference between a Library and a Framework, we have to first...