Results for: "array"

Contents (122)

Hashmap: hashing, collisions and first functions
Hashmap: hashing, collisions and first functions

Today we are going to study some concepts closely related to hashmaps. The concepts we are going to see are…

read more
Introduction to REGEX - Regular Expression
Introduction to REGEX - Regular Expression

Today we are going to write about Regular Expressions known as regex or shortened  regexp, a very useful concept of…

read more
HTTP Cookies: how they work and how to use them
HTTP Cookies: how they work and how to use them

Today we are going to write about the way to store data in a browser, why websites use cookies and…

read more
The most popular Array Sorting Algorithms In PHP
The most popular Array Sorting Algorithms In PHP

There are many ways to sort an array in PHP, the easiest being to use the sort() function built into…

read more
How to clone objects in JavaScript
How to clone objects in JavaScript

Primitive and referenced values (objects) behave very differently when we want to make a copy of them. Primitive values Let's suppose a…

read more