Basic array operations in swift

Basic array operations in swift

In SWIFT, An array is a collection of data of a similar type. As a Swift developer, most of the time, you will interact with arrays, and hence it's necessary to know the most used swift operations/methods. Note: Like most of the other programming languages, the array...

Bubble Sort in Swift

Bubble Sort in Swift

The Bubble sort algorithm is one of the simplest sorting algorithms, but it is also one of the most inefficient for large data sets because it does not take advantage of any form of caching or parallelism. It is used by starting at the beginning of an array and...

Modules in NodeJS

Modules in NodeJS

The Node.js ecosystem is huge, and it's hard to keep up with everything. Modules are a great way to organize your projects and share code across projects. In a nutshell, modules are self-contained units of program or functionality that can be shared or reused across...

Create a Transparent Gradient in photoshop

Create a Transparent Gradient in photoshop

In this article, I’ll show you how to create and modify a transparent gradient in Photoshop. A transparent gradient is a great effect for photographers and graphic designers. You can use it to fade a photo into the background or any other photo/image, for masking, and...

LET vs VAR in swift

LET vs VAR in swift

let, and var are the swift keywords used to make the variables. let is used to create immutable variables, whereas var is used to create a mutable variable. The significant difference between let and var is that when you create an immutable variable called a...