Using the JavaScript let Keyword Thumbnail

Using the JavaScript let Keyword

This tutorial will teach you how to declare a variable in JavaScript using the let keyword. A variable declared using let will respect the global, function, and block scopes. It also doesn't allow itself to be redeclared in the same scope. Read More...

Variables in PHP Thumbnail

Variables in PHP

This tutorial will take you through the basics of using variables in PHP. We will touch on using variable scopes, data types, naming conventions, and more. It is the perfect tutorial if you want to start learning how to code in PHP. Read More...

JavaScript delete Operator Thumbnail

JavaScript delete Operator

Learn how to use the delete operator in JavaScript. For example, you can use this operator to delete the properties of writeable objects. However, it doesn't instantly free up memory in JavaScript as it may in other programming languages. Read More...

Python Logical Operators Thumbnail

Python Logical Operators

In this tutorial, we will take you through each logical operator you can use in Python. A logical operator works based on the operands Boolean "true" or "false value. The operators are primarily used in conditional statements. Read More...

JavaScript Comma Operator Thumbnail

JavaScript Comma Operator

This guide will show you how to use the comma operator in JavaScript. This is a special operator that allows you to compound multiple expressions. The last expression in the chain will be the result that is returned. Read More...

Using the empty() Function in PHP Thumbnail

Using the empty() Function in PHP

In this tutorial, you will learn how to use the empty() function in PHP. This function checks whether a variable exists and has a valid value. This is useful for ensuring you have a valid value. It is especially useful when dealing with arrays. Read More...

How to use the PHP strlen() Function Thumbnail

How to use the PHP strlen() Function

This tutorial takes you through the basics of using the strlen function in a PHP script. The strlen function allows you to check the length of a given string. However, there are a few things you will need to be aware of. Read More...

JavaScript Ternary Operator Thumbnail

JavaScript Ternary Operator

In this tutorial, we will be showing you how to use the ternary operator within the JavaScript language. This conditional operator allows you to run an expression based on whether the specified condition is true or false. Read More...

JavaScript Bitwise Operators Thumbnail

JavaScript Bitwise Operators

In this tutorial, you will learn how to use bitwise operators in JavaScript. These operators allow you to modify numbers at a binary level. While dealing with binary can be overwhelming for beginners it is relatively straightforward to understand bitwise math. Read More...

JavaScript String Operators Thumbnail

JavaScript String Operators

In this tutorial, you will learn how to use string operators in JavaScript. String operators allow you to append one string to another. JavaScript will even attempt to convert non-strings to a string during concatenation. Read More...

JavaScript Logical Operators Thumbnail

JavaScript Logical Operators

In this guide, we will be showing you the various logical operators supported by JavaScript. A logical operator works based on the operands "true" or "false value. You can use these to inverse a logical result or check if multiple operands are true. Read More...

JavaScript Assignment Operators Thumbnail

JavaScript Assignment Operators

In this tutorial, you will learn how to use assignment operators in JavaScript. These operators are what allow you to assign a value to a variable. You can even adjust the value of a variable by performing various arithmetic. Read More...

JavaScript Arithmetic Operators Thumbnail

JavaScript Arithmetic Operators

In this guide, we walk you through the arithmetic operators supported by JavaScript. These operators allow you to modify any numerical value easily. Using arithmetic operators, you can easily perform most basic math within JS. Read More...

How to Redirect in PHP Thumbnail

How to Redirect in PHP

This tutorial takes you through the process of using PHP to redirect a user whenever they hit a specific URL. There are many reasons why you may want to redirect a user, such as changing domains or moving from HTTP to HTTPS. Read More...

How to Use the PHP header Function Thumbnail

How to Use the PHP header Function

This tutorial will take you through the basics of using the header function in PHP. You can use this function to set or alter HTTP headers within a PHP script. However, you will need to be aware of a few things before using the function. Read More...