Tutorials

The tutorials that I wrote, it's mainly technical things. So, feel free to check them out:

How to calculate the number of days between 2 dates in Python?
#python

How to calculate the number of days between 2 dates in Python?

If you want to calculate the number of days between 2 dates in Python, read this article.

How to flatten an array in JavaScript?
#javascript

How to flatten an array in JavaScript?

If you have an array which is containing many more arrays, read the article to learn how to flat it.

Divide a list in half using Python.
#python

Divide a list in half using Python.

Divide a list into two pieces using Python.

How to remove the last character of a string in Python?
#python

How to remove the last character of a string in Python?

Learn to remove the last character of a string in Python.

How to remove the first character of a string in Python?
#python

How to remove the first character of a string in Python?

Learn to remove the first character of a string in Python.

Check if a value exists in an array using Javascript.
#javascript

Check if a value exists in an array using Javascript.

In this article, I will show you the 2 ways for checking if a value exists in an array.

How to create a clock using JavaScript?
#javascript

How to create a clock using JavaScript?

Create a clock easily using JavaScript.

5 array methods in JavaScript.
#javascript

5 array methods in JavaScript.

Arrays are used to store multiple values in a single variable, and here's 5 methods for them.

5 string methods in JavaScript.
#javascript

5 string methods in JavaScript.

Strings are useful for holding data that can be represented in text form, and here's 5 methods for them.

8 useful console methods in JavaScript.
#javascript

8 useful console methods in JavaScript.

Console object has many useful methods, and here's eight of them.

Top 5 code editors for web development.
#untagged

Top 5 code editors for web development.

In this article, I will show you the top 5 code editors for web development.

How to Center in CSS with flex?
#css #flexbox

How to Center in CSS with flex?

An easy way to center items using flexbox in CSS.

How to remove duplicate words from an array in JavaScript?
#javascript

How to remove duplicate words from an array in JavaScript?

In this article, you will learn how to remove duplicate words from an array in JavaScript.

Should you store the passwords in the database?
#security #databases

Should you store the passwords in the database?

Learn how to avoid storing passwords in the database.