Blog

  • C++ Programming: Code Examples, Tutorials, and Problem Solving

    C++ Programming: Code Examples, Tutorials, and Problem Solving

    These sources offer a comprehensive introduction to C++ programming concepts for beginners. They cover fundamental topics like setting up the development environment, understanding variables, data types, operators, and control flow statements like ‘if-else,’ loops, and switch cases. The sources also discuss functions, including function overloading and recursion, illustrating how to build practical applications such as a calculator, a BMI calculator, and games. Additionally, there’s exploration of drawing shapes and the use of loops for generating multiplication tables, providing hands-on examples to reinforce learning. Finally, generics and templates are introduced to highlight programming best practices and how to improve code reusability.

    C++ Fundamentals Study Guide

    Quiz

    1. What is the purpose of the ASCII table? The ASCII table provides a numeric representation for characters, allowing computers to distinguish between letters, numbers, and symbols by assigning each a unique numerical code. This enables computers to process and store text.

    2. How many characters can ASCII represent, and why is this sometimes a limitation? Standard ASCII can represent 128 characters because it uses 7 bits per character. This is a limitation because it is sufficient for English characters but doesn’t include the characters needed to represent many other languages.

    3. Explain the difference between char and int data types in the context of ASCII representation. A char data type stores a single character, while an int data type stores an integer number. In the context of ASCII, a char variable can hold a character, and an int variable can hold the corresponding ASCII code of that character, allowing conversions between them using casting operators.

    4. What is a casting operator, and how is it used to convert between characters and their ASCII values? A casting operator is a way to explicitly convert one data type into another. In C++, you can use (int)character to get the ASCII value of a character or (char)number to get the character represented by an ASCII number.

    5. Describe the purpose of the modulo operator (%) and give an example of its use. The modulo operator (%) returns the remainder of a division. For example, 5 % 2 equals 1, because 5 divided by 2 is 2 with a remainder of 1.

    6. Explain how the modulo operator can be used to determine if a number is even or odd. If a number modulo 2 equals 0, the number is even; if it equals 1, the number is odd. This is because even numbers are perfectly divisible by 2, leaving no remainder, while odd numbers leave a remainder of 1.

    7. What is the difference between the = operator and the == operator in C++? The = operator is the assignment operator, used to assign a value to a variable (e.g., x = 5). The == operator is the equality operator, used to compare two values for equality (e.g., x == 5).

    8. What is the difference between pre-increment (++x) and post-increment (x++) operators? The pre-increment operator (++x) increments the variable’s value before it is used in the expression, while the post-increment operator (x++) increments the variable’s value after it has been used in the expression. For example, if x is 5, y = ++x will result in x being 6 and y being 6, but y = x++ will result in x being 6 and y being 5.

    9. Name three relational operators in C++ and provide an example of how they are used. Three relational operators in C++ are:

    • < (less than): if (a < b)
    • > (greater than): if (x > y)
    • == (equal to): if (num == 10)

    10. Explain the purpose of the break statement in a switch statement. The break statement terminates the execution of the current case in a switch statement and transfers control to the statement immediately following the switch block. Without a break statement, execution would “fall through” to the next case, even if its condition is not met.

    Essay Questions

    1. Discuss the importance of understanding the underlying numeric representation of characters (like ASCII) when developing software applications. Give examples of situations where this knowledge could be crucial for solving a programming problem.
    2. Explain the concept of operator precedence in C++. Describe how different types of operators (arithmetic, relational, logical, assignment) interact within a complex expression, and how parentheses can be used to control the order of evaluation.
    3. Compare and contrast the while loop, the for loop, and the do-while loop in C++. Provide scenarios where one type of loop might be more appropriate than the others.
    4. Discuss the advantages of using functions in C++ programming. Explain how functions can improve code readability, reusability, and maintainability, and illustrate your points with examples.
    5. Explain the concept of object-oriented programming. Discuss the differences between classes and objects.

    Glossary

    • ASCII: (American Standard Code for Information Interchange) A character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications equipment, and other devices. Each character is assigned a unique number.
    • Casting Operator: An operator that converts a value from one data type to another. For example, converting an int to a char.
    • Modulo Operator (%): An arithmetic operator that returns the remainder of a division.
    • Variable: A named storage location in a computer’s memory that can hold a value.
    • Data Type: A classification of data that tells the compiler how the programmer intends to use the data. Examples include int, char, float, and bool.
    • Operator Precedence: The order in which different operators are evaluated in a complex expression.
    • Loop: A programming construct that repeats a block of code multiple times.
    • While Loop: A control flow statement that executes a block of code repeatedly as long as a specified condition is true.
    • For Loop: A control flow statement for specifying iteration, which allows code to be executed repeatedly.
    • Do-While Loop: A control flow statement similar to a while loop, except that its condition is tested at the end of the loop body, ensuring that the loop body is always executed at least once.
    • Function: A block of organized, reusable code that is used to perform a single, related action.
    • Return Type: Specifies the data type of the value that a function returns after its execution.
    • Parameter: A value that is passed into a function when it is called.
    • Arguments: The actual values passed to a function when it is invoked.
    • Object-Oriented Programming: A programming paradigm based on the concept of “objects”, which may contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods.
    • Classes: A blueprint for creating objects. It defines the attributes and methods that objects of that class will have.
    • Objects: An instance of a class. It is a concrete entity that has attributes and can perform methods.
    • Pointers: A variable that stores the memory address of another variable.
    • Void Pointers: Pointers that can point to any data type. They are useful for generic programming.
    • Recursion: A method of solving a problem where the solution depends on solutions to smaller instances of the same problem.

    C++ Programming Fundamentals: A Comprehensive Guide

    Okay, here’s a briefing document summarizing the key themes and ideas from the provided source “01.pdf”:

    Briefing Document: C++ Programming Concepts

    Overview:

    The source material appears to be a C++ programming tutorial covering fundamental concepts, including ASCII representation of characters, casting, basic input/output, arithmetic operators, logical operators, assignment operators, conditional statements (if/else, switch), loops (while, for, do-while), functions (including recursion), pointers, and object-oriented programming principles. The material uses practical examples (e.g., building a cipher, determining even/odd numbers, calculating triangle types, drawing shapes) to illustrate these concepts.

    Main Themes & Ideas:

    • ASCII and Character Representation:
    • Characters in C++ are represented by numerical codes using the ASCII standard. The source highlights the difference between uppercase and lowercase letters having distinct ASCII values.
    • Quote: “each character has its numeric pair inside ask key table… lowercase letter a is 97… capital letter A… 65… computer can distinguish between lowercase and uppercase letters.”
    • Casting operators can be used to convert between characters and their corresponding ASCII integer values.
    • Quote: “you can get an idea on how you can build something more useful than than just basic hello world application so you can for example build a program that ciphers words and sentences in a s key.”
    • Basic Input and Output:
    • std::cout is used for outputting text and variable values to the console.
    • std::cin is used for reading input from the user.
    • The tutorial demonstrates how to chain cout and cin operators to input or output multiple variables in a single line.
    • Arithmetic, Relational, Logical, and Assignment Operators:
    • The source covers various operators including modulo (%), increment/decrement (++, –), relational operators (<, >, ==, !=, <=, >=), logical operators (&&, ||, !), and assignment operators (=, +=, -=, *=, /=, %=).
    • It explains the difference between pre-increment/decrement and post-increment/decrement.
    • Quote: “…this operator here gives you the remainder of dividing these two numbers…” (referring to modulo).
    • Operator precedence is briefly touched upon: arithmetic > relational > logical.
    • Conditional Statements (if/else, switch):
    • if and else statements are used to execute different code blocks based on a condition.
    • The tutorial shows how to nest if/else statements.
    • switch statements are used for multi-way branching based on the value of a variable. The break statement is essential to prevent fall-through to subsequent case labels.
    • Quote: “this break keyword is really used so that our switch case statement knows where our first case ends.”
    • Loops (while, for, do-while):
    • while loops execute a block of code repeatedly as long as a condition is true. The source emphasizes the importance of ensuring the loop condition eventually becomes false to avoid infinite loops.
    • for loops provide a concise way to iterate a specific number of times. Nested for loops are used to create patterns and shapes.
    • do-while loops are similar to while loops, but the code block is executed at least once before the condition is checked.
    • Functions:
    • Functions are reusable blocks of code that perform a specific task. The source covers defining functions, passing arguments, and returning values.
    • Quote: “…this main function here is much more clean than it was before…” (referring to using functions to improve code organization).
    • Recursion: The tutorial explains recursion where a function calls itself. A base case is crucial to prevent infinite recursion and stack overflow errors.
    • Pointers:
    • Pointers are variables that store memory addresses.
    • The & operator is used to get the address of a variable.
    • The * operator is used to declare a pointer and to dereference a pointer (access the value at the stored address).
    • Pointers must be of the same type as the variable they point to (with the exception of void pointers).
    • Quote: “your pointer has to be of the same type like the variable that it is pointing to”.
    • Void Pointers: These can point to variables of any data type but must be cast to a specific type before dereferencing.
    • Quote: “a void pointer is a special type of pointer that can hold the address of a variable of any other data type”.
    • Object-Oriented Programming (OOP):
    • The source briefly introduces OOP, stating that it allows representing real-life objects with their attributes and behaviors.
    • Classes and objects are mentioned as fundamental concepts.

    Illustrative Examples:

    • Cipher: Creating a program to convert words into ASCII codes and vice-versa.
    • Even/Odd Checker: Determining if a number is even or odd using the modulo operator.
    • Triangle Classifier: Determining if a triangle is equilateral, isosceles, or scalene based on side lengths.
    • Shape Drawing: Using nested loops to draw rectangle shapes.
    • Digit Counter: Counting the number of digits in a number using a while loop.
    • Pin Verification: A do-while loop is used to allow a user a limited number of attempts to enter a correct PIN.
    • Prime Number Checker: Creating a function to determine if a given number is a prime.
    • Summing Numbers with Recursion: Demonstrates a recursive function to sum a range of numbers.

    Key Quotes:

    • “each character has its numeric pair inside ask key table… lowercase letter a is 97… capital letter A… 65… computer can distinguish between lowercase and uppercase letters.”
    • “…this operator here gives you the remainder of dividing these two numbers…” (referring to modulo).
    • “this break keyword is really used so that our switch case statement knows where our first case ends.”
    • “…this main function here is much more clean than it was before…” (referring to using functions to improve code organization).
    • “a void pointer is a special type of pointer that can hold the address of a variable of any other data type”.
    • “your pointer has to be of the same type like the variable that it is pointing to”.

    Potential Use:

    This document can serve as a quick reference or study guide for individuals learning C++ programming, covering many of the essential building blocks of the language.

    Programming Concepts: Answering Common Questions

    FAQ on Programming Concepts

    • What is the ASCII key table, and how is it used to represent characters in a computer?
    • The ASCII (American Standard Code for Information Interchange) key table is a standard that assigns a unique numeric value to each character, including letters (uppercase and lowercase), numbers, and some special symbols. This allows computers to store and process text by representing characters as numbers. For example, ‘a’ is represented as 97 and ‘A’ is represented as 65.
    • How can you convert between characters and their corresponding ASCII values in C++?
    • In C++, you can convert a character to its ASCII value by using a casting operator, like int(character). Conversely, you can convert an ASCII value back to its character representation by using char(numericValue).
    • What is the modulo operator (%) used for, and how can it be applied to determine if a number is even or odd?
    • The modulo operator (%) returns the remainder of a division. For example, 5 % 2 equals 1 because 5 divided by 2 is 2 with a remainder of 1. To check if a number is even or odd, you can use the modulo operator with 2. If number % 2 equals 0, the number is even; otherwise, it’s odd.
    • What are increment and decrement operators in C++, and what is the difference between pre-increment/decrement and post-increment/decrement?
    • Increment (++) and decrement (–) operators are used to increase or decrease the value of a variable by 1, respectively. Pre-increment/decrement modifies the value of the variable before it is used in the expression, while post-increment/decrement modifies the value after it is used. For example, if counter = 7, ++counter would result in counter being 8, and the expression would evaluate to 8. Whereas counter++ would also increment counter to 8, but the expression would evaluate to 7.
    • What are relational and logical operators in C++, and how are they used?
    • Relational operators (e.g., <, >, <=, >=, ==, !=) compare the values of two operands and return a Boolean value (true or false) based on the relationship. Logical operators (AND &&, OR ||, NOT !) combine two or more conditions into a single condition. Relational operators are used to compare numerical and string values, while logical operators are used for flow control.
    • What is the purpose of a switch statement, and how does the break keyword work within it?
    • A switch statement is a control structure that allows you to execute different blocks of code based on the value of a variable. The break keyword is crucial because it terminates the execution of a case within the switch statement. Without break, the code will “fall through” to the next case, potentially executing unintended code.
    • What are loops used for in programming, and how do while, do-while, and for loops differ in C++?
    • Loops are used to execute a block of code multiple times. while loops execute as long as a specified condition is true, checking the condition before each execution. do-while loops are similar to while loops, but they execute the block of code at least once, checking the condition at the end of each execution. for loops are designed for executing a block of code a specific number of times, typically using a counter variable that is initialized, checked against a condition, and incremented/decremented in each iteration.
    • What are functions, and how do they contribute to code reusability and modularity?
    • Functions are self-contained blocks of code designed to perform a specific task. They accept input (parameters), process it, and may return a result. Functions promote code reusability by allowing you to use the same block of code multiple times without rewriting it. They also contribute to modularity by breaking down complex problems into smaller, manageable parts, making the code easier to understand, test, and maintain.

    Visual Studio: A Beginner’s Guide

    Here’s what the sources say about Visual Studio:

    • Visual Studio 2019 is a tool used for C++ programming.
    • It is an IDE (integrated development environment), meaning it has many options, including ones that are useful for beginners.
    • The Community version can be downloaded and used for free, and there are many tutorials available on YouTube that explain how to download and install it.
    • When Visual Studio is opened, recent projects are displayed on the left.
    • On the right, there is a menu with multiple options: checking out code from GitHub, opening an existing project, and creating a new project.
    • To create a new project, the project type must be defined. For beginners, a simple C++ console application is recommended.
    • A new window will appear where the project name, location, and solution name can be defined.
    • The solution is a group of projects. Large applications can be divided into smaller projects within the same solution to make them easier to maintain.
    • Visual Studio’s Solution Explorer displays the solution name and the projects inside it. If the Solution Explorer is not visible, it can be opened by going to View and selecting Solution Explorer.
    • When a project is created, default folders and files are created. Source code files are placed in the source files folder.
    • The part of Visual Studio where you write code is a text editor with different colors to indicate the purpose or role of the code.
    • To run code, you can click the green play button.
    • It automatically builds code when started from Visual Studio.

    C++ Data Types: Variables, Storage, and Overflow

    Here’s what the sources say about data types:

    • A variable is a container for a certain data type. You can put a whole number, character, decimal point number, or a Boolean value inside it.
    • In C++, you cannot put two different data types inside one variable. It is also not possible to change a data type of variables once it is created.
    • Here are some of the most basic data types in C++:
    • int: can hold negative whole numbers, zero, and positive whole numbers.
    • char: can store one character.
    • bool: can store a true or false value.
    • float: can store decimal point numbers.
    • double: can also store decimal numbers, but it can hold much more data than a float. Double is double the size of float. Float takes four bytes, while double takes eight.
    • unsigned int: If you want to use only positive integer numbers, there is a data type for that called unsigned int. Its size is the same as of int (four bytes or 32 bits). However, since it is unsigned, it does not use one bit for sign because the sign is by default plus. It uses all 32 bits to represent value and those values go from zero to 4 billion and something.
    • Each data type takes a certain space in memory. To determine how much memory each takes, you can use the sizeof operator.
    • bool uses one byte.
    • char uses one byte.
    • float uses four bytes.
    • double uses eight bytes.
    • Each data type also has a maximum amount of data that they can hold. If you put too much data inside a variable, it is going to overflow. This is called data type overflow.
    • The int data type has reserved words for the minimum and maximum amounts.
    • int_min is the minimal amount for int in C++.
    • int_max is the maximum amount for int in C++.
    • The unsigned int data type also has a reserved word for the maximum amount.
    • uint_max
    • If you divide two whole numbers, the result will also be represented as a whole number. If you want to show the real result, you have to make one of them a float or double.
    • The modulo operator gives you the remainder of dividing two whole numbers.

    Conditional Logic: Mastering If/Else Statements

    Here’s what the sources say about the “if/else” statement:

    • The if statement is used when a block of code should be executed conditionally. This means the code will execute only in a certain situation.
    • An else block can be added, which will be executed if the initial if block is not executed.

    An example task is to check if a number entered by a user is even or odd and write that out to the user.

    Here’s how the “if/else” statement would be structured in code for this task:

    1. Prompt the user to enter a whole number.
    2. Use cin command to store the user’s input as an integer in a variable called number.
    3. Use the modulo operator to determine whether the number the user entered is even or odd. The modulo operator gives the remainder of dividing two whole numbers.
    4. Use the if statement to check whether the number modulo 2 is equal to 0. The == operator is used to check equality.
    5. If the result is zero, the program should output to the user that the number is even.
    6. If the result is not zero, the else statement is used to output to the user that the number is odd.

    #include <iostream>

    using namespace std;

    int main() {

    int number;

    cout << “Please enter whole number” << endl;

    cin >> number;

    if (number % 2 == 0) {

    cout << “You have entered even number” << endl;

    } else {

    cout << “You have entered odd number” << endl;

    }

    cout << “Thanks bye” << endl;

    }

    Complex “if/else” Statements

    • “If/else” statements can be more complex.
    • If you are not familiar with “if/else” statements, it is recommended to first watch a video explaining the basics before moving on to the more complex uses.

    Consider a task where the user enters the lengths of a triangle’s sides (a, b, and c), and the program determines whether the triangle is equilateral, isosceles, or scalene:

    • An equilateral triangle has all three sides of the same length.
    • An isosceles triangle has two sides of the same length.
    • A scalene triangle has all three sides of different lengths.

    Here’s how the “if/else” statement could be structured in code for this task:

    1. Declare three float variables: a, b, and c.
    2. Prompt the user to enter the side lengths of the triangle.
    3. Use cin command to store the user’s input in the variables a, b, and c.
    4. Use an if statement to check if a is equal to b AND b is equal to c. The && operator is a logical end operator. The expression will be true only if both sides are true.
    5. If the result is true, output to the user that the triangle is equilateral.
    6. If the result is false, use an else statement and nest another if/else statement.
    7. Check if a is not equal to b AND a is not equal to c AND b is not equal to c. The != operator means “not equal to”.
    8. If the result is true, output to the user that the triangle is scalene.
    9. If the result is false, output to the user that the triangle is isosceles.

    #include <iostream>

    using namespace std;

    int main() {

    float a, b, c;

    cout << “Please enter a, b, and c” << endl;

    cin >> a >> b >> c;

    if (a == b && b == c) {

    cout << “equilateral triangle” << endl;

    } else {

    if (a != b && a != c && b != c) {

    cout << “scalene triangle” << endl;

    } else {

    cout << “isosceles triangle” << endl;

    }

    }

    }

    Understanding Loop Control Structures: For, While, and Do While

    Here’s what the sources say about loop control:

    • There are three types of loops: for loop, while loop, and do while loop.
    • for loop: Before the loop starts, you should know how many iterations that loop is going to make.
    • The syntax of the for loop is for (initial value of counter; condition; increment/decrement).
    • Inside the parentheses, you put three expressions:
    • Set the initial value of the counter variable.
    • Put the condition that your for loop is going to check each time that it wants to run a block of code. Before each iteration, it is going to check that condition.
    • A way for your counter value to come to that condition. You have to either increase or decrease your counter variable in order to reach that condition at a certain point, and then when that condition results as false, your for loop is not going to be executed anymore.
    • After the for loop parentheses, you put curly brackets in which you write out the code that is going to be executed in each iteration of your for loop.
    • while loop: With a while loop, you first check the condition, and then if that condition results as true, you can really proceed with executing your block of code that comes after your while.
    • do while loop: With a do while loop, you first execute a block of code and then check the condition. If the condition results as true, you go back and do one more iteration.
    • The syntax of the do while loop is do {code block} while (condition);.
    • The code inside the do block is executed at least once, regardless of whether the condition is true or false.

    Here’s an example of using the do while loop:

    int pin, usersPin, errorCounter = 0;

    do {

    cout << “Pin: ” << endl;

    cin >> pin;

    if (pin != usersPin) {

    errorCounter++;

    }

    } while (errorCounter < 3 && pin != usersPin);

    • break statement: The break keyword is used so that your switch case statement knows where your first case ends.
    • If you don’t put the break statement, you are going to get your program to behave unexpectedly.
    • When the program reaches the break keyword, the loop will stop.

    Nested Loops

    • Loops can be nested, meaning you can put a loop inside another loop.
    • An example of using nested loops is drawing a rectangle shape.
    • The outer loop controls the height of the rectangle.
    • The inner loop controls the width of the rectangle.

    C++ Function Guide: Creation, Parameters, and Overloading

    Here’s what the sources say about function creation:

    • A function is a block of code that is grouped together and performs a specific task. The code in the function is executed only when the function is called or invoked.
    • Every C++ program contains at least one function, the main function. The execution of the program begins on the first line of the main function and ends on the last line, or when a return statement is encountered.
    • Besides the main function, you can create your own functions.
    • Functions make your code reusable. You can write code to solve a problem once, put the code in a function, and then call the function many times.
    • Each function should perform a specific task. This makes the code easier to manage.

    How to create a function:

    1. Specify the return type of the function. If the function does not return a value, use the void return type.
    2. Write the name of the function.
    3. In parentheses, list any arguments or parameters that the function receives. The parentheses can be left empty if the function does not receive any arguments.
    4. In curly brackets, write the body of the function. This is the code that will be executed when the function is called.

    Here is an example:

    void function() {

    std::cout << “hello from function” << std::endl;

    }

    Function Declaration and Definition

    • The recommended way to create functions is to separate the declaration and the definition.
    • The declaration of a function tells the compiler the return type, name, and parameters of the function. The function declaration goes before the main function.
    • The definition of a function is the actual code that will be executed when the function is called. The definition goes after the main function.
    • To navigate to a function’s definition, right-click the name of the function and select “go to definition,” or press F12.

    Here is an example:

    #include <iostream>

    //Function declaration

    void myFunction();

    int main() {

    myFunction();

    return 0;

    }

    //Function definition

    void myFunction() {

    std::cout << “Function was executed!” << std::endl;

    }

    Function Parameters

    • Parameters are values that are passed to a function. Sometimes a function needs to receive a certain value or variable in order to perform a task.
    • To create a function that receives a parameter, specify the type and name of the parameter in the function’s parentheses.

    Here is an example:

    void introduceMe(std::string name)

    {

    std::cout << “My name is ” << name << std::endl;

    }

    • To pass multiple arguments to a function, use a comma to separate the arguments in the function’s parentheses.

    Here is an example:

    void introduceMe(std::string name, std::string city, int age)

    {

    std::cout << “My name is ” << name << std::endl;

    std::cout << “I am from ” << city << std::endl;

    std::cout << “I am ” << age << ” years old” <<std::endl;

    }

    • A default parameter is a parameter that has a default value. If a value is not passed for that parameter when the function is called, the default value will be used. To specify a default parameter, assign a value to the parameter in the function definition.

    Here is an example:

    void introduceMe(std::string name, std::string city, int age=0)

    {

    std::cout << “My name is ” << name << std::endl;

    std::cout << “I am from ” << city << std::endl;

    if (age != 0){

    std::cout << “I am ” << age << ” years old” <<std::endl;

    }

    }

    • Default arguments can only be specified at the end of the parameter list.

    Function Return Statements

    • The return type of a function can be any data type, including int, float, bool, char, or double. It can also be void, which means that the function does not return anything.
    • A function can return only one value. Only one return statement inside a function will be executed.
    • Not all functions need to return a value. An example of a function that does not return a value is a function that writes a menu to the user.
    • Functions that return a value can perform a calculation on arguments passed to the function and then return the result of that calculation.

    Function Overloading

    • Function overloading means that you can create multiple functions with the same name, but with different parameters.
    • When functions do the same thing but use different data types, you can use the same name as long as the parameters are different.
    • When a function is called, the compiler decides which function to call based on the data types of the arguments that are passed to it.
    C++ FULL COURSE For Beginners (Learn C++ in 10 hours)

    The Original Text

    hi everyone welcome to my channel my name is Salina I am a software engineer and I make programming and it related videos here on YouTube so if that is something that is of interest to you consider subscribing to my channel and this video is going to be allinone C++ full course for beginners and the goal of this video is to take you from that place where you are struggling with programming where you don’t understand how to read code or write code to a place where where you feel really comfortable writing code and reading code and you really understand what the code is doing because that is the most important part so this course consists of lectures where I will teach you a specific concept and then uh there will be a task and by solving that task you will get a good understanding of that specific concept and then the complexity of those tasks will gradually increase so that at the end of this video If you finish it you will have have a very good understanding of the most important programming Concepts not only in C++ but you will be able to take that knowledge with you to other programming languages as well and then uh at the end after you finish this course in the description I will leave directions for you on what should be your next step because I have created a road map with steps and directions so that if you follow those you will be able to build your programming knowledge to a very very high level but before we start I want to ask you one question and I feel extremely proud and happy that you decided to invest your time to learn programming and I can personally give you many reasons why that is a great decision but what I’m more interested in is what are your reasons why would you like to learn programming and be good at it is it because you are very creative person or you want to get a job and earn a lot of money or you want to gain those problem solving skills or because you think that programming is cool um so any other reason that you might have as well please write that in the comments down below and then uh make a public commitment before you start because that is something that will motivate you so um write I will learn programming because and then put your reason and hold yourself accountable so I am very much looking forward to reading your answer in the comments down below so without further Ado I will just roll the intro and let’s start with the [Music] video hi guys very warm welcome to everyone watching this video and this video is going to be introduction to C++ programming language and the first video of this course I was planning on dividing this video into two separate parts so that in the first part I’m going to explain some basic concepts some general concepts that are related to C++ and that you need to understand in my opinion first before starting to write code and then in the second part we are going to build our first C++ program so I’m going to include in the description of this video a time stamp so that you can navigate yourself to the coding part if you want but if you’re an absolute beginner I would recommend you to watch the entire video Let’s explain a couple of Concepts before we actually start to write codes so that you are familiar with them you may wonder what kind of applications you can build with C++ well C++ is general purpose language that means that it can be used to build all type of applications so uh it is very close to the hardware and that means that it can manipulate resources easily so you can build operating systems if you want with it you can build compilers browsers uh demanding games so all general purpose software can be built with C++ uh it is not specific for only one domain but it can be used to solve and build different types of applications uh after that I would like to mention that C++ is compiled language that means that the code that you write first has to be compiled or uh converted translated into another language that is understandable to your machine to your computer so that phase is called compiling code or building code there are certain errors that can occur in this phase of course and those are compile time errors uh this type of Errors is usually the most common among beginners among people who are just starting to learn C++ and we are going to demonstrate some of those compile time errors when we start uh coding after that C++ is case sensitive language that means that uh C++ distinguishes between lowercase and uppercase letters so if you have for example a variable all up uppercase and then a variable all lowercase so the same meaning the same word those two are going to be treated and and understood differently as different variables uh by C++ so it is case sensitive language why C++ was created another question because before it there were other programming languages uh well yes they were uh and it was created in 1980s uh and it was created with two programming languages in mind one of those two was simula uh and the other one was C so simula at the time was great language for human way of understanding and representing things so it was very understandable and easy to use to humans but at the same time it was very very slow so uh they decided to combine it with another programming language a fast one and at that time the best choice for that was C programming language so they combined did the two and they got C++ uh C++ is very very uh understandable language very easy to use by humans so you can build and maintain uh huge projects with C++ uh but at the same time because of this C part uh it is uh very close to the hardware so uh demanding tasks can be executed fast uh and also well since since it was created uh from C programming language you can say that any valid uh C program is actually valid C++ program so if you’ve ever built a c program you have actually built a C++ program already as I have already said the code that you write is not directly understandable to your machine so first it has to be converted into another language that is understandable to your computer but the one the language that is understandable to you is called source code I am going to put here an example of source code uh and I’m also one wondering at this moment what do you think that this code does so before we started any programming any coding at all what do you think that the result of this program is going to be so just to check how understandable C++ really is even for someone who has not have a lot of experience in coding so write in the comments of the video what you think that this code is going to do and I’m going to check those so at the same time you’re going to be doing uh something called writing pseudo code which means describing what a program does but just in plain English so no C++ so this is uh the source code after that that source code is transferred or uh translated into another form another language which is understandable to your computer and that is object code that object code is usually in the form of binary numbers so ones and zeros and that is the only language that your computer actually understand and this is an example of your uh machine language I’m also not going to ask anyone to describe what this here does because this is highly unreadable and cannot be understood by humans but uh as I said it is the only language that your machine understands so algorithm what is algorithm algorithm is nothing more than a recipe so steps instructions that you write to your computer list of ingredients and and steps that your computer needs to do in order to perform a certain task that’s algorithm now that we have understood these Concepts let’s switch to more practical part so the tool that we are going to use is called Visual Studio 2019 and there is a lot of tutorials on YouTube on how you can download and install the visual studio and you can also use Community version for free so uh when we open Visual Studio you can see that here in this left part we have our recent projects uh so the project that that I have recently created and this may be empty if you haven’t used your visual studio so on the other side there is a menu with multiple options you have uh the option to check out your code from GitHub here you can open existing project from your computer uh and continue working on that but the option that we are going to use is called create new project so we are going to click that so this new window now here appears and we are going to Define what kind of project we want as beginners we are going to build a very simple app so we are going to build a C++ console application so you can type in a C++ and make sure to select C++ console application so not c not Visual Basic but C++ and when you clicked it you can now uh click uh when you selected it you can now click next so this new window uh now we get a new window uh where we have to Define our project name location where our project is going to be saved and and our solution name as default our solution is named the same as our project what solution is is just actually a group of project so if you had a huge application and you wanted to divide it in smaller parts so that it is easier to maintain you could divide it in multiple projects but all of those projects would be part of the same solution so as we are since we are building a simple app we have only one project and we will name it my first app so my my first app and location for our project we can either enter manually or we can do it by clicking this button here and I want my f files to be saved on desktop so I’m going to select uh desktop and now we are done with uh with creating our project so uh with configuring our project so we can click uh create so the tool that we are going to use uh Visual Studio is an IDE or integrated development environment that means that it has a lot more options than just those that we as beginners are going to need and use so for now I’m going to explain only the most basic ones the ones that we are going to need as beginners but as we progress along the way I’m going to explain the new features that we’ll use so so the first thing that you can see here is our solution Explorer so uh if you cannot see your solution Explorer you can click here to this View and select solution Explorer and that should bring your solution Explorer back to view so as we said our solution Explorer is named my first app and it has one project inside it so this this this project is this one here and as you can see when we created our project it was created with some default folders and files for now we are going to use only one file so you can delete these folders header files and resource files if you want just click right click and click delete so now this source files folder is where we are going to put our source code files if you remember from before I have said that uh source code is the code that we write and that is understandable to us so this is our source code file so this with CPP extension so when we created our project this file was created by default and if you double click it it opens uh here so this part here is nothing more than a than a text editor really as any text editor it just has these uh different colors depending on the purpose or the role of the code so that you can manage the code easier if it were all the same color it would be harder to uh to read so for example this green part here is a comment comment is just a note for yourself so compiler will not try to translate commented lines so if if you type for example here this slash slash or that means actually begin comment and then you can explain for example what this preceding code does so you can write this will output to the console hello world so this will output to the console hello world so that when you for example come tomorrow to this code and you have forgotten what this code here does this will remind you this comment here and these are some default comments which I will delete now we are not going to uh need this so just select everything and click delete as you would in any regular text editor this part here also now let’s explain what we got here so this include iio stream is actually a header file so it is also called a library and this um I stream is input output Stream So it allows our uh us to input and output data to and from our program for example thanks to this we can use commands such as this here so see out or console output so without having this we would actually have to program ourselves how we will input and output data in uh our in our console so we will not delete this line here now check this code here it says main well that means that this is our main function so a main procedure that our program is going to execute so whenever whatever you put actually in uh these braces here your program will execute and the execution of your program begins here and it ends here so since this here is the the scope of your main function so you can collapse it by clicking here and you see that everything is collapsed now so for now it’s enough for you to know that this is our main method our main procedure and later in this course we are going to uh learn and understand what methods are used for what is their purpose and we are also going to create a lot of Our Own methods so now we have this uh C out or console output which is the command to Output to the console and then we have also combined with this um STD and these redirection signs so STD is the Nam space for this C out so that’s how your computer knows what this SE out really is I will show you later how you can get rid of this if you really want and we also have this hello world in uh quotation marks okay let’s see what we have learned so far we said that this is our solution it inside it has one project and within that project we have this file with uh with extension. CPP which is our source code so if we double click this file it brings us here so to this text editor and this is our program this is the code of our program now how we can run this code well see this green play button here well that’s our start button it’s really uh it’s really intuitive so if I click it we will get our hello world text here which I have outputed to the console uh and you can also see that we we have besides our hello world we have gotten some junk text here so what I’m going to do is show you how you can get rid of this in a moment so let’s close our program for a moment and what you need to do in order to get rid of this junk text is type this command here so system pause greater than zero in quotation mark and the end of command you notice that at each of uh at the end of each command uh you have to put this semic column and if you didn’t it would result in an compiler error and I will demonstrate that let’s run our program now and you will see that our junk text has disappeared so as I said after each command you have to put this semic column and if you if you didn’t do that it would create a syntatic error and that then your your compiler would not be able to understand and your program would not run actually your program would not start so if I delete this semicolon here you see that something has changed in this in this window here so you see this R error error red sign um well if I hover over it you see you see it here also here here uh it says expected a semicolon which is very clearly says that you are missing a semicolon and if you see this red underline here it says also expected a semic colum so uh before this you are missing a semic column here so if I add it here if I add it here our error will disappear so if you try to run your program before fixing this error it would prompt you with with a window like this so it says you have one failed project and zero succeeded projects so this is the code building that I have mentioned before so this one project which is actually the only project that we have has failed building so your compiler does not actually understand what you have written since you are missing a semi uh column so another thing how you could know that you have syntax error uh except from this uh this prompt window that we got is this uh syntax error so missing semic column before this closed brace and if you click it here it will take you right where you need to go to fix your error so it’s it’s very useful and if I press my play button again it now says hello world so I will stop program now uh you can do it either by clicking this red sign here which says stop debugging or you can click this X on the console window so if some other error has happened to you which didn’t happen to me here you can write that in the comments down below and I will gladly help you also someone else can help you from uh from the other people learning from this video and I would highly encourage that since in my opinion the best way to learn something is to try to reproduce what you’ve learned and to explain it to someone else so write in the comments if you got some other error now let’s see how we can upgrade our program so let’s write something else let’s add for example STD two column signs console out so uh under quotation marks I will put something that I want to write out so let’s say for example my name is Salina you can put your name of course and at the end of each command you put semicolon and let’s add one more so let’s say today is Friday and also add end of command here so it should write when we run our program it should write these sentences in uh this order here so you can run your program and if you can notice it has this new line in the first sentence so this is because of this this back slash n so that puts whatever text is coming after in a new line so you can put uh that text in a new line by either entering a back sln or with adding this STD end line so STD end line and I have previously stopped my program if I run it again you see that that we have gotten a new line here you see also that this um STD here is becoming a bit tedious to write again and again and I’ve told you that I’m going to show you how you can get rid of this uh so what you can do is you can uh put this STD on a global level so you can say using using namespace STD using namespace STD and what will that do is reference this STD namespace on a global level so you don’t have to uh reference it every time that you are using it and now we can delete all of these so wherever you have written STD that’s going to be referenced here now and you don’t need it need to write it separately and if we run our program uh here we are going to get uh our result so we have also uh this new line added by either sln or this end line here okay so in this video we have learned how we can output data in a console and in the next video we are going to see how we can input data into our uh console so we can ask user to input data and we are also going to talk about variables and data types another thing that I want to show you before I finish this video is you may be wondering okay do I have to start Visual Studio every time that I want to run my program is there any other way for me to to execute my program uh and uh the answer is no you don’t have to start Visual Studio every time there is another way to start your program for for w from Windows so let’s save all changes that we have made here so far so you can press control+ s or um if you have made any changes you see this star here so it is indicating indicating that you have unsaved changes so you can right click on that and click save and you see that that start disappears now so let’s find a folder where we have created our project for me that was desktop uh if you follow this tutorial from the beginning you created it also and if you follow me you created it also on desktop uh so you can open your folder you can uh go to debug and inside that you uh see this file here it says application so this is your program so uh if you right click on that and you check its properties you will see that it says exe that means that it is executable file so that is your program that is your um application and if you double click on that well you see that it runs same as in visual studio so you can start your program from Windows actually if you want to show it to your friends or someone else you don’t have to you don’t have to open Visual Studio each time that you want to uh to run your program but one more thing to keep in mind is that if I go to visual studio now and I add one more line let’s say let’s say we write out have a nice day so and and if I save it so contrl s and if I try to open my program from Windows now what you’ll see now is that this new line that I have just added is missing but why is that so you know well um if you remember when we were talking about building code we said that that’s the phase of uh converting source code that you have written into a code that your machine understands and when you start your code from Visual Studio it does that process automatically for you so it builds your code and then it executes your your program but when you are starting your uh program from uh Windows it is missing that phase of building code so your uh recent changes your last changes were not translated so your uh computer has only the only translated version that it has is the previous one so without about your uh recently added changes what you need to do is you either have to run uh your code from Visual Studio first or it’s enough for you just to build that code inside visual studio and what happens when you do that so just click here and you can click build and what happens is your Visual Studio translates this code that you have written and it saves it here and now when you run it and when your windows runs it it has uh the the latest version it has the latest changes so this is the small trick that I wanted to uh show you so uh this will be all for this video and uh if you came across to some errors that didn’t happen here to me or you have any questions you can write those in the comments and I will I will answer those and if you watched so far you can like this video you can subscribe and share it with someone else who would also like to learn programming and I will see you in the next video hi guys I hope you are all well and welcome to the second video of C++ for beginners in this video we are going to talk about variables data types and also I’m going to explain how you can enter data in your program and how that data is encoded into numbers using something called asky table so here I have opened visual studio and if you are not familiar with Visual Studio or there is some code that you see here but you don’t understand it I would recommend you to watch my first video of this course the link is going to be in the description of this video and then come back to this video so let’s talk about variables now what is variable well I like to explain it a real life example for example you see this glass here well what I can say about this glass is that it is a container for a certain type of liquid so it can hold water milk tea juice whatever you want really and the same way a variable is a container but for a certain data type so you can put whole number inside it you can put character or a decimal point number or a Boolean value meaning true or false value so they are the same in this aspect another thing that I can say about this glass is that it defines a maximum amount of liquid that it can hold so it has a max limit and if you put too much it will overflow the same way with variables variables also Define a maximum amount of data that they can hold for example if you have a whole number variable well there is a Max number limit for that variable that it can hold and also if you put too much it is going to overflow it is literally called data type overflow so it is a container the same as variable and also it defines a maximum amount of data that it can hold but how much data you really put inside that variable so the same way with with the water inside this glass if you decide to put 1/3 or 1/2 or 2/3 of this glass the same way is with variables you can put however much you want as long as you don’t put too much because then it’s going to overflow one thing that is different though between variables and this glass is that you can put one day inside this glass you can put water the next day you can put juice the next day you can put milk then tea or even you can mix two liquids but with variables you cannot do that at least not with Once in C Plus+ there are certain languages that you can do that with and there is also advantages and disadvantages when it comes to that but in C++ you cannot put two different data types inside one variables and you can also not change a data type of variables once you create it so let me show you what I’m talking about on a practical example let’s say that you want to create a variable that is going to hold your annual salary well that variable is definitely going to be a decimal point number or also floating Point number that’s how it’s called in C++ and the type that is used for that is called float so I’m going to say float and then I’m going to give a name to that variable since we said that is going to hold a annual salary we are going to call it annual salary okay and then we are going to assign it a value and that value is going to be let’s say 50,000 99 so now what I have done here is I have created a variable called annual salary I have said that that variable is going to be of type floating Point number and then I have put inside that variable 5099 so now let’s see how we can base on this variable based on our annual salary calculate how much our user is earning every month so what we are going to do is we are going to create another variable we are going to call it monthly salary and we are going to assign that variable a result of dividing this annual salary with 12 months so we are creating a variable of type float also since the result of division usually can be also floating Point number or decimal number and because of that we are using also float type for our monthly salary variable so I’m creating monthly salary variable and I’m going to say that that variable is going to hold result of this expression annual salary divided by 12 months and now we have result of this division inside this variable and what we are left to do is to write that result out to our user so I’m going to say see out since that’s the command that we use to Output data to console and I’m going to say your monthly salary is and I’m going to say monthly salary so one thing to notice here is that when you are writing out strings or when you’re writing out data like this you use quotation marks but when you want to write out the value that you are holding inside a variable well then you just put the name of your variable you don’t use any quotation marks then and now we can run our program and let’s see what’s the result that we got you see here your monthly salary is 4,166 75 so if you want to check that out you can uh you can calculate it in your calculator one thing that uh that bothers me in this program is that we have hardcoded this value here so we have hardcoded coded this 50,000 99 not every everyone’s salary is 50,9 and what if we wanted our user to enter what his salary is during the execution of our of our program so when he runs our program our program should ask him what is your annual salary and then he enters that salary and then we calculate his monthly salary based on the number that he has entered so I would like to upgrade this program now to work like I just explained and how we are going to do that well first I’m going to delete these 50,000 99 okay and then we are left with this situation here so it says float annual salary that means that I have just created a variable called annual salary and I have said I’m going to put a floating Point number inside that variable but I have not assigned any value to it yet so here we have a container for our annual salary and that container doesn’t hold any value and if we try to run our program now what do you think that we are going to get write that in the comments before I run this program and now I’m going to uh so pause the video and think about it and then write write your answer in the comments and now I’m going to run the the program and you can see that we have some build errors as this here uh this window here says so let’s see if we open this part here it says we have one error and that error is uninitialized local variable annual salary used what that means is that this exess expression here if you see this green underline It also says using uninitialized memory annual salary well that means that this expression here our computer doesn’t know how to do this expression since we haven’t assigned any value to our annual salary variable so it doesn’t know how to divide that that with 12 since there is no value inside that container inside that variable so this causes a compiler error and whoever has written that compiler error is going to occure he was right so how we have to what we have to do to correct this is we have to ask our user to enter his uh annual salary so what we are going to do now is let’s see First Command that we use to Output data from our program into our console is C out so console output and the command that we use to input data is console input or C in so I’m going to say C in and then we use these other redirection signs and then we say what is the variable that we want to store what our user has entered and I’m going to say annual salary so what I have said here is our user is going to console input the data and then whatever he has inputed you have to redirect that inside our annual salary variable so now if I run my program now you see that our program runs now so there is no compile time error and also our cursor is blinking well it is blinking because it expects here our user to enter annual salary but this is not really clear to someone who has not made this program so what we have to do if I enter some value now well it is going to calculate it correctly but this is not really user friendly so what we have to do is we have to write a message to our user before he enters anything so that he knows what he should enter so before this C in command I’m going to say C out and I’m going to say please enter your annual salary okay and now if I run my program you are going to see please enter your annual salary and the cursor is blinking waiting for you to enter the value and if I I say for example 40,000 you see that your monthly salary is 33333 so the program has calculated your monthly salary and the number is based on whatever our user decides to input so we have upgraded our program and there is also one more thing that I would like to show you when we are doing this example and that is let’s say that we want to calculate how much money our user is going to earn in 10 years so let’s say see out in 10 years you will earn and now we have to put a value of how much money he is going to earn and if you look at this situation here we first created our monthly salary variable and we then assigned it a value of annual salary divided by 12 but there is another way that we can write out results of Expressions without creating any variables if that is what we need and that is just here so in this line in 10 years you will earn you add these redirection signs and then you say expression that you want your computer to calculate and what we want to calculate is how how much our user is going to earn in 10 years so that is annual salary times 10 and if you do it this way so if you don’t decide to create a variable then you will not be able to use result of this expression later in your program so you don’t have a container that holds this 10 year salary but you have a container that holds annual salary and monthly salary so each time that you want to to write out or do something with your 10year salary you will have to write this expression while if you want to do something with your monthly salary you have a container that is holding that value directly for you and you can access it so if we run our program now you see it expects us to enter our annual salary let’s say 50,000 and you see here your monthly salary is 4,166 67 and then in 10 years you will earn what is this half a million so okay one thing that we are missing here then and that you can add is end line or back slash end so you can add it here and your program is going to format your text nicely so this line should go here like this if I if I add here one more end line and if I run my program again you see enter 50,000 and now we have our text formatted nicely because of this end line that I have just added let’s now create another variable and this time we are going to create a variable of type character so Char that is the type that is used for character variables in C++ it’s called Char and let’s name our variable character and when you want to assign a value to a character variable in C++ what you use is these single quotes like this if you see this example here when we are writing out text so string of text we use these double quotation marks but when we want to assign a character value of a character variable we use these single quotations like here and there are also some more rules when it comes to naming your variables and the most important one in my opinion and the most important one to make it easier to you is to name your variables according to their purpose so give meaningful names to your variables that is really really important for example you see this uh monthly salary variable here we could have as well named this variable blah blah blah and copy it here also because we are having compiler error right now because our compiler does not know what this variable really is you see it says identifier is undefined because you have not created this variable here because it supposes that it is a variable but it has not been created before so it does not recognize what this variable is so we have to copy the new name here also and now our compile time error disappears and this here this name does not represent anything to your computer so your computer is now going to run your program and your program is going to work just the same as it did before but this is really making it hard for you to understand what your code is doing and especially if you come to this for example in 10 days or someone else tries to understand your PR program this is really hard to read and he will just try to uncover really what your program is doing without understanding it because you have used these blah blah blah names for your variables the same situation would be if you for example have three boxes inside your kitchen and you you use one for storing sugar and flour and salt and instead of naming those sugar flour salt respectively you decide to name them Red Box green box and blue box and then in someone else comes to your house someone else comes to your program he does not really know where to find sugar because red does not mean that that box is storing sugar so you should name that box sugar box because imagine have three is easily easy to remember but imagine having 10 boxes or 10 variables or a hundred of them or even a thousand which is very common inside large programs so what you should do and I am going to do is return that previous name so monthly salary and here also so you should give meaningful names to your variables that is very important and that is the first rule the second rule is that well the second and third and the fourth are the rules that you will have to obey in most cases because if you don’t then you are just going to get a compile time error in 99% of the cases let’s say and I’m not going to say what that 1% is because I want you to obey these rules so when it comes naming your variables another thing is that your variable names cannot contain any special characters except underscore so like this this here is valid name to your variable but if you try for example to name your your variable like this so you say plus character you see that here in this error window it says expected an identifier so you cannot use this to name your variable or this you cannot say character with this minus inside it so character minus um so these signs these special signs are used for something else they are operators inside C++ and and you are not supposed to use those inside your variable names if you really want to use some special signs what you should and can use is underscore like this so this is the only sign that is allowed and that I recommend for you to use for naming your variables that’s the second rule the third rule is that your variable names cannot begin with numbers like this so you cannot say eight character for example It also says expected an identifier but what you can do is you can say for example character 8 that is a valid name so a number can be on any other position except on the first position so this is a valid name for a variable so you can put also number here so you can say for example C12 eror 8 but again what does that really mean me that is not a meaningful name for a variable so again we come to the first rule so you should name your variables according to their purpose so I’m going to return this to character name again and then we have our third rule I guess which is you cannot use space inside your variable names so for example this this is not valid and your compiler says it here so it gives you an error it does not know what this really is so you cannot use Space Blank spaces inside your variable names because you are going to get compile time error and if I try to do that and I try to run my program I get the window so it says you cannot run this program you have syntatic errors what you should do is you should correct those errors and then you can really run your program like this this okay so let’s repeat these rules one more time the first rule is that you should give meaningful names to your variables so name them according to their purpose the second rule is that your variables cannot contain any special characters except underscore the third rule is that your variables cannot start with numbers you can put number on any other position but not on the first one and third rule is that and the fourth rule actually is that your variables cannot contain blank spaces so empty spaces no no in a variable name what you should do is you should name your variables according to their purpose so meaningfully and you should also use something called camel casing what is camel casing you see how I have named this annual salary here you see that the first letter of my variable name is small letter and then the next word starts with capital letter and that is called camel casing so for example you would name your variable like this first second third so like this you see that this first second third these are words inside your variable name and this F is lowercase letter that’s the start letter of your variable and then each next word begins with capital letter and all the rest is lowercase letters that is called camel casing and that is something that is usually used with C++ let’s talk about data types now I am going to delete this code so if you need this code for a bit longer you can pause the video here so what kind of data can we store in our variables Well for now we are going to cover only the most basic ones the ones that we are going to use frequently and you should know that there are a a lot more data types besides from these that we are going to mention here a more complex ones that we are going to cover later in these videos in this tutorial so the first one that I would like to mention is a whole number data type so integer a data type that can hold negative whole numbers zero and positive whole numbers so the type that is used for that and C++ is called int and good example example for INT variable is let’s say year of birth so that is an example of a whole number variable and let’s say that that variable is going to hold 1995 okay so that would be an integer variable after that we have already seen this so it is a character variable so let’s say Char and an example of a Char variable could be gender for example let’s call it gender and you can store f for female or M for male for example so the Char variable can store one character then the next one is Boolean value meaning true or false value this is the simplest one and the type that is used to store bullion is called bull and a good example for a bull value could be for example if you want to hold in your program a variable that tells you whether your user is older or younger than 18 years 18 years old so let’s call our variable is older than 18 and we can assign to that variable either value of true or false so I’m going to put true true here another very able another data type is decimal point number also called floating Point number which we have mentioned before and let’s create a variable of type float and let’s say that that variable is going to to hold our average grade so average grade and uh this average grade can also be a whole number but since it has potential to be also floating Point number or a decimal point number we are going to to use a float data type for this average grade and another data type that I would like to mention for also storing decimal numbers is called double and the difference between double and Float is that double is double size of float so if you remember when we talked previously about uh Tak memory space that that varibles take so float is taking four bytes and double is taking double of that so eight bytes so you can put much more data inside your double data type than inside float and let’s say for example that if you had a credit card and you had a lot of money a lot a lot a lot of money and you want to store that value inside a variable you would use a double data type so let’s say double balance if equals to this large number here which I’m not going to even try to read okay so these are the most common data types that we are going to use in this tutorial I have said earlier that each data type takes a certain space in memory but let’s see exactly how much each of these take for that we are going to use something called size of operator and let’s see how we use it so C out size of int is and then we write this size off so size of and in parenthesis we pass to it data type that we want to check how much memory it is using so int and if I run my program now you see that it says that int takes four bytes of memory and if you’ve ever actually studied binary algebra you would know that four bytes of memory is actually 32 bits since each bite has eight bits and as we said our int can store both positive and negative numbers and zero also remember that so the first of these 30 two bits is used to determine whether the number has plus sign or minus sign so whether it’s a positive or A negative number and then remaining 31 bits are used for this value itself so let’s check what is min value for our int let’s write that out let’s write C out int Min value is and we have reserved word for minimal amount for INT in C++ and that is intore min and if I run my program now you see that it says this minus 2 billion extremely hard to read this number but you see that this is the minimal amount of int so this number is actually 2 to ^ of 31 let’s just quickly write these so -1 -2 -3 and then minus this number here so this number as I said is 2 to the power of 31 why not 32 because this one bite is used to represent this minus prefix now we should check a positive number range so we also can write write int max value is and then there is another keyword in C++ for INT Max which is intore Max and are you expecting to see this same interval but just with plus sign so write in the comments what are you expecting to see and if I run my program you see that that did not happen and if some of you know why it did not happen I would also like to to hear what you think why we have this number here and then this number here for our negative and for our positive range so different ending number and I’m going to explain why because this positive range here we have to include zero also so in order to include one number here just let’s just copy this and paste it so our positive range is going to from one up to let’s say that it is this number but since it is including zero also in order to include one number here so zero you have to take one number here so this here is not eight anymore but is seven so that is why we got let’s say different number for our positive and negative range because this here includes zero also one thing that I have to mention though is that if you want to use only positive integer numbers there is a data type for that as well and data type that is used for that is called unsigned int and its size is the same as of int so four bytes or 32 bits but since it is unsigned that means that it does not use one bit for sign because the sign is by default plus but it uses all 32 bits to represent value and those values go from zero to let’s see exactly how big of a number 4 billion and something so see out size of unsigned int is and let’s see size of unsigned int this is the data type and let’s also write out what is the max value of unsigned int so let’s say C out u in max value is and there is there is also reserved War for that and that is U inore Max so if I run my program now you see that we got 4 billion and something number so double the size of this and this is actually 2 to ^ of 32 but minus one because we are also including zero in this range so let’s check these remaining data types I’m going to write those out quickly and I will be back so I have written here the rest of these data types and as you can see since our bull is only true or false value one bite is enough for bull our Char is using also one bite float is using four bytes double is using eight and I’m also going to include a table with some more data types which we haven’t mentioned here so if you need to check those out please pause the video one thing that I promis to show you is data type overflow let’s see what that is so let’s create a variable of type int and call it int Max and let’s say that I want to store inside that variable maximum amount of int So intore Max and I’m going to write that variable out now just see how big of value that really is so see out int Max and if I run my program now you see that I have gotten here this 2 billion very large number actually so that is the max amount of int now my question for you is what is going to happen in this situation so see out int Max + one what is going to be the result of our program now if I run it so some of you may know this already some of you may not but I am very interested in reading your answers so make sure to write your answers before watching my explanation on this write those in the comments down below and if I run my program now well our number has not increased by one but it has went to the minimal amount of int and why has that happened well that is the data type overflow that I was talking about and how this works actually is it works the same as your clock works so it goes 9 10 11 12 and then from 12 since that is the max value on your clock it does not go to 13 but it goes back to Min so 1 12 and then 1 and that is applicable here it went from the max value to Min value just by adding one and that is called data type overflow I already can see that this video is pretty pretty long and I’m currently having problems uploading very long videos to YouTube so I’m going to leave for the next video explanation of asky table and we are also going to do some more examples and practice C++ some more so make sure to subscribe to my channel and also click the Bell icon so that you are first to be notified when I upload my next video and also like it and share it with anyone who do you think could benefit from this video and I will see you in the next one hi guys welcome to my channel as I promised in my previous video in this video I’m going to explain the concept of asky table and then I’m going to give you an idea an example of a program that is very beginner friendly very simple but also very fun and that you can build only with knowledge from my two previous courses and this one so if you haven’t watched those make sure to watch them link is going to be somewhere here and also in the description and also make sure to like this video and to subscribe to my channel for more educational content and let’s begin now so what is aski well aski stands for American Standard code for information interchange and it was first created in order to standardize the way of representing characters in your computer so in asky table those characters are represented as numbers numeric codes and what this means is following let me give you an example when I first learned to read and write so when I was a little I decided to together with my friend create uh our special symbol language where we would exchange each character with a special symbol that only two of us could understand and then we would exchange letters us using that symbol language and no one else could understand those letters and also guys write in the comments down below if you did that I know you did so don’t make me feel like a weird one well that is exactly what your computer does it exchanges each character with a number so that it can understand it and it can communicate with other computers so this means that your computer or ask key table assigns to each character a unique number and let’s prove that now so how we can do that is in my visual studio I’m going to say see out and then in these parentheses I’m going to say int and then these single quotes and I’m going to say letter a and let’s add end line so this is one way of doing that and then there is another way of doing just the same thing and that is let’s say see out and then int and then inside these parentheses we are going to say our single quotes and our letter a and also add end line so this here is called casting operator and it is the operator that forces one data type to convert into another and since we said that each character has its numeric pair inside ask key table well we can ask our computer to give us that pair so here I’m seeing please tell me what is my numeric pair of my letter A so what number is my letter a and if I run my program now you see that I got 97 so our lowercase letter a is 9 97 in ask key table let’s check now a capital letter A so I’m going to say C out in off and let’s put our capital letter a and one more end line so if I run my program now you see that I’m going to get a different number so 65 and this is so that your computer can distinguish between lowercase and uppercase letters so ask key uses seven seven bits to represent each character and that means that it can represent 2 to the power of seven that’s how much characters it can represent so 128 characters and that is enough for all English characters so all English lowercase and up uppercase letters and numbers and also some special symbols but there is also a lot more languages and also languages that have a lot more characters so there is a lot more standards for representing those characters inside your computer so this that we have just mentioned is called um ask key and there is also extended ask key that is another standard that can represent more characters then there is also utf8 utf16 and a lot more different standards so what we should remember for now that is related to ask key is that as key represents each character with a number so it holds its numeric nuic match it’s num numeric pair in its table and then that we can also get get that numeric match using our casting operator so this here is a casting operator so now you may ask if we can get a numeric value of our letter so if if we can get our int number of our our letter can we do vice versa so can we get a character from our numeric value and the answer is yes we can convert a number into a letter also and I’m going to demonstrate how we can do that in a moment so you can say see out Char and let’s say Char of 65 and add end line and if I run my program you see that I’m going to get a letter A so capital letter a and now with this when you learn this you can get an idea on how you can build something more useful than than just basic hello world application so you can for example build a program that ciphers words and sentences in a s key and then also a program that deciphers those messages back into English readable characters so now we are going together to build a program that ciphers words into ask key codes and then I’m going to leave to you to build the program that deciphers those words back into English readable characters so let’s say that we want to Cipher a five letter word so what I’m going to do is what I need to do is to create five Char variables so I’m going to create five Char variables then I’m going to let my user input his letters inside those five chart variables and then I’m going to write out encoded words so I’m going to convert all of these letters in ask key codes and then I’m going to write that out to my user so I’m going to on a in a certain way Cipher his his word so I’m going to say here Char C1 Char C2 and then Char C3 and I won stop here for a moment I want to explain one thing when we first were talking about creating variables we said that this is the way of creating variables so you say the type of of your variable so Char in this case and then you say what name you are going to give to your V variable so in this case this is our C1 C2 C3 so this way of creating variables here it is correct but it is a bit tedious for this current situation there is another way of creating more than one variable and I’m going to demonstrate that now so what you can say also what you can do is Char C1 C2 C3 C4 and C5 and all separated with this comma sign so you can create more than one variable in one line like this but only if all of those variables are of the same type and in this situation they are so all of these variables are of type CH so I’ve now created five variables of type chart and another thing that I want to mention is that in upcoming videos we are going to learn how we can let our user decide how many characters how many uh how how many values he wants to enter during the execution of our program so now we have hardcoded these five values but we are going to learn more in the following courses and also another thing is that also in C++ there are a lot of solutions that you can use already made so that you can enter whole words or sentences so you don’t have to enter your word letter by letter so you don’t have to create variable for each letter that you want to enter but what I’m trying to explain here and what we want to understand here is how it really works in the background so how it works inside you have to understand that and I believe that that will give you a great advantage over those programmers that just know how to use something rather than how to make that something by themselves and then use it so I have here created five variables and each one hold a character that we will enter and let’s enter them now so what I’m going to say is C out enter five letters and then I’m going to say C in and I’m going going to put all my variables here so C1 C2 C3 C4 and C5 so if you can see here I have entered all of my five variables in a single line so you can do this you can buy B these operators like like this so that you can enter more than one variable in a single line the same way that you can bind your see out operator so that you can write out more than just one string so now what we are left to do is we have to write out our ask key message so what I’m going to say is see out ask key message and then I’m going to put int C1 let me write that out really quickly so I have written this message here and what I have said is console output asky message and then I have combined these C out operators so that I can write more than one variable in a single line so in a single command actually so I have said give me my int code of my C1 so give me my ask key code of my C1 variable and then put a blank space and then give me my asky code of my C2 and also C3 4 and five and I have also used these blank spaces because I don’t want to write just a single number in a single line because I want to know where my first character ends and where my second character begins that’s why I’m going to separate those codes with a empty space and also there’s another thing that I want to mention and it is that when you want to convert your variable so the value that you are holding in your variable and when you use your casting operator on that you don’t put your variable in a single quotation mark so you just put the name of your variable like this example here so if I run my program now you see that I get my message so enter five letters and I’m going to enter hello and you see now that I have this output asking message is 104 101 so 108 and 108 so that is our letter L you see that it has the same code and now I have gotten this asky message which is which is our ciphered word and also there is one thing that you that I want you to keep in mind and that is that this program here will not take into consideration your enter or your space key as a letter so if you if you put your enter or your space key however much times you want it will not treat it as a character there are some other functions that you can use in your C++ if you want to capture your enter for example or your space key such as cin.get if you really want you can Google that out but at this point we are keeping this very beginner friendly so this will not capture your enter and your space so let’s just prove that I’m I’m running my program once more and I’m going put enters and spaces and you see nothing is happening and then if I enter hello once more you see that I’m going to get the same numbers so the same message as before so we have built here a program that ciphers our words into s key and we have built this program after just studying a little bit of coding so imagine what you can do if you learned more so stay tuned make sure to subscribe to my channel and also like this video if you want to support me in filming these videos and also I’m going to leave to you to write a program that is going to decipher these messages from ask keyb into readable English words so you also can put your uh suggestions of a code in a comments down below and also what you can do you can upgrade this program here that we have written so that you can put in more words more sentences if you want and then you can put those coded encoded messages in the comments and everyone who wants to read those messages is going to have to build a program that is going to decipher those messages into readable English so subscribe to my channel like this video and I’ll see you in the next one hi guys welcome to my channel in today’s video I wanted to show you something that you are going to be using very often if you start on a programming path and that is if else statement so what is IFL statement well if statement is something that is used when you want to execute part of your code so block of your code conditionally which means not always but only in a certain situation and then if you add else block to that that else block is going to be executed otherwise so in the situation where your if block is not executed your else is going to be executed so let me explain that to you in a simple example here I have opened my visual studio and let’s quickly paste an exercise that we are going to do in this tutorial and that that is this task here so let’s say that our user has to enter a number a whole number integer number and then after that our program has to check whether that number is even or odd and has to write out that to our user so how we are going to solve this problem here well I’m going to explain explain this to you using diagrams because I believe that that is the best way for you to understand this if you haven’t used this IFL statement before and then what we are going to do after we understand those diagrams well we are literally going to just translate that diagram into our C++ code so let me open my tool here I have opened a tool that I’m going to be using for drawing diagrams it’s called blank diagram you can use whatever tool you want you can use even a paint or pen and paper if you want that will work as well so here I’m going to draw the flowchart of our program so how our program is going to be executed and let me add first here this shape and we are going to say that this is going to be the start of our program so I’m going to write out start and this indicates our main function let’s say the first line of our main function so here our program starts and then as we said in our task in our exercise our user has to enter an integer number and the shape that we are going to be using for that is this shape here so let me put this shape here and I’m going to write a text inside and I’m going to say in number so this shape here indicates that our user is going to enter some data in our program and why I’m using this shape because it looks like this it looks like a funnel so you can clearly visualize that something has to enter inside that shape so something has to be inputed in your program so I’m going to use this shape for that and then I’m going to say that our user has to enter an integer number which I’m going to call number so that variable I’m going to call number and let’s quickly add this Arrow so that we know that this is the flow of our program so after it has started our user enters a number and then after that what we have to do is our program has to decide whether that number that user has entered is even number or odd number so how we are going to do that well the shape that I’m going to be using for that decision let me find it Well it is this shape here so this diamond shape and as you can see it says decision on it so that’s the shape that we are going to be using and inside this this shape here I’m going to write a condition so as you can see our program flows this way and after it comes here as you can see it has one entry point and then it it can have multiple multiple flows that it can go to depending on this condition that we are going to put inside here but how we are going to decide whether that number that our user has entered is even or odd let me very quickly open my visual studio once more it is here and let me show you something I want to introduce you to a operator that is called modulo and that is used to show what is the remainder of dividing two whole numbers so I’m going to write out C out and then what I’m going to write out is let’s say 2 modulo 2 so this operator here gives you the remainder of dividing these two numbers and in this situation we are expecting to see a zero because 2 ided by 2 is 1 and then what remains after that operation is zero and that what remains should be should be shown when we use this operator here so if I run my program you can see that we have gotten the expected result so we have gotten zero here but let me show you what happens if I enter for example five well what we are going to get is one because 5 ided by two is going to be two and then that one that remains we can get using this operator and you see that it gives us the expected result so 5 modul 2 is equal to 1 so this operator here is what we are going to be using to determine whether our user has entered even number or odd number because when we get the result of modulating two numbers when our result is one that means that our user has has entered odd number and if we get zero as a result of this operation that means that our user has entered even number so I’m going to switch again to my diagram and then inside this decision here we are going to be writing we are going to write this condition here so I’m going to say number modulo 2 is equal to Zer so what this means it means that after our program has started and our user has entered the number that he wants an integer number we are coming to a decision point where we have to decide whether this number that he has entered after you modulate it with zero whether it’s a uh zero remainder or some other remainder so in this situation when this is zero we are going to execute a certain part of code and then let me add very quickly oh I’m impressed it already has this yes inside it and then we also have this no on this other line so in this situation where this results as operation that is true we are going to execute this part code of here so I’m going to add another shape which I cannot see but let me use this shape once more and I’m only going to rotate this shape like this and I’m going to delete this text and what we are going to be using this shape here for is to indicate that we are going to output something from our program so it looks like this which is clearly a visual of something is going to be outputed from it so it is just reverse of this shape here this funnel shape and then inside this shape let me write a text which is going to be um let’s say that in the case that this here results as a yes as a true operation so our number when it’s modulated by two it gives a zero remainder we are going to say that that number is even number so we are going to write that out to our user and then in the situation where this here results as a no so as operation that is false let me write out that here and I’m going to say to our user so I’m going to write out to my user that he has entered odd number and let’s just join this here like this okay so our user enters a number then we decide if that number modulated by two gives us zero and if yes we are going to write out to our user that that is a even number if no we are going to write out to our user that that number is odd number and this is here really our program what I’m going to add is let’s say that after this our program is going to stop so I’m going to to say here that this is the end of my program like this and let’s add one more stop of this flow here so in both of these situations after we have and after we have outputed to our user the result of this program our program is going to stop and this here really like these two stop points look a bit ugly to me so what I’m going to do instead of this I’m going to delete this you could have as well left it like this like like it was before but what I’m going to add I’m going to add one more of these diamond shapes only this time it’s going to be smaller and I’m going to say that in this situation it is going to be used only to say that this decision here this decision flow is going to be joined in this point here so like this I’m going to say whatever has happened whether this block of code or this block of code it has come to an end here and then after that from here I’m going to say now my program is going to stop like this and this and let me remove this yes and this is going to be the flowchart of our program so our program starts then our user enters integer number then we decide whether that number modulated by two is going to give us zero if yes we execute this else we execute this so if this is no and then we come to this which joins our two pads and then we can say that our program has ended and now let’s translate this to our code here I have opened both my visual studio and also I have exported this diagram so that we can translate it literally we can look at this diagram and then translate that into code so now I’m going to delete all of this that we have written inside our visual studio and I’m going to look at this picture and just translate it into C++ commands so the first this first shape here says that user is going to enter integer number inside our program and we are going to call that variable a number so I’m going to say int number and then this here this funnel shape really translates into C in command so user enter something inside our program and that is C in command and I’m going to say that user is going to enter a number before this I would like to add one more information to our user so that he knows what he should enter you could have as well put that to our diagram but I didn’t want it to make that diagram crowded so I didn’t but what we are going to add here is see out and then say please enter whole number like this so we write out a message to our user and after that our user as you can see here enters integer number we had also to declare this int number variable because you can enter the value only for variables that you have previously declared and then after that our program comes to this decision point and how we can represent this decision inside our code is using if statement so we are going to write here if and then I’m going to put this condition here inside these parentheses so I’m going to say if number modulo 2 equals zero this here is operator of equals so whether this side is equal to this side since only one of these so like this this operator here is used to assign value to a variable so that was already taken so this here two of these signs are used to check equality of these two sides so whether this is equal to this and then what I’m going to say as you can see from my diagram here we check this condition here and if this condition is true if this condition is yes we are going to execute a certain block of code and that is this code here and how you indicate a block of code in your C++ is using these braces here like this so this is your block of code that is going to to be executed in this yes situation and then in case that this no here happens so in case that this results as false you are going to execute another block of code and we represent that block of code using else statement so we are going to say if this here is true execute one block of code else if this here is false execute another block of code so here what our if makes us do well it says that we only have to write out to our user that he has entered even number because this shape here as you can see it looks like this and it represents that something should be outputed from your program so we are going to use for that our C out command so see out you have [Music] entered even number so like this and let’s add end line so in case that this here results as true we are going to Output to our user that he has entered even number else if this here results as false we are going to Output to our user let me copy this like this and we are going to change that only to odd so in case that this here results as false we are going to Output you have entered odd number so either this here is going to be executed or this here depending on this condition and you can see that from diag diagram clearly so when your program comes to this decision point it checks this condition and if the answer is true or yes it is going to execute this else if the answer is no it is going to execute this and then after that it really just joins these two flows and then that is the that is the stop point of your program so we can write here see out thanks by okay let’s say that that is the last line of our program you don’t I haven’t put this on on my diagram I okay so I’m going to run my program now and as you can see it says please enter a whole number so this line here and if I enter for example8 it is going to come to this line here and it is going to modulate our eight with two and if the result is zero which it is it is going to execute this line here and write out you have entered even number oh thanks we are missing an S here and then it writes out thanks by and let me add an S here okay and if I run my program again as you can see it ask me asks me again to enter a number and this time I’m going to enter five which we know that is an odd number it says you have entered an odd number because it has come to this decision Point here it has tried to modulate 5 with two and the result of that was not zero so it has not executed this but it has executed this else statement and it has written you have entered odd number as you can see here and then this thanks by okay so I hope that you have understood this and if you like me to use these diagrams to explain some more code that we are going to be using you can write that in the comments down below and I’m going to try to use more of these diagrams because I know that some people understand it better when there is a visual representation of your code I was one of those people when I first started learning programming so if you find it easier to understand when I use these diagrams I’m going to be using that so thanks for watching this video make sure to like it if you find it any helpful and also to subscribe to my channel and I’m going to see you in my next video bye hi guys welcome to my channel in this video I wanted to talk about if else statements but a bit more complex if El statements so that you can get an idea on how they are used in real life so if you’re not familiar with them at all like you have never heard of IFL statement then you should probably First Watch My First video of this subject and I’m going to link it somewhere here and then you can come back to this video but if you’re already familiar with the very basics of IFL statements then this video is right for you so that you can upgrade your knowledge so keep watching so the problem that we are going to solve in this video is the one that students usually get on their exams a lot and with the knowledge that you get from this video you are going to be able to recognize and solve other problems of this type and also if you don’t want to work with C++ this logic that I’m going to teach you today is going to be applicable in other programming languages as well so here’s the text of my problem and it says that our user should enter the lengths of a triangle so a b and c and after that our program should write out whether that triangle is equilateral isoceles or scaling triangle and as you already may know equilateral triangle is the one that has all three sides of the same length isoceles triangle has two sides of the same length and then scalene triangle is the one that has all three sides of different length so the way that we are going to solve this problem is we are going to really visualize the solution for this problem so that you can really understand it and that is going to be using diagrams the tool that I’m going to be using for drawing diagrams is called blank diagram you can use whatever tool you prefer even pen and paper if you want and the first shape that I’m going to put to this diagram is going to be this circle shape here let’s say that it is going to indicate the start position of our program so here is where our program starts and after our program has started what we want is we want our user to enter side lengths of our triangle and the shape that we are going to be using for DOT is this funnel shape here so that you can clearly visualize because of this funnel shape that something should enter inside it something should be inputed in your program and what should be inputed is side length so a b and c and the type that I’m going to be using for these three variables is float why float well because the lengths of sides of a triangle can be decimal point number or floating Point number so float and then let’s put this Arrow here so that you can oh so that you can uh visualize the flow of our program it goes like this and then after our user has inputed the side lengths what we should do is we should determine whether he has entered a equilateral triangle isoceles triangle or squalene triangle and what I’m going to do next is I’m going to use this diamond shape here which indicates decision in your program and what I’m going to put inside this shape here is condition the first thing that we want to check is whether whether our user has entered equilateral triangle so whether these three sides are all of the same length whether these three variables hold the same value and let me make this a bit bigger and inside here I’m going to say please check if my a is equal to my B and also if my B is equal to my C like this so let me join these two and I want to explain two things when it comes to this first one is this operator here this end operator these two ents this is logical end operator and it is used as I’m going to just explain so this expression here is going to result as true expression only in a situation where this here is true and also at the same time this here is true so in that case this whole expression expression is going to result as a true operation that is the logic behind this end operator and the second thing that I want to explain is following so I have said here please check if my a side length is equal to my B length and also if my b side length is equal to my C side length what you have Al what you can also put here is you can also say a because we have determined here that these two are of the same length so it really doesn’t matter if you put here A or B whichever you prefer so in this situation where this results as a true operation we are going this way and what I’m going to do when this results as a true operation as a yes operation I am going to use this shape here let me just rotate it I really don’t see a shape that that is this one so that’s why I’m using this reverse funnel shape and I’m rotating it so that you can clearly visualize something something that is being outputed from your program let me delete this text here and make it a bit wider and I’m going to put text inside it and what I want to write out in this situation here where this results as a true operation where this condition is fulfilled is that our user has entered equilateral triangle because all three sides are of the same length so let me write that out so in case that this condition condition here is true we are going to to write out our user that he has entered equilateral triangle and then let’s check the situation where this here results as a no operation so in that case we have to to determine whether our user has entered scaling triangle or a isoceles triangle and for that I’m going to be using another of these diamond shapes so another decision that we have to make and let’s put it here and oh no and the next thing that we want to check is following so I want check when I once I have determined that my user has not entered all three sides of the same length I want to determine whether he has entered all three sides of a different length so I’m going to put inside this shape here another condition and I’m going to say following so please check if my a is oops if my a is not equal to my B and also at the same time if my a is not equal to my C and also at the same time if my b is not equal to my C like this so this is the next condition that we want to check and this operator here is called not equal to operator and it is really reversed from this equal operator it has reversed logic so in this condition here what we want to check is whether my a side length is not equal to my bside length and also at the same time whether my aside length is not equal to my C side length and also whether my B is not equal to my C and if this here results as a true operation that means that all of these three side lengths are not equal they all have the different lengths so in that situation we are going to go this way and we are going to write out let me copy this shape and here I’m going to say please write out my user that he has entered a triangle that has all three different side lengths and that is going to be our scaling triangle like this okay so in the situation where this here results as a true operation it means that all of these three are of a different length and we write out to our user that he has entered scaling triangle and then the situation where this here results as a no because we have previously determined that these tree are definitely not of the same length and then we have in this condition here determined that these Tre are also not of a different length what is left is that the two of these two of these three sides are going to be of the same length and that is going to be the situation where we write out to our user well I can copy this and we write to our user that he has entered isoceles triangle so let me write that out okay so these three are three potential end points of our program so three potential solutions to our problem and after we write out to our user this or this or this I’m going to really put this one diamond shape just to indicate that our decision has now come to an end we have solved this problem and we are going to join these pads in this shape here so I’m going to put this and this like this so now after we have decided whether whether it’s an equilateral triangle or scaling or isoceles I can now say say you can resume the execution of my program normally so whatever I put after this shape here is going to be executed in either this case or this case or this case and what is going to be happening after the shape here is just stop so our program is going to stop but you can put a lot of code here if you need to so I’m going to say stop and let me delete this really I don’t need it okay let’s explain one more time this diagram so after our program start Parts our user should enter a b and c which represent side lengths of a triangle and I have used this float shape since since those side lines can be uh decimal point numbers and after our user has entered that we come to this decision Point here and what we want to decide here is first thing we want to check whether all of these three variables are of the same value so whether he has entered three same lengths for a triangle sides and in case that this here results as a true operation we are going this way and we write out to our user that he has entered equilateral triangle and after that we go this way and our program stops in the situation where this here results as a no operation we want to check something else so we are going this way and we come to another decision point and here we want to decide whether our user has entered a triangle that has all three three different side lengths so after we have checked that they are not equal we want to check whether all of three variables are of a different value and in case that this condition here results as a yes operation that means that he has entered scaling triangle but in case that this here results as a no operation we can now clearly say that he has entered isoceles triangle because we have checked here that these three sides are not the same and we have checked here that these three sides are not different so all of them are not difference and that means that two of them have to be equal and in that situation we go this way and we write out to our user that he has entered isoceles triangle and now we can go this way and you can see that in this situation as well our program stops here I have opened my flowchart and my visual studio so that we can just translate this diagram into our C++ code so the first thing here is our user enters our a b and c side length so let’s declare three variables of type float and let’s call them a b and c and now I’m just going to write out a message to my user so that he knows what he should enter so let’s say C out and please enter a and then B and then C like this and then let’s let’s use our C in command so that he enters his values okay let’s say first thing that our user uh enters is going to be stored inside my a variable after that what he enters please store that inside my B variable and then the third value that he enters is going to be stored inside my C variable so now that we have entered our side lengths of a triangle we come here so to a decision point and we said that we represent this with if else statement so I’m going to write here if and then inside these parentheses I’m going to say this condition here so please check like this please check if my a is equal to my B and then also check is my b equal to my C like this and if this this here this expression here results as true expression I’m going to execute one block of code and that block of codee is going to be this one here but if this expression here results as a false expression okay I am going to execute another block of code and that block of code we represent with our else statement like this okay and then let’s write this yes situation so let’s write here see out equilateral Al triangle so like this oops you should put that not in a quotation marks okay so in this situation where these three side lengths are equal we write out to our user that he has entered equilateral triangle but in the situation where this here results as false we have this else block to execute and let’s find out what is inside our else block so it is this code here and that is another if else statement so this if else statement statement is really nested inside this one here so it is nested inside this else block so here in these brackets here we are going to put another if El statement so let me write out if and then inside these parenthesis we put our condition from this decision here so from this diamond shape here and I’m going to write out please check if my a is not equal to my B and then is my a not equal to my C also and then is my b not equal to my C so in this condition here we check whether all of these three variables have different values here and if they do if this condition results as a true expression I’m going to write out let me just copy this and then we are going to adjust it I’m going to write out that my user has entered a scaling triangle as you can see here so when this goes in a yes way we write out that message so if this results as a true we write out that our user has entered scaling triangle but if this here results is a false then we are going to write out that our user has entered isosceles triangle and let me copy this like this okay so we have nested this if else statement inside this else block so this if else statement is going to execute only in a situation where this here results as a false F false expression so this code here if you find it a bit unreadable I want to show you one trick so one rule that you can really follow and that is if you have only one command under this if or else statement you don’t need to use these brackets so you don’t need to say that you are going to execute a block of code since you are not you are going to execute only one command so you can really delete th this here like this and then also here since we have only one command both here and here we we can delete these brackets here like this okay so now this code is a bit easier to read okay now as you can see from this diagram here it is literally translation of this here and vice versa so this code here is a translation of this diagram here and what it means is when our user enters three values for our sides of a triangle first we are going to check whether all of these three sides are equal if they are I’m going our program is actually going to say that our user has entered equilateral triangle but if this here results as false then we are going to our else block and then inside that else block we are going to Nest another if else so we are going to check another condition we are going to uh execute this if else here and this if else here is going to check for following so it is going to say please check if all of these three variables are different values so if all three sides of a triangle have different lengths and if they do we can say that that is a scaling triangle but if they don’t then since we have already checked that they are all that all of them are not equal and also we have checked here that all of them are not different we can say now that definitely two of these variables are equal and that means that our user has entered isoceles triangle and that is the program that we had here okay so I hope you like this video and if you did this is a strong call to subscribe to my channel and to share it with anyone else who would like to learn programming and I’m going to see you in my next video bye hi everyone welcome to another video of C++ for beginners in this video I wanted to talk about a operators in C++ and we are going to cover the ones that are used most of the time but I’m also going to make a separate video for certain operators that have specific use in C++ so in this video we will talk about the ones that are used most of the time and that you really need to know and understand and also make sure to watch the entire video because I do have some important tips to give you when it comes to this that you really need to understand and that you will find Handy for your future progress in learning of programming the first thing that I wanted to explain is what are operators you can understand operators as special type of functions that are used to perform certain calculations on arguments or operant and then based on those arguments and on that calculation they give you a new value so the first type of operators that I want to talk about are arithmetic operators and you are probably familiar with most of these so there is operator of adding and and subtracting multiplying dividing and also one more operator that you may not be familiar with which is the modulo operator so all of these are arithmetic operators and let me give you an example of how these are used so I’m going to say C out and then let’s write out the result of 5 + 2 and let’s add one end line okay so this here is the operator of adding and then these two are operant or arguments and this here is going to perform certain calculation and then write that out to my console so if I run my program we get the expected result which is seven so these really behave as you would expect them to behave in maths but there are certain rules that are specific to programming and that I want to mention so this operator here operator of dividing let me give you a simple example if I say C out and then five divided by two and I add end line what do you expect to see in this line here write that in the comments down below now I’m going to run my program and you see that the result that I’ve gotten from this line here is two but why has that happened we know that five divided by two is 2.5 well there is a certain rule in programming that says that the result of dividing two whole numbers like this so five is whole number and then two is also whole number is also going to be represented as whole number so even though the result of dividing D2 is 2.5 that 0.5 cannot really be put inside uh integer variable so it cannot be put inside integer container so just two can can be put here and that point two is really lost if you want to show the real result of dividing these two what you have to do is you have to make one of these two or both of them off a different type and that type is going to be decimal point number so float or double so if you put here 2.0 or you put here 5.0 then in this case you are going to get the result represented as decimal point number so you can use it like this or you can make just one of these of a floating Point type so you can say also like this and then if I run my program now you see that now I have got the expected result so 2.5 that is one rule that you really need to know when it comes to this division operator and another tip that I want to show you is this operator of modulo so how do we use this modulo operator this example here here that I’ve just shown you shown you let me return this to this situation where I’ve been dividing um two whole numbers and we’ve just seen that 5 ided by two is going to result as two and that one that remains we can get that one really with this operator here so if you say C out and then five modulo 2 add end line this operator here is going to give you the remainder of dividing two whole numbers which are these two so the result of this operation is going to be that one so let me run my program and you see that we have gotten that expected result so 5 divided by two when it comes to whole numbers if you’re dividing whole numbers the result is also going to be whole number and in this situation it’s going to be two and then that remainder after dividing two whole numbers you can get with this modulo operator and the remainder after after dividing five with two is one and you get it with this operator here so these five are really arithmetic operators and these are these are also called binary arithmetic operators why binary well because they are all used with two up runs they perform their calculation on two operant there is also another type of arithmetic operators in C++ that are used or that perform calculations on only one operant and those are unary operators the examples of unary operators in C++ are this operator here which is operator of increment and then this operator here which is the operator of decrement so how these are used let me give you example so let’s create a variable of type inth and let’s call it counter and I’m going to assign to that variable a value of seven for example so how this operator of increment works is it really increases the value of your variable by one so if I say counter counter Plus+ what this operator is going to do it’s really going to add plus one to my counter variable so 7 + one it should in this line here increase value of my counter variable to eight and let’s prove that oops see out counter and then let’s add one end line okay if I run my program you see that we’ve got expected result so eight we’ve declared a variable of type in called counter we’ve given it a value of seven and then in the next line we applied this increment operator to it which had increased its value + one so eight and then after we write out that value of that variable we got our result so that is how this increment operator is used this decrement operator so counter minus minus this decrement operator here Works uh reverse so it really subtracts one from this variable here and if I copy this line here and then paste it after this line here our counter should be decreased by one so the value of our counter should really again be seven and if I run my program oops like this you see that we’ve gotten our seven so we’ve gotten the expected result however there are specific rules when it comes to these increment and decrement operators and let me explain what I mean on another example so I’m going to create another variable of Type L int call it counter two and let’s assign it also a value of seven and what I want to do with this variable here is I want to write out its value but I want to write out and increment its value in a single line so I want to do this so see out counter to Plus+ and I’m missing this red Direction sign here okay so what are you expecting to see in this line here we’ve seen that this line here has resulted with eight and this line here should also result in eight let’s see okay run my program and it didn’t in this line here we have written out seven but why has that happened well this operator here is increment operator but it is really post increment operator and what that means is that whatever operation needs to be performed on this variable is going to happen first and then this increment operation is going to happen so that is called po increment another type of increment is pre-increment and it is used like this okay and this pre-increment means that whatever operation needs to happen on this variable here first I’m going to increment it and then I’m going to perform that operation so if I run my program now you see that we now get our eight same as here and that is because we have used this pre-increment which first has increased our variable and then our variable is written out okay and the same is applied for decrement operator so for example if I say C out counter to minus minus and then oh my God again okay and then if I run my program you see that we have gotten the same value for this line and this line so eight and why that has happened is because we have used this post decrement here so first our variable has been written out and after that the value of that variable has been decreased so just to prove that I’m going to say one more time C out and then counter two without any increment or decrement just to prove that uh the value of this variable has been decremented after it has been written out so if I run my program again you see that this line here has resulted in eight and then this line here has resulted in seven okay so you see that our console now is full of some random numbers and it’s really making it hard to read so what I want to do is I want to clear out my console but without deleting this code here so how I’m going to do that um I’m going to use a command that is called system and then inside these parentheses I’m going to say CLS which really is going to clear my screen so if I run my program you see that all of our code is still here but console has been cleared so that’s because of this command here that’s a quick tip if you need to clear your console another type of operators that I want to talk about are relational operators and these are really used to compare the value of two operant so two arguments and relational operators in C++ are following so we have less than and then we have greater than and then less than or equal to and then greater than or equal to then we have just is equal to operator and then we have not equal to so these six are relational operators in C++ and how these are used let me show you in an example so let’s say that I’m going to create a variable of type in call it a and let’s assign it the value of five and also create another variable that is called B and assign it value of five so now if I say C out and then inside this parentheses I’m going to say please write out if my if my V variable a is greater than my variable B so if if my five is greater than this another five okay and I’m using these parentheses because I want my C out command to know that this here is one expression that first should be calculated and then whatever this expression here results in I’m going to write that out in my cout command so if I run my program now you see that we have gotten zero and if you know about how computers work you know that they work on zeros and ones meaning that zero represents false and then one represents true so in this situation we have gotten the result of false so when I ask my computer is my a greater than my be so is five greater than five it says false no it is not okay and the same is going to happen if I put here this other operator of less than like this but if I for example put less than or equal to so this operator here and I run my program again you see that now we have gotten the result of one so that is true that is what our computers computer considers as true so our five is less than or equal to five which is correct and even better would be if we say just is equal to and in this situation also we are going to get true as a result like this because five is equal to five and then how we use this operator here is like this so you can say is my a not equal to my b and your computer really hears is my five not equal to my five and the response to that is going to be no it is false because these two are equal it’s the same number even though it’s held by two different variables okay I hope you understood these relational operators and there’s also one tip that I want to give you here and that is you see this comma sign here this is also operator in C++ and it is not really ational operator but it is binary operator and how this operator is really used because we have seen it before without knowing that it was an operator it is used as follows so in this line here we have said please create a variable of type int call it a and assign it value of five and then also so that is the purpose of my comma so also create another variable of type int call it B and assign it value of five so my comma in this situation is operator and separator as well so it is pretty intuitive so before we continue let’s add one more of these clear screen commands here and the next type of operators that I want to talk about are logical operators and there are three of those so we have logical and and then logical or and then also not operator so these three are logical iCal operators and they are usually used to combine two or more conditions into one single condition and I’m going to show you that on an example and let’s use for that example these variables here let’s just change the value of our B to eight for example so what I want to do is I want to write out following so is my a is my a equal to five and then also is my b equal to five I want to write out the result of this expression here and you see that we have used our end operator to combine these two expressions so if I run my program you see that the result of this is false so that is the nature of our end operator it really works like this it says please check is my a equal to five yes it is and then also check is my b equal to 5 no it is not it is 8 so then this operator says okay whatever then this whole expression is going to be false because this operator here needs both of its oper so this here and then this here also both of these need to be true in order for this whole expression to result as true expression that’s the nature of this end operator however there is one more forgiving operator in C++ and that is this operator here so this or operator and if if I place that here instead of our end operator and I run my program again you see that this time we got different result now we have true and that is the nature of our or operator so it says please check if this is true or this here is true whichever of these results as true then I’m going to be true expression only in the situation where this here is false and also this here is false I’m going to result as false in any other situation this here is going to be true so that is the nature of or operator and then we have also this not operator which really negates whatever comes after it so if I put it here for example you see that you’ve seen that previously this expression here has resulted as true expression now that I negate it we are going to get false so that is our not operator here okay and there is also one more thing that I want to explain when it comes to the procedence of these operators which means priority of these operators so which operator types have the biggest priority uh the biggest priority have arithmetic operators after that come these relational operators and then the smallest priority already have these logical operators so let me show you that on an example let’s just comment this very quickly and let’s add another line but the previous one that we had so this here like this that is the operation that has resulted as false so is my a equal to five and then is my B also equal to five and this has resulted as false but if we for example say it like this what do you think that this expression here is going to write out so if I run it you see that we have gotten one why is that so well as I’ve said the biggest priority have arithmetic operators so this expression here is going to be executed first so 5 + 3 after that priority have these relational operators so this operator here and this operator here so after that comes logical operation so so this expression here is going to be really is my a equal to 5 yes it is and then also is my b equal to eight and the answer to that is also yes so now both of these operant are true and our end operator is satisfied now and it’s going to result as true operation this whole expression so you need to remember that the biggest priority have arithmetic operators so these here so these here binary and unary arithmetic operators after that we have our relational operators and then the least priority have these logical operators here let’s add one more of these clear screen commands before we talk about the last type of operators that I want to cover in this video and those are operators of assignment and there are six of those and there are a follow so operator that just assigns value and then operator that adds and assigns and then operator that subtracts and assigns multiplies and assigns divides and assigns and modulates and assigns so these six are operators of assignment and let me show you how they work so first I’m going to create a variable of type end and let’s call it X and let’s assign it a value of for example five okay so this here is example of this assignment operator here and that is how it works it assigns whatever is on the right to your variable on the left so that is the direction of Association it really says whatever is on my right side Please assign that to my left side and let me show you know how these here work because they’re a bit more complex so if I say for example x + = 7 like this what this expression here is going to do well let me write out one more expression and that is X = x + 7 so this expression here and this expression here are just the same this is just shorter way to write this here and what this here does well this is expression that is not valid in mathematics but in programming it is and it does following so it says please whatever is on my right side assign that to my left side and why it does that well because this arithmetic operator here has priority over this assignment operator so if you remember when we were talking about priority these assignment operators have the lowest priority of all so whatever is on my right side that is x + 7 is going to be assigned to my X variable so 5 + 7 is going to be equal to 12 and then that is going to be assigned to your X variable in this line here and this expression here is really short way to write this here okay so I’m going to comment this out and if I write the value of my X now we are expecting to see 12 and it is the result that we have gotten so this x +al 7 is just going to do this so this expression here so it’s going to add to my X this number here and the same applies to these operators here so this one that subtracts and then assigns or multiplies and assigns divides and modulates so if you say for example x minus equal to 7 then that is really going to result as X is equal to x minus 7 and then that right side is going to be assigned to your left variable because arithmetic operators have priority over these operators of assignment and if I run my program again it really sees 5 – 7 and that is minus 2 so I hope that you have understood these examples that I’ve just given you and I’m also going to include some more examples at the end of this video but tricky want so that you can be sure that you have really understood these operators in C++ because they are used very often and you have to understand them in order to continue with your progress on a programming path so make sure to do those examples on your own and if you come across any problems or you have any questions that are related to this video write those in the comments down below and I’m going to answer them I’m going to help you and if you likeed this video make sure to subscribe to my channel and also click the Bell icon so that you are are first to be notified when I publish my next video and I’m going to see you in my next video bye hi guys welcome to my channel in this video I wanted to answer a question that I recently got and that is a question that is often asked on job interviews and also students get it on their exams and that is a question on how you can swap the value of two variables I’m going to give you two ways to solve this problem but let me just explain what I mean by this so I’m going to copy the text of this problem here like this and let me say that I have one variable which is going to be called a and that variable is going to hold value of 20 let’s say and then I have another variable which is going to be called B and that variable holds value of 10 and now I need to switch the value so to swap the value of these two variables I want my a to hold whatever my B is holding and then I want my B to hold whatever my a is holding so how we are going to do that for the first explanation I will need something so let me get it so here I have two glasses and inside this left glass I have my green juice and then inside this glass I have just plain water and the question that we have in our our Visual Studio is equivalent to a question how we can swap the content of these two glasses and to solve that problem I’m going to use another glass so a temporary glass and that is this one here and I’m sorry guys I know this is not a glass it’s a Shaker but it will do for this explanation so what I’m going to do is I’m going to take this this glass this variable and I’m going to put its content inside this third glass this temporary glass okay and then when I have saved the value of this glass inside this temporary glass what I can do is I can put my green juice so the content of this glass inside here okay this is a bit more complex in real life than in programming so once you do that you have saved the value of this glass here so the content of this glass here inside this glass and now what we are left to do is just to put whatever our temp variable our Temp Glass was holding inside this glass here and now we have successfully accomplished to solve this problem so we have switched the content of these two glasses and let’s just translate this into our code now that I have explained the algorithm to solve this problem we are just going to translate that algorithm into C++ code so the first thing that I’m going to do is I’m going to create a variable a temporary variable which I’m going to call Temp and inside that temp variable I’m going to put whatever my a is holding so I’m going to say that my temp holds now whatever is inside my a variable and since we have our a variable free now to hold something else I’m going to put my B value inside my a so now my a is going to hold whatever my B is holding and now that we have saved the value of our B inside our a variable we can put inside our B whatever our temp variable is holding so that is the value that previously was inside our a variable and this here is really the algorithm to solve this problem using a third VAR variable and let’s just quickly add a c out so that we can see what we have done so our a is equal to a and then our B is equal to RB and let’s add end line like this and I’m going to add just a comma sign here okay and if I run the program you see now that here we have a is equal to 20 and B is equal to 10 and now we have successfully swapped the value of these two variables so now my a is holding 10 and then my B is holding 20 which previously was inside my a variable and this is a solution for our problem using a third variable but this question is often asked in another way and that is how you can swap the value of two variables without using a third variable and now I’m going to explain that so let me very quickly delete this until here okay and in order to solve this problem without using third variable you will have to think in a more mathematical way and the solution for this is going to be the following so the first thing that I’m going to do is I’m going to say okay let’s say that my a variable is going to hold whatever my a is holding holding and I’m going to add whatever my B is holding also and this expression here would be really incorrect in any mathematics but in programming this is this is a valid expression and it means this here whatever this expression results in I’m going to assign that to my a variable and this here is whatever my a is holding plus whatever my B is holding assign that to a so that is going to be a so 20 + B 10 that is equal to 30 so now in this line here my a is going to hold the value of 30 and then in the next line let’s say now my B is going to hold whatever my a is holding and then subtract whatever my B is holding from that so in this line here I’m going to say store inside my B the result of this expression here and this expression will result in following a so 30 minus b – 10 that is going to be 30 – 10 20 so in this line here my B is going to hold the value of 20 and then what we are left to do is just to put the correct value inside our a and that is going to be a = to a minus B this means whatever my a is holding at this very moment and that is 30 minus whatever my B is holding at this very moment and that is 20 and guys 30 minus 20 is going to result in 10 and our a is going to get the value of 10 in this line here so now if I write out C out a is equal to a and let’s add and line and then C out B is equal to B and if I run my program you see that I’m going to get the expected result so my a now is holding whatever my B was holding so 10 and then my B is holding this value that previously was inside our a variable here so we have solved this problem in two ways so with or with without a third variable so if you found this video helpful make sure to like it and to subscribe to my channel and also any questions that you have leave those in the comments down below and share this video with anyone who’d like to learn programming and I’m going to see you in my next video and also guys one question for you if you have any recipes any algorithms on how you can make green juice taste and smell good please make sure to write those in the comments down below bye hi guys welcome to my channel welcome to another video of C++ for beginners I just got an idea of a simple and fun program that I can show you how you can build and since I’m a bit of a fitness Enthusiast myself if you haven’t noticed uh I wanted to show you how you can build your own body mass index calculator so stay tuned make sure to subscribe and let’s build our own BMI calculator okay so here is the text of my task and what we are going to build is BM calculator so first I want to explain what is BMI calculator it is body mass index calculator that is going to tell you whether you are underweight or normal weight or you are overweight depending on your weight and your height and here I’m going to use weight in kilograms and then height in meters so if someone else wants to adjust this program so that it can work with pounds feets and inches you can write out that code in the comments down below and the first one that gets it right I’m going to pin that comment so that everyone else can use it and see it okay so we are going to use this formula here which is used to calculating your BMI in metric system so another thing that I want to mention is this these three categories here there are also some more categories that you can really calculate whether you are extremely underweight or you are extremely overweight but these three should be enough for us to do now and these three I’m going to cover in this code another claer that I want to make is that this BMI calculator probably should not be used by people that have huge amounts of muscle so professional bodybuilders because even though they have muscle that muscle is still weight so even though they are not overweight they will fall in a category of overweight because their BMI is going to be higher but for most of us that don’t have a lot a lot a lot of muscle or are leaving normal lives training couple of times a week maybe this is going to be completely okay so let’s build our prog program now so here is our tool that we are going to use to draw this diagram so Lucid chart and let’s really develop the algorithm for solving this problem and then we are going to translate that diagram that algorithm in C++ code so as you may already know first thing that I’m going to put here is this shape here that is going to indicate the start position of my program this circle shape here and after that we really need two things from our user so two things that he should enter and those are his height and his weight so let’s use this funnel shape here that is going to indicate something entering in your program so visual representation that’s why I’m using that funnel shape and inside here I’m going to put two things that my user needs to enter and those two things are these two tanks here so his weight and he should enter his weight in kilogram and also his height and let’s say that he should enter his height in meters so I’m going to use metric system for this problem okay and let’s indicate the flow of our program it should flow like this and after our user has entered his weight and his height there is a simple calculation that our program needs to perform and that calculation is going to be a process for our program so the shape that I’m going to to use for that is this shape here so this shape that says process on it and what our program should process what our program should calculate is it should calculate BMI so I’m going to put here BMI is equal to and then I’m going to put this formula here that is used to calculate BMI okay so it’s weight represented at kilog divided by height to the^ of two so I’m going to multiply my height with height okay and this is really the calculation of our BMI and now after our program has calculated this BMI what we are left to do is we should depending on this BMI really write out to our user whether he’s underweight or overweight or of a normal weight so we should make a decision depending on this BMI and for that decision we are using this decision shape so this diamond shape and inside this diamond shape I’m going to put I’m going to put a condition and that condition is going to be let’s first check whether my BMI is lower than 18.5 like this and in this situation where our user’s BMI is lower than 18.5 so when this condition here results as yes I am going to write out something to my user and let’s me find a shape okay let’s rotate this shape and delete is text okay and what I want to write out to my user oh I can make this smaller what I want to write out to my user in the situation where his BMI is lower than 18.5 is I want to write out that he is really underweight so let’s put text inside here and let’s write out that he is underweight so that is going to happen in this situation oh my God that is going to happen in this situation here let me just okay now it’s okay so in this situation where his BMI is lower than 18.5 we are going to write out that he is underweight but in the situation where his BMI is not lower than 18.5 we have to check something else and let’s check so let’s add another another of these diamond shapes where is it here okay and let’s now check whether his BMI is higher than 25 so I’m going to write out BMI greater than 25 okay and that is going to happen in the case that this here results as no and in the situation where user’s BMI is higher than 25 that really means that our user is overweight so we are going to write out of okay so we are really going to write out a message to our user so let’s copy this shape here which we are using to write out a message to our user so this reversed finnal shape that represents something leaving your program something being outputed from your program so in the case where this calculation here results as true we are going to write out to our user that he is overweight like this okay and let’s really adjust this now it’s now it looks a bit more presentable okay so first we have checked whether his BMI is lower than 18.5 is if yes we have written out underweight if no we have to check whether his BMI is greater than 25 and if it if it is it means that he’s overweight but in the situation where this here results as a no that means that our user BMI is not lower than 18.5 nor it is greater than 25 so that means that his BMI is really somewhere in between so between 18.5 and 25 and that is a normal BMI so that is our last possible situation where we are going to write out to our user that he has a normal weight so let’s write out normal normal weight okay so after we have covered these three cases cases let’s just join our flows into one so I’m looking for this shape here and I’m going to make it smaller delete this text from it and I’m really just going to join these flows inside this shape here let’s let’s just try to move this here I’m going to delete it and let’s say that I’m going to oh no [Music] okay guys I had huge problems trying to adjust some arrows so I had to rewrite this whole diagram and I believe that I made it a bit prettier so here we were explaining that in the case that our user has BMI lower than 18.5 we are going to write out this message to him in the case that his BMI is not lower than 18.5 we are going to check whether it is greater than 25 and if yes we are going to write out that he’s overweight if no we are going to write out that he’s of normal weight and in each of these three cases we are coming here to this diamond shape here which is just just going to join these three potential situations and after this diamond shape here we are going to write out to our user what his BMI really is because I really want my user to know if he’s for example in this situation here or in this situation here I want him to know whether he’s BMI is let’s say 18.4 so he’s not that extremely underweight but he’s just a little bit underweight or in this situation here I want him to know whether his BMI is 25.5 so he’s just a little bit overweight or his BMI is really 35 let’s say that’s why I I want to write out my BMI to my user his BMI to my user okay so and then we just released upop our program so now I’m going to copy this diagram and put it next to my visual studio so that we can really translate this this diagram here into our code so here I have put this diagram and then also my visual studio and let’s now translate this diagram let’s translate this algorithm and to code because this here really is an algorithm explanation on how to solve a certain problem so the first thing that needs to happen is our user should enter his weight and his height and for that to happen I first need to declare variables for weight and height and for that I’m going to use type float because his weight and height can be decimal point number so I’m going to say float and then I’m going to say weight and height okay like this and after that let’s put a message out to our user so that he knows that he should enter his weight and height so I’m going to say C out weight and let’s put that here should enter his weight in kilogram and then also height but he should enter his height in meters like this so that he knows which which system he should use okay after we have written out this message here what I need to do is I need to use my C in command so that I can allow my user to enter weight and height and I’m going to say first thing that my user enters that’s going to be stored inside my weight variable and then after that the second value that my user enters is going to be my height so store that in a height variable like this okay and after we have entered weight and height next thing that needs to happen is we need to do this formula here and really calculate our BMI and in order to store this result the result of this expression in our BMI we need a variable for that and that variable is obviously going to be called BMI so let’s add here in this line here let’s add BMI so I’m going to declare another variable and that variable I’m going to use now and I’m going to say that my BMI is going to be used as follows so I’m going to use this formula here which is our weight divided by our height to the power of two for now I’m going to use use it like this okay and and in this line here we have really calculated our BMI so this code here and now after we have calculated our BMI what we should do is we should really check what is the value of that BMI and for that we are using this shape here which really translates into if if else case so first I’m going to say if and then the first thing that I want to check is if my user’s BMI is lower than 18 5 like this and in this situation where his BMI is lower than 18.5 I’m going to execute one line of code so that’s why I don’t need to put these brackets so I’m going to delete them because I just want to execute one line of code and that line of code is going to be indented here so that it is easier to read and that line of code is really to be going to be a message that I want to write out to my user and that message is going to be that my user is underweight unfortunately okay and let’s add one end line like this okay this is in the situation where his BMI is lower than 18.5 in a situation where his BMI is not lower than 18.5 we are going to execute something else so that something else we represent with else statement and I’m going to put that lse statement and what is happening in that else case it is happening another if else so here we have a situation where we need to check something else so here I’m going to put else if so if this here results as no please then check something else and for that we use this else if statement so I’m going to say else if please check if my BMI is greater than 25 then so in this situation we also want to execute one line of code and that line of code is going to be to write out to my user that his BMI is greater than 25 which means that he is overweight so let me copy this message here and we are just going to adjust it so I’m just going to say you are overweight like this okay so if his BMI is less than 18.5 I’m going to write out that he’s underweight else if his BMI is not lower than 18.5 I’m going to check whether his BMI is greater than 25 if yes I’m going to write out that he’s overweight if no we are also going to execute something else and that that is this situation here so in this case he has a normal weight so let me again copy this message here and let’s really put here a normal weight like this okay so in this situation where his BMI is not great not lower than 18.5 nor it’s greater than 25 we are going to write out our user that he has a normal weight and with this here with this code here we have really covered this part of diagram here okay and then after this code here executes we really want to write out our BMI to to to the user so we have to this shape here which really translates into our our C out command and we want to write out your BMI is and then let’s write out BMI like this okay and this line of code as you may already see from our diagram is going to execute in either this case or this case or this case because after we have finished with this decision part we have executed only this part of codee or this part of code or this part of code here so whichever of these three has been executed after this code here we are going to execute this line here in either this situation or this situation or this situation and that is going to be writing out to my user what his BMI really is and that is the last thing that we need to put so the last part of our code and now if I run my program okay it asks me to enter my weight and my height and my weight is I believe 6 66 kilg I think and then my height is 1.75 so let’s press enter oh no I’m overweight how my BMI is 6 6 okay guys for a moment I thought that I am overweight but I am not definitely this 66 BMI overweight so that means that we have a bug so where are you sneaky little buggy bug well if you can see where our bug is then write that in the comments down below and I already see where potentially our bug could be so this formula here it should really go like this so we should divide our weight with our height to the^ of two which means that we should put parentheses here like this because and that is this calculation here so in this situation our weight is going to be divided with our height and after that that number is going to be multiplied with our height so we are going to get larger BMI than we should really so we should put this code here in parentheses so that was the first bug that really happened in these tutorials okay I’m going to leave this part I’m not going to edited out okay and now if I enter my weight um let’s see 66 and then my height 1.75 okay so I am 21.5 that is my BMI and I am off a normal weight so we have really built our BMI calculator and this is the formula that you should use for metric system and if someone else wants to rewrite this program for pounds and inches and um feet you can write that in the comments down below and as I said I’m going to pin that comment up so that everyone can see it if you of course get it right I hope you like this video if you did make sure to write it in the comments down below and I’m going to put more videos like this and also subscribe to my channel and click the Bell icon so that you are first to be notified when I publish a new video share this video with anyone who would like to learn programming or also with Fitness people that would just like to use this program and if you don’t know how you can run this program without using using visual studio I’m going to link my first video here and at the end of that video I’m explaining how you can run the program from Windows and that should give you an idea on how you can really share your applications with other people so make sure to subscribe like leave a comment share whatever you want and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners in this video I wanted to explain the concept of turnery operator also known as conditional operator and also some people call it shorter version of IFL statement it is an important concept that you are definitely going to come across in your programming career and you should understand it and I’m going to explain this concept through building fun and simple program that is going to be a guessing game so let’s explain the rules of this game we need to have two users and our first user which I’m going to call host user has to enter a number after that we have to delete that number from our console so that our second user cannot see it and then after that our second user which I’m going to call guest user has to enter his guest so that he can guess what number our first user has entered so this way we can really make a fun program and learn an important concept at the same time and at the end of this video I’m going to give you an idea or multiple ideas how you can really upgrade this program on your own so make sure to watch the entire video now that we have explained the rules of this game let’s start building our program and the first thing that we need to do is create two variables since we said that our user is going to be guessing numbers those two variables are going to be definitely a number type and let’s say that that type is going to be integer so integer numbers and we need two variables the first one is going to hold our first user number so our host user number and then our second variable is going to hold the number that our guest user enters so let’s call those to host user number like this and then the second one let’s call guest user number like this okay and now after we have created these two variables the next thing that we need to do is let’s write out a message to our host user so that he knows that he should enter a number so let’s say see out and let’s just say host like this so that our host user really knows that he should enter a number and I’m going to accept that number in my console using the C in command and I’m going to store that number inside our host user number variable so with this line here we have entered our host user number and what we have said at the beginning of this video is that after our host user enters the number we really need to delete that number from our console so that our second user is not able to see it and the command that I’m going to use for that is going to be this command here so I’m going to say system and then I’m going to say CLS which is which is really going to clear our console so clear our screen and now if I run my program let’s see how far we have made made this program here we have this line This seventh line which says host user and it expects our host user to enter a number so I’m going to say for example seven and then after I press enter this number here really is deleted so our console has been cleared and now after this we need to ask our guest user to guess the number that our host user has entered so I’m going to stop the program and next we need to write out a message to Our Guest user so I’m going to say guest like this and after that we need to accept what our guest user enters inside our guest user variable so I’m going to copy this line here like this and instead of accepting that value inside host user number I’m just going to change this to guest user number and after this part here we really have both accepted our host user number and our guest user number and now we need to compare these two and see whether our guest user has guessed correctly our host users number so how we can do that if you are familiar with f l statements and I’m going to link that video here and if you are familiar with them that is really one way to solve this problem so you can solve this problem with IFL statement and I’m going to do that and then we are going to really convert that IFL statement inside into a tary operator so how we can solve this with IFL statements well it is quite simple solution so we have to say if and then inside these parentheses I’m going to really compare these two numbers so host user number and guest user number so I’m going to say host user number is equal to guest user number like this and then if this here results as true so if these two if these two numbers are the same we can write out a message to our user and that message is going to be let’s say correct like this so our user has guessed correctly but in a situation where this here results as false we can use our else statement and in this else situation let’s write out a different message to our user so let’s say see out and then inside this these quotation marks let’s say failed like this so that in the case where these two are the same number we can write out to our user that he has guessed correctly and then in a situation where these two are not the same we can write out to our user that he has failed in guessing so if I run my program now you see that it expects our host user to enter a number and I’m going in this situation to take the role of both host and guest user so I’m going to enter seven for example and then you see that that seven number has been deleted from our console because of this command here and now our program expects Our Guest user to enter his number and I even forgot what number I entered so let’s say that our host user has entered for example 11 and you see that our program says you have failed so you haven’t guessed correctly and one more time let’s enter for our host user number five for example and then let’s say that our guest user also says number five and our program says you have guessed correctly so this is one potential solution for this problem but I wanted to show you how you can solve this problem using Turner operator and now I’m going to comment this code here like this so this is a comment for multiple lines of code and let’s really translate this part of code here into a turn operator like this okay so how does theary operator work well it is the only operator that takes three op runs or works on three operands and the first opun is going to be a condition so I’m going to copy this condition here which is is our host user number equal to Our Guest user number so that is going to be the first uun and after that first uun we need to put this question mark and then after this question mark we have the following Behavior if this expression here so if this condition here is true we are going to execute one line of code or actually one part of code and that is going to be this line here but in the situation where this here results as false we are going to execute whatever we put after this column sign so that is going to be our C out failed like this and this is really the Syntax for our Turner operator and as you can see it really is a shorter form of if else statement so this line of code really means please check this condition here and if this condition here results as true execute this part of code here but if this code here results as false please execute whatever I put after my column sign so that is going to be our see out failed and now if I run the program it asks again for our host user to enter the number let’s enter number nine for example and then our guest user has to guess the number so let’s enter for example number three and you can see that our program says to Our Guest user that has failed in guessing so there are a couple of ways in which you can really upgrade this program and I’m going to give you a few ideas and the first one is for example you don’t have to use int type here so you can use different data type data type you can guess characters or you can guess even strings if you know how to and if some of you want to play with that and try that on their own and you get it right make sure to paste that code in the comments down below and I’m going to check it and if you get it right I’m going to pin that comment up so that everyone else can see it so that would be one way of upgrading this program another way to upgrade this program is to make it easier to your guest user and how do I mean easier well you can really limit your host user to enter a number that is going to be in a certain interval for example you can say to your host user that he can enter only a number that is going to be between let’s say 1 and 15 or 50 it depends on how difficult you want to make it to your guest user and that would be one way also of upgrading this program and another and the best way of upgrading this program is going to be when we learn loops and when we do that I’m going to link the video here and how you can upgrade this program using Loops well you can give your guest user multiple attempts so you can say for example let my guest user guess three times or five times before I say game over you have failed okay so I hope that you have liked this video and if you did make sure to subscribe to my channel share it with your friends and with other people that would like to learn programming and I’m going to see you in my next video bye hi guys welcome to my channel welcome to another C++ for beginners tutorial and I’m really excited for making this video because this video is going to be a milestone and in this video I’m going to show you how you can build your own calculator application so if you have watched my previous videos and you are also so watching this one and you build this application together with me you should really feel proud of yourself because you have made a great progress so let’s build that application now here I have opened my visual studio and let’s very quickly explain what we want to do before we start write code so I want my user to enter two numbers and also operation sign and then depending on those two numbers and that operation we want to calculate the result and then write that result to our user so so the first thing that we need to do is we need to declare variables that are going to hold those numbers and that operation sign and since we want our user to be able to enter decimal point numbers so not only integers but decimal point numbers as well we are going to declare variables that can hold decimal point numbers and those can be float and uh double so let’s declare float variable for example and let’s call it num one which is going to hold our first first number and also another one which is going to be called number two and hold our second number and after we have declared these two let’s also declare a variable that is going to hold our operation sign and since that is a character we need to use a character type for that variable so let’s say Char and let’s call that variable operation like this okay and now after we have created these three variables we can really allow our user to enter his numbers and his operation and we want to do that in the following order so we want to say C in and then first our user has to enter the first number and then after that we want our user to enter the operation sign so let’s say operate operation like this and after that our user has to enter the second number and this window here guys this is called Intellis sense and it really makes your code writing easier so you can navigate this list here using your arrows and then you can also use tab key so that it finishes your variable name for you if you want that okay so now we have entered our first number our operation and then our second number as well like this and another thing that I want to write out to my user because this is going to be the best calculator ever let’s write that uh title for user so let’s write here before he enters anything a quick title so let’s say see out and then let’s say that it’s going to be called code Beauty calculator you can call yours whatever you want so like this and let’s add these here so that it looks prettier okay and now if I run my program well you see that it really looks like this and now we are able to enter one number after that we want our user to enter operation like this and then we want to enter the second number like this and then after we press enter our program should really calculate the result of this operation in this current situation it is not really doing anything else because we haven’t written code for that okay so now let’s solve this problem that we have here so at this point you should really have an idea yourself on how to solve this problem using IF El statements and also nested IFL statements so if you are not familiar with those I’m going to link one of my previous videos here so make sure to watch that video as well but in this this video I want to show you the more appropriate way for solving this particular problem and that is going to be using switch case statement so what is switch case statement well switch case statement is as well as if else statement used when you want to execute a block of code depending on a certain condition so depending on a value of a certain variable but switch case statement is particularly used in a situation where that variable can potentially hold a lot of different values and if you look at our operation variable here you should really notice that this variable can hold six different values and what are those six well our user can decide to enter operation for adding subtracting multiplying dividing modulating and then what if our user does not really want to use our application but he wants to hack it so if he decides that he doesn’t want to enter one of these five but he really enters some nonv valid arithmetic operation we should also cover that case so we should really as programmers predict all these six situations and cover all these six cases I’m going to add one end line here so that my text is formatted nicely and then let’s really show how this switch case statement is used so the first thing that I want want to write is switch like this and then if you press tab you see that you are getting some default Syntax for this switch case for now I’m going to delete that and I want to show you how you can really write that yourself and inside these parentheses here I want to write out the name of my variable that I want to switch through or switch on and that is going to be my operation variable because depending on the value of this operation variable we are going to perform a different calculation on these two number variables so I’m going to say here operation and then in these curly brackets here we really want to cover all our cases so the first case let’s say that our first case is going to be a situation where our user enters minus operator so I’m going to use these single quotes and then inside the single quotes I’m putting the value that our variable can potentially hold and that is this minus operator here and after that I’m going to add this column sign here like this and then after this column sign I really want to put out whatever code I need to execute in the case that our operation corresponds to to this sign here and what I want to execute in this case is I want to say see out and let’s WR write out our first number and then let’s write out our operation and then let’s write out our second number so that our user really gets a night nicely for method text and after that I’m going to add this is equal to sign and here we are going to put really our result and that result is going to be our first number minus because our user has entered this minus minus so our first number minus our second number so let’s write out number one minus number number two like this and after we have covered this first case we need to add one more keyword and that is going to be break and this break keyword is really used so that our switch case statement knows where our first case ends so I’m I’m saying here whenever my operation is equal to this sign here you are going to execute this code and you should really stop executing this CA that case when you come to this break statement okay so this is going to be our first case our second case is going to be situation where our user let’s say enters this plus sign and in that situation we really want to write out to our user this text here so the same text we want to really write out our first number Plus in this case our second number and then is equal to and then we are going to add really this calculation here so number one plus number two like this and in this situation as well we want to add this break statement at the end like like this okay so these are two potential cases and now I’m going to really write out the rest of them so I have written out these remaining cases and in each of these cases we really want to write out our user his first number after that his operation second number and then this equal sign and then in each of these cases we are performing adequate calculation so we are performing that operation that are user has entered and writing that result out to our user and after each of these cases we really need to put this break statement and you really have to put this break statement because if you don’t you are going to get your program to behave as you don’t want it to and as you can see in this situation here so in this situation where we are trying to modulate two numbers we are getting an error and if we hover over this number here you can see that our error says expression must have integral or unscoped enum type what does that mean well if you haven’t watched my video on operators I suggest you to do so I’m going to link it here and here I’m quickly going to explain what is happening so this operation here this modulo operation is Operation that is really going to give you a remainder after dividing two whole numbers and since this number here and this number here are of type float we really cannot perform this calculation on these two variables so what we have to do is we first have to check whether this number is really a integer number whether it’s a whole number and this number as well and since our float can hold decimal point numbers and integers as well we really in certain situations only can perform this modulating operation and let me explain what I mean by this that our float can hold can hold decimal point numbers and integers as well well this variable here this number variable can really have a value of 5.5 for example but it can hold as well value of 5.0 which is really integer value so it’s 5 only so now what we have to do is following I’m going to delete this line here and we first have to check whether both of these numbers are integers and in that situation only we can perform this calculation but in a situation where one of these two or both of them are not integers we are going to write out to our user that that operation is not valid so I’m deleting this code here and then let’s create two variables so let’s create a variable of type Bull and let’s call it is num one integer so this variable is going to hold a value that is going to tell us is our our number one integer value and let’s also create another variable that is going to be called is num two int and as well this variable is going to tell us whether our number two is integer and let’s develop now an algorithm so that we can know whether our number one or number two is integer number and I’m going to ask you to write your Solutions in the comments down below so pause the video think about it and then write your solution and without using any already made functions as programmers as Engineers you should really be able to figure out the solution on your own so applying the knowledge that you have gotten from my previous videos or this one but I’m going to say from my previous videos so pause the video and write your solution so this question is not really a question of programming it’s more of a question of thinking in a logical way and if you remember when we were talking about casting operators we said that a casting operator is used to convert one data type into the other and I’m going to link that video here if you haven’t watched it make sure to do so and here we are going to try to convert our floating Point number so our number one and our number two into integer data type so into integer number and how we are going to do that well we are really going to say int so this here is going to cast whatever we put after it into int type and we are going to say please try to convert my number one into integer and how does this work well for example if you have a number one that holds value of 5.7 when you try to convert that value into integer what it does really it says that 5.7 so that7 part really bye-bye I’m going to take only this five part so only this whole part of a number so in that situation we are really going to get only five from this 5.7 floating Point number so what I’m going to say now is I’m going to say whatever this expression here this casting operation results with I’m going to really try to compare that with the initial value of my number one variable so I’m going to say num one is my converted number one so converted to integer equal to number one like this and how does this calculation here work well as I said for example if you have a number one that holds a value of 5.0 so 5.0 this part here is really going to take this 0 Z part of a number and delete it it’s going to keep only this five so only this whole part of a number and after that we have this is equal to operator and then we are trying to really uh trying to really check whether that is equal to 5.0 and the result of this is going to be true so we with this here we have checked really whether our number is going to be equal to our floating Point number so this result here we are going to assign this value to our is number one integer variable so here I’m going to say Please assign the result of this operation to our is number one integer variable like this and let’s put this expression here so this whole expression inside these parentheses so that we really can see that this is an expression and the result of this expression should be assigned to this is number one one in variable and now we are going to do the same for our is number number two so I’m going to say is number two integer and we are going to say that that is equal to I’m trying to convert my number two to in and then compare that to my float number two and after this we really can now do our algorithm to perform this modulo where it is this modulo operation on our two numbers in the case where both of them are integers so here I’m going to say if is my number one int and then also is my number two int like this in this situation here I’m going to perform this modular operation and as you can see here I have used only these two bull values here in this expression so I didn’t say please check is my number one int equal to True like this nor I have said please check is my number two equal to True like this because uh this here this part here and this part here are really redundant and what this expression here translates in it translates in is true equal to true and that is really redundant so I’m going to remove this part here and this part here and it should work fine like this for Boolean values so Boolean variables and in this situation here where both of these are integers we really can perform this modular operation so in this situation here I’m going to take this code and I’m going to copy it like this and I’m going to say please write out my number one then my operation then my number two is equal to sign and then here I’m going to put adequate calculation so I’m going to say take my number one convert it to to int and then modulate that with my number two that is as well converted to int like this okay so in this situation where both both of these are integers we are going to really write out the result of modulating operation to our user let’s add empty space here and here as well but in the situation where one of these two is not integer or both of them are not integers I’m going to say else and in that situation I really going to write out my user that this operation is not valid so let’s say just not valid like this so in any of these two situations whether we write out this line of code here or this line of code here after that we are going to come here and here we have to put our break statement like this so after each case comes break and now we can really test this part of code here that we have written so if I run my program the first thing that that I want to test is let’s say 5.5 Plus 2.2 and we get the expected result so 7.7 let’s run our program again and this time I want to check whether my modulo operation is working as it should because this code here is really specific so let’s say five modulo 2 like this and as well we have gotten correct result and let’s run our program one more time and here I really want to trick my program and try to make it to modulate two numbers that are not whole numbers so 5.2 modulated by two and as well our program works as it should so it says not valid operation okay so if you have noticed uh in this current situation I really have to run my program each time that I want to perform a calculation and that is because we haven’t learned anything about iteration or loops so far and those videos are coming so make sure to subscribe to my channel and also click the Bell icon so that you are notified when I publish those videos and in that situation where we learn iteration and Loops we are really going to be able to run our programs indefinitely which means to run our calculator application until we really decide to stop it okay so after we have covered these five cases here there is only one situation left to cover and that is situation where our user enters any other sign that is not one of these five here and that situation we are really going to write like this so we are going to say default so in the case where our user enters operation that is not going to correspond to any of these five signs we are going to execute our default situation and here we really want to write out a meth message to the user that is trying to hack our program so you can write whatever message you want to the user that is trying to hack the program that you have worked so hard to build and I’m going to put here okay you really can write out whatever you want to that type of user like this so in the case where our user has not entered this nor this nor this nor this nor this which means our user has entered some other sign we really want write out not valid operation and let’s test now our default case so I’m going to run the program and I’m going to take the role of a malicious user that is going to try to hack your application and I’m going to say please try to perform this calculation here so 5 z9 no not really you have been smart enough to predict his malicious behavior and you have said if you haven’t put here a valid arithmetic operation then no I cannot help you this is not a valid operation and there is really one thing that you have been wondering about for the most part of this video and that is this break statement here so why I have said that after each case you have to put break and now you want me to explain that do you do you really wouldn’t that be a spoiler for a situation where you decide on your own to delete this break statement here and then run your program even though I have said not to and you enter some calculation and you remember that I have said that you are going to get unexpected Behavior but was she lying was she not and then you decide to execute this calculation and boom here is your unexpected Behavior so what has happened here well your program has really recognized that this operation here that you have entered is this minus operation and after that is it has written out this number one so 7 and then operation minus and then this number two five is equal to and then it has calculated number one minus number two which is 7 – 5 and that is equal to 2 and after that it has really continued executing other cases which means it has come to this line here and then then it has written one more time your number one minus number two so 7 – 5 is equal 2 and then it has performed this number one plus number two calculation and 7 + 5 is going to be equal to 12 and then it has come to this first break command and it has has stopped the execution of your switch case so why has this happened it has happened because you haven’t put this break command here and in that case program is really going to be executing your cases until it comes to the first break command and if you have noticed here in this default situation I haven’t really put any breaks you can as well put your break statement here you can say break here but even if you don’t if even if you didn’t put your break here and your program really tries to execute something after this line here there is really nothing to execute so you are not going to get a problem in this situation here I hope that you like this video and that you have built your own calculator application and if you did make sure to subscribe to my channel and click the Bell icon as well share this video with anyone who would like to learn programming and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners and in this video I wanted to deepen your knowledge of switch case so if you’re not familiar with switch case Cas at all if you haven’t watched my previous video you definitely have to do that the link is going to be here and in this video I wanted to give you some more examples that you can practice on and introduce some things that I haven’t mentioned in my previous video as well so in this video we are going to build a program that is going to require from our user to enter a year and a month as well and then our program has to write out how many days there is in that month so how we are going to do that let’s see but first you have to subscribe to my channel and like this video and also share it with your friends as I explained there are two things that we need from our user to enter and those are going to be month and year so let’s create two variables let’s say year and month like this and now I’m going to write out the message to my user so that he knows that he should enter those two values so year and after that please enter month like this and let’s store now the values that our user enters so the first one is going to be stored inside our year variable and then the second one is going to be stored inside our month variable and now we have really covered everything that we need from our user now our program has to check these two variables and then decide how many days there is in that month of that year and we are going to do that using switch case statement but but there is one thing that I want to mention before before we start write our switch case and that is you have to take in consideration that there are years that are leap years and that have one day more than the year that is not a leap year and there is a rule for that so I’m going to copy the rule that that is going to help us to determine whether a year is a leap year or not and that is this rule here so any year that one modulated by four gives the result of zero and at the same time that year modulated by 100 is not equal to zero or a year so that same year when modulated by 400 is going to give the result of zero and this here is going to be a definition for our leap year which means a year that has 366 days or a February inside this year has 29 days that’s why we need this rule here so now let’s write out our switch case statement and if you haven’t watched my video on switch case statement I am going to link it here one more time because you really need to understand the switch case and then you can come back to this video and deepen your knowledge on switch case so switch this is going to be the syntax of our switch case but I’m going to delete this default syntax we want to write it ourselves so inside these parentheses here I’m going to put the variable that we are going to switch through and that is going to be our month variable like this so whichever value our user has entered for our month we are going to cover all the potential values that our month can hold in our cases so the first case that I want to cover is going to be the most specific one and that is going to be our February which means second month so I’m going to say in the case that this month variable is equal to 2 which means that our user is requesting from us to determine how many days our February month has we really in this case need to check whether that year is a leap year or not and then if that year is a leap year that means that our February has 29 days and if not which means if this condition here is not true that means that our second month has 28 days so I’m going to copy this expression here this condition and also if you are not familiar with Turner operator you have to watch that video because in this video we are going to use that tary operator you can do it as well with if else statement but I want you to practice also this because you will uh you are going to actually come across it in your programming career so here I’m putting this condition for a leap here and I’m going to say this question mark and then I’m going to say if this here is true you have to write out this line of code so you have to write out C out and if this condition here is true that means that our year is a leap year which means that our February our second month has 29 days so let’s say 29 days month like this okay and so that is in the situation where this here is true and in the situation where this expression here results as false I’m going to put here a column sign and then I’m going to write out a different message and that is going to be that this second month in the case where a year is not a leap here has actually 28 days so after we have written this expression here so this Turner operator we have really write out how many written out how many days there is in our February month and after each case I have to put break so in this case as well I’m going to put put our break command after it and with this example with this case here we have really covered our second month which was the most specific one now we are left to cover the remaining months which means ones that have 31 days and also ones that have 30 days and here I’m going to show you something that I haven’t shown you before let me scroll this code like this maybe okay and then there are some months that contain 30 days and some that contain 30 31 days and the ones that contain 30 days are following so I’m going to write out case like this and then the the first month that contains 30 days is going to be April so fourth month and then also our sixth month contains 30 days and then also let’s see 4 6 9th and then November as well like this and here we have written out really all the months that contain 30 days okay and now I’m going to at the end so at this case here write out a message let me copy this and I’m going to paste it and I’m going to say 30 days month like this okay and I’m going to put break command here as well so let me explain this part of code here because we haven’t seen this part of code here before this break statement what it does is when your program so when your program execution actually comes to this case here it says okay my month is equal to two so I’m going to execute this part of code here and then it comes to this break command and this break command really breaks the execution of your switch which means that when your program comes to the first break command it is going to stop the execution of your switch there which means that it is not going to check any more cases and because of that you can really hear so you can put more than one month you can put all months that have 30 days like this and then you can write out the same message and put one break command at the end and how that is going to really behave inside your program in the case where user enters for example month six your program is going to check whether that month is is equal to two and it’s not going to be then it’s going to check whether your month is equal to four not as well and then it’s going to come here and say okay this is sixth month this that our user has entered so please execute whatever code you find until you come to the first break and that is going to be this here which is empty so nothing and then this here which is as well empty so nothing and then it comes to this code here and that line so this code here contains this see out message 30 days month so it is going to write out this and then it really comes to this first break command and it breaks your switch which means that it is not going to check any other cases that come after this break okay so in any case whether your user enters month four or 6 or 9 or 11 your program is going to execute this line here and then break your switch so with this part of code here we have really covered all months that have 30 days and now we are left to cover the ones that have 31 days and those are months uh let’s see that is our January and then our third month and our fifth and our 7eventh month like this let me scroll it a little bit more okay and then we have as well case 8 and case 10 and as well our December has 31 days so there are seven months that have 31 days uh five five months that have 30 days and one month that has 28 or 29 days and in this line here we are going to write out a message that is going to say 31 days month and as well here we have to put our Brak command like this okay so I am going to run my program now and show you how this program behaves so our program is asking us to enter a year and month let’s say a year is going to be 2020 which is current year and then a month is going to be let’s see it’s April so 4th and it says that it is a 30-day month which is April April has 30 days and let’s run our program one more time and let’s say 2020 again and let’s say that we want check our second month and it says that February of 2020 has 29 days which is correct as well and there is really one more situation that I want to cover and that is going to be a situation where our user enters a number that is not a valid month number and that situation I’m going to cover with my default statement so I’m going to write out default and in this default case as well I want to write out a message to my user like this and inside here I’m going to say not valid Val which means that our user has not entered a valid month number so let’s run our program and if I enter year 2020 and for a month let’s say minus 5 for example you see that our program has written out not valid okay so I hope that you have liked this video and if you did make sure to subscribe to my channel and share it with anyone who would like to learn programming as well and today is May the 2nd that’s when I’m filming this video I don’t know when I’m going to publish it probably in a couple of days and currently we are a little bit over 900 people so let’s see how fast this channel can grow thanks for watching and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners and in this video I wanted to talk about loops more specifically about while loops Loop so what are Loops what are they used for how they are used well Loops are used when you want to execute a block of your code multiple times while a certain condition is true which means you give a certain condition to your Loop and you say you are going to execute this block of code while this condition here is true so however many times it is necessary and one thing that I want to mention before we start uh on our example is the following so selection sequencing and iteration those three are three main building blocks of programming languages and when you really learn and understand those three you should be able to solve any logical programming problem and in this video we are going to talk about iteration we have already talked about sequencing and selection in my previous videos so what is sequencing well that means that your code is executed sequentially which means one line after the other and then selection that would be really when you want to select one part of the code rather than the another one which means you are going to tell to your program under a certain certain situation it really has to select which block of code it is going to execute the same would be when you for example come to a crossroad and then you have multiple ways in front of you but you really have to select which one you are going to take because you cannot take all of them and then iteration is going to be really iterating or executing multiple times a certain block of code certain part of code while a certain condition is true so while a certain condition is fulfilled you are going to execute the same block of code so let’s see our example now so I’m going to paste the text of my program here and this is our task so it says that we have to write out all the numbers between 100 and 500 that are divisible by three and by five and how we are going to do that first I want to explain you the algorithm so how we are going to solve this problem and then we are going to translate that algorithm into our code so this interval here so this 100 to 500 interval we are really going to iterate through all of the numbers of of this interval and we are going to do that using while loop and then for each of those numbers so for each value of our counter we are going to check whether that counter value can be divided by three and by five and if yes we will write out that value if no we are just going to continue to the next iteration so as I already said we are going to use while loop to solve this problem and and we are going to start our V loop with the counter value of 100 and in each iteration we are going to really increase the value of our counter so 101 102 and three and we are going to stop the execution of our V Loop when this counter value comes from 100 to 500 And1 which means 500 value of counter is going to be our last iteration through our Loop so so the first thing that I’m going to do is I’m going to really declare a variable that is going to hold our current counter value so I’m going to call it int counter like this and initially I’m going to set the value of my counter to 100 okay so this is our initial value of our counter and then let’s see what is the syntax of of our while loop so so we write out while like this and then in these parentheses we are going to put our condition so how long our Loop is going to execute and then in these braces here so in this curly brackets we are going to put which block of code our while loop is going to execute while this condition here is fulfilled and let’s now fill these parentheses here so as I’ve said our counter has to go from 100 to 500 which means since it starts on 100 here we have to say to our while loop that the execution of this block of code here really has to stop when our counter comes to 500 or 5001 500 is still valid value so that we are going to say like this so we are going to say counter like this and then we are going to say there are two ways to write this condition the first one is to say while our counter is less or equal to 500 or you could as well said while our counter is less than 51 so that is a valid situation while you’re executing your Loop so while your counter is less than 501 or while your counter is less or equal to 500 I prefer it this way but whichever way you put it is going to work so now that we have put this condition here we really can write out this code that comes in this while loop block so what we are going to execute while this condition here is true and that is going to be following inside this block of code here we really have to check whether our current value of our counter is divisible by three and by five and if it is we have to write out that number to our user if no we just need to continue to our next iteration of our Loop and how we can check whether this counter value can be divided by three and by five well we use modulo operation for that if you haven’t watched my video on operators I’m going to link it here make sure to watch it and here we really put the following so we can say if and also if you’re not familiar with if statement going to link it here so if our counter value so our current value of our counter after you modulate it with three if the result of that is zero that means that our number so our counter is divisible by three and we also have to check whether our counter is divisible by five as well we use this modul operation here and we say whether our counter modulated by five is going to equal to zero and if this condition here is fulfilled we really have checked this part of our task and if this part here is true we have to write out that number so in this situation here I’m going to say C out like this and I’m going to put inside here let’s see we are going to write out the value of our counter like this and we are going to write out is divisible like this and let’s put one end line after this line of code here because we are definitely going to have multiple lines so we want our lines to be formatted nicely okay so this part of code here has really covered this divisible by three and five and write out that number if it is divisible by three and by five five and there is really one very important thing that you have to keep in mind each time that you write loops and that is the following so you have to give your Loop away so that it can stop executing this block of code here so under a certain condition it really needs to leave this block of code here because if you don’t do that you are going to end up with an infinite Loop you are really going to lock your program in an infinite Loop situation and this code here this Loop here that we have written this is really an infinite Loop so let me prove that I’m going to run my program and as you can see the console is empty so I enter any value enter whatever it is not really reacting and why has that happened well your counter value starts with 100 and then it comes to your while loop and your while loop checks this condition here so it checks whether your 100 is less or equal to 500 and the answer to that is yes which means that your program execution can enter this block of code here so it can start executing your Loop and then it comes here and it says please check whether my counter which is 100 is divisible by three and the answer is no so this part of code here is not even going to be checked because of the nature of this end operator it really needs both of these operant to be true in order for this expression here to be true because this here is not true it’s false 100 is not divisible by three it is not even going to check this condition here and this line of code here is not ever going to be written so after that it comes here to this closed curly brace and then because of the nature of while loop when it comes here it really goes back here and then it checks again your value of your counter whether that is less or equal to 500 but nothing has changed your counter value is still 100 and then it is going to enter again here and then really repeat that process over and over again and your program because of that is going to be locked inside an infinite Loop so let me prove that really because here we have an empty console and you cannot see what is happening in the background so I’m going to stop my program and I’m going to write out here let’s write out C out like this and let’s write out infinite Loop and if I run my program now as you can see your program has really entered in an infinite Loop and it is writing out this infinite Loop text for infinite number of times so as you can see it says infinite Loop okay and this execution here is not really going to stop until your program’s memory is full and then it’s going to crash so whatever code in the case that you had some code here it is not ever going to be executed so I’m going to stop this here and I’m going to delete this part of code here because we don’t really need it what we need is we need to put here a certain code that is going to help our Loop to really stop the execution at a certain point and the code that we need to put here is going to be really following it’s going to be counter plus plus like this what this code of here this code here is going to do in each iteration it is going to check whether this condition here is true if yes it is going to write out this part of code here and then in each iteration it is going to really increase the value of your counter by 1 which means in your first iteration is going to be 100 after that it’s going to be 101 102 103 and it is going to really go until it comes to 500 that is going to be the last iteration of your program and then when it comes to 5501 this condition here is not going to be true anymore and then your Loop is going to check really whether 51 is less or equal to 500 and the the answer to that is not going to be no so your program is going to really stop the execution of this Loop and come here and then really stop your program so if I run the program now I’m going to prove that okay so this has been executed very fast and as you can see this is the result of your program it has really written out all the numbers that are divisible by three and by five and you can check check all of these numbers using your calculator if you want so with this expression here with this counter Plus+ we have really both iterated through all the numbers between 100 and 500 because we check our counter value here and then also we have we have really given a way to our Loop to stop the execution of this block of code here when this counter value comes to 51 and this is the result of our program okay so I hope that you have liked this video any questions that you have write those in the comments down below and I’m going to answer those make sure to subscribe to my channel and share it with all your friends anyone who would like to learn programming and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners today I want to talk about while loop and I have already made one video on this topic and if you haven’t watched that I’m going to link it here so make sure to do so and why I’m making this video because I really believe that watching One video and doing only one example is not going to be enough for you to really Master a certain concept it wasn’t for me it is not going to be for you as well and that is completely okay so we are going to show you how this while loop is used on one more example and the program that I want to build today is going to be a program that has to count how many digits the number contains so our user is going to enter a number and then we are going to write a program that is going to count how many digits there are in that number so let me copy the text of that program like this and it says count digits of a number so let’s do do the first thing that we know that we have to do and that we know how to do as well so that is going to be write out a message to our user so that he enters that number and then also allow him to enter that number so I’m going to say see out and then I’m going to say number like this and then I’m going to allow my user to enter that number before I can enter it I have to really declare a variable that is going to hold that number so here I’m going to say int number like this and then here after we have written out this me message to our user we are going to say C in number like this so after our user has entered his number we really have stored it in our number variable and now we are going to write out the program that is going to count the number of digits of this number here so let’s first see one specific situation that can happen and that is going to be when our user enters number zero so this number holds a value of zero and in that situation I’m just going to write out a condition so I’m going to say if my number like this is equal to zero in that situation situation please just write out a message to my user like this you have entered zero okay like this and I don’t need semicolon here this looks better so this here is a situation where our user has entered number zero and in that case we just want to write out that he has entered zero and now we are left with the main problem of this task and that is to count the digits of the number that our user has entered and that part I’m going to put in my else block like this and if you’re are not fam familiar with if else statements make sure to watch that video it’s going to be linked here so here in this else block I want to write the program that is going to count the digits of a number which is not zero definitely because if we come here then our number is definitely not zero so how we are going to do that well let me show you the algorithm on an example let’s say that our user is going to enter a number 1325 for example that is the number that our user enters so how we are going to count the digits of this number well first we are going to have a variable that is going to be called counter like this and initially we are going to set the value of that counter to zero so that is initial count of our digits of number and then we are going to to use while loop to iterate through all the digits of this number and in each iteration we are going to do following so we are going to come here and then we are going to say okay take this last digit of my number and really remove it I don’t need it and as well increase the number that my counter is holding so increase the number of digits because we have removed one digit and then in the next iteration we are coming here and we are as well saying okay so take that last digit and increase my counter like this and then in the next iteration take the last digit increase counter and in the next as well take last digit increase counter and then when we come next time we really have nothing more to count so there are no more digits left our number at this situation here is going to be equal to zero and then we are going to know that there is nothing else to count and then we are really going to leave our Wild Loop and we are going to write out the value that our counter variable is holding which is at this situation for so let me show you how we how we can do that in our code so I’m going to delete this part here we don’t need it anymore and then here I’m going to write out the following so as we explained already first thing that we need to do is we need to create a variable that is going to be called counter like this or digits counter however you prefer and and that variable I’m going to assign a value of zero initially and after we have created this variable here now we need our while loop so while like this and then inside these parentheses here we really write out a condition that our while loop is going to check each time that it wants to run each time that it wants to iterate and that condition here is really going to be please check whether my number number is greater than zero okay so in any case where our number is greater than zero our while loop is going to execute this block of code that I put inside these parentheses and what we are going to put inside these parentheses well as we already explained previously first thing that we need to do is we need to say number is equal to number divided by 10 and what this line of code is going to do well let me show you that on an example let’s say that our number so our number holds the value of 1 2 3 like this and this line here really says the following it says Please do this expression here so calculate it and whatever this expression here results in assign that to my number variable and 1 2 3 so 1233 divide by 10 because this here is whole number so it’s integer and this here is whole number as well the result is going to be whole number and that is going to be 12 or 12.3 but but because result has to be the whole number that3 part is just deleted bye-bye so then this 12 in this situation is going to be assigned to our number variable okay so that means that this number divided by 10 is really going to take away that last digit which we have previously explained so I’m going to delete this part here okay and this line of code there is really one more way to write this so write the same thing so I’m going to comment this here and I’m going to write out number divided equal so number R like this 10 okay so this line of code here and this line of code here are exactly the same this is just shorter way to write this here and this looks prettier to me but you can leave whichever of these two you prefer okay so after we have taken the last digit from our number what we are left to do is to increase our counter variable by one so we can do that using our increment operator here so this part of code has really in each iteration taken away one digit and then increased counter variable so what we should do now after our while loop finishes we should really write out how many number how many digits our number contained so we are going to write out count number contains like this and then let’s write out the value that our counter variable is holding like this what is this oh it says count instead of C out okay and then let’s write out just digits like this okay so our number contains whatever our counter variable is holding digits so now I can really run my program and let’s do that so it asks us to enter a number let’s enter number 1 2 3 for example and it says that our number contains three digits which is correct so let’s very quickly explain one more time how this has happened so I’m going to stop my program and I’m going to say here that our user has entered number let’s say 1 2 3 so our program in this situation comes here to our while loop and it says please check whether the number that our user has entered is greater than zero and that number is 1 2 3 so 123 which is greater than zero so then our program can really start executing this wild Loop so it enters here and then it comes to the first line of this while loop and it says Please do this expression here and this expression here really just takes the last digit of our number away and that is going to be three so we are going going to take that away and then the next thing that needs to happen is increase the value of our counter since previously the value of our counter was Zero now the value is going to be increased by one so that is going to be one and after that our program comes here and because of the nature of the while loop it goes back here it checks again whether our number is greater than zero our number is 12 now so the one digit has been taken away so that is still greater than zero so then our number really comes here and then does does this line of code again so it says again please take away one digit from my number so then it takes away this two part and then it comes here it says now increase my counter because you have taken away one digit and that is going to be two now after that our program comes here and then goes back here checks whether our number so whether our one is greater than zero it says yes and then it comes here and it says says please divide my number by 10 so take away that one digit so that one digit is taken away and we are left with zero and then our counter is increased by one and then we are really going to come here again and then our program goes back and says please check whether my number so whether zero is greater than zero and then our program says no it is not so our while loop is not executed anymore and then it comes here instead dad and it writes out that our number contains three digits and there is one more situation that I want to show you and that is going to be what is going to happen in a situation where our user decides to enter a negative number so let’s run our program and let’s see how our program is going to behave in that situation so now I’m going to enter a number of Min – 335 for example and you see that our program writes out that our number contains zero digits why has that happened because our program has come here so it has increased our counter it has actually assigned our counter a value of zero and then it has come here and it is it has really tried to check whether our number is greater than zero but because our number is minus 335 that is not greater than zero so our program then really is not going to execute this block here but it’s just going to go here directly so then it’s going to write out that our number contains and the value that it has assigned to our counter here which is zero so our number contains zero digits and that’s the message that you see here so that is the explanation of this behavior and we need to solve that now how we are going to solve that well it’s pretty simple so here when we come to this else Block in this situation in this 14th line of code we are really sure that our number is not equal to zero because we have checked that here but here we really don’t know whether our number is less than zero or greater than than zero so here we really have to check whether our number is less than zero and if it is we really need to get the absolute value of our number which means if it is negative we have to convert it to the positive number so here I’m going to write out the following condition so I’m going to say please check if my my number is less than zero like this and then if this here results as true I’m going to write out here a way for my program to convert this number in case that it is negative into a positive number and how we can do that well we can really multiply that number by minus one so we can say number is equal to -1 * number like this okay so now if I run my program and if I enter value of Min – 236 for example our program now writes out that our number contains three three digits which is correct so how has this happened our program has come here it has really checked that our number is less than zero and then it has come here and it has said please do this expression here and then assign that to my number so -1 * 2 – 236 those minuses are going to really convert into plus sign and then 1 * 236 is going to be 236 and after that we are going to do the same logic here so we are going to write out that our program that our number contains three digits which is correct answer okay so that is the one situation that I wanted to explain and there is also another situation that I want to explain to you and that is what is going to happen in the following situation here so let’s see let me enter a number that is very very very large I I cannot even read this number here so how our programs going to behave in that in this situation here write that in the comments down below please before I execute this here and now if I press enter what is going to happen happen well our program has glitched a little bit and after that it has written out that our number contains 10 digits but this is definitely more than 10 why has this happened if you are not familiar with data types and overflow and concept Concepts that I have already talked about in one of my videos I am going to link that video here so make sure to watch that video and now I’m very quickly going to explain what has happened here but make sure to watch that video so when we have entered this number here let me stop this program and let me put let’s see let me put a breakpoint here and now I’m going to run my program and what this breakpoint is going to do it’s really going to stop the execution of my program at this line here and we haven’t talked about breakpoints or debugging programs previously but if you want me to include that in one of my next videos make sure to write that in the comments down below because I really believe that it is important for you to see how your program is executed line by line so to be able to follow it and in that way you can really discover any bugs and any situations that are tricky and that are happening inside your program so you can see and control that better so I have put here a break point and let’s now enter a number that is going to be a very large number okay so if I press enter now you see that my program has really stopped the execution here on this line here so after I have entered my number and then even though I have entered a number that is pretty large let’s hover over this number variable you can see that it is holding a value of 2 billion And1 147 million and something so this value here is definitely not equal to this value here but because our program has really gotten the value that is much larger than the maximum value that our int variable can hold it has really assigned the maximum amount that our int can hold to our number variable so that is what has happened in this program and if I click continue now you can see that our program writes out that our number contains 10 digits because it really was holding a 10 digigit number so that is the maximum amount that our int type can hold okay so that is the last situation that I wanted to explain to you and I hope that you like this video and if you have learned something new make sure to subscribe to my channel share it with all your friends anyone who would like to learn programming thanks for watching and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners and first things first make sure to subscribe to my channel and hit that Bell icon as well and share this video with everyone it really helps me to reach a lot more people and in this video I want to show you how you can reverse a number so your user is going to enter a number and what we want to do is we want to write out that number in Reverse so reverse the order of the digits of that number and here I have opened my visual studio so let’s copy the text of this task like this and the first thing that we need to do is we need to really create a variable so let’s say int number like this so that our user can enter his value in this variable here so let’s write out a message to our user so let’s say see out number like this so that our user knows that he should enter a number and then let’s accept that value in our number variable oh number like this now after our user has entered a number let’s really think about how we are going to solve this problem okay I get it so the first thing that I notice here is that we are missing a variable and that variable is going to be the one that is going to hold our reversed number so let’s declare it here I’m going to add it here and I’m going to call it let’s say reversed number like this and I’m initially going to assign it a value of zero okay and now the algorithm that we are going to use in order to solve this task in order to reverse our number so the algorithm that we are going to use is going to be the following so this reverse number here it is holding a value of zero initially and this number here is the one that our user enters so let’s say for example that our user enters a value of 123 like this so 1 23 so how we are going to reverse this number here the algorithm is going to be following so we are going to iterate through this number here so all the digits of this number here we are going to go through those and in each iteration we are going to do the following so the first thing is we are going to say please take this reverse number and multiply it by 10 so 0 * 10 is going to say to stay zero after that what we are going to do is we are going to take this last digit of our number that our user has entered and we are going to add that number to our reverse number so 0 + 3 and that is going to be equal to three and after that we are going to really remove that last digit of our number so I’m going to delete that digit and then in our next iteration what we are going to do is the same thing so we are taking this reverse number we are going to multiply it by 10 so I’m going to say 3 * 10 that is going to be equal to 30 and after that we are going to take this last digit of our number and we are going to add that digit to this number here so to this reversed number so 30 + 2 that is going to be equal to 32 and then we can really remove this last digit here so I’m going to deleted after that we are going to the to the third iteration and we are doing the same thing so we are taking this revers number multiplying it by 10 so 32 * 10 is going to be equal to 320 and then we are taking the last digit of our number this is this one here and we have to add that digit to our reversed number so 320 + 1 is going to be equal to 321 and after that as we did before we can really delete remove this digit here and then in my next iteration we are going to come here again and our Loop is really going to see that there is nothing else left to iterate through so there are no more digits and then it is really going to leave that Loop and at that moment we are really going to have our reverse number so 3 2 1 that is reverse number from the one that our user has initially entered so let’s now translate this algorithm into our code so the loop that we are going to use in order to solve this problem here is going to be while loop so I’m going to write while and then in these parentheses here I’m going to really give it an expression that is going to check each time that it wants to run an iteration and what we are going to iterate through are the digits of this number here so the number that our user has entered so I’m going to say please iterate through this part here so execute this block of code here which is currently empty while our number so number where is it is different than zero like this okay and inside here we are going to write out the algorithm that I just explained and the first step of that algorithm was really multiplying our reverse number by 10 so I’m going to say reverse number is equal to reverse number time 10 like this okay and the shorter way to write this expression here is going to be like this so you can really take this part here delete it and say it like this it is going to do absolutely the same thing so it is going to really multiply our reversed number by 10 and then whatever that results in it is going to assign that back to our reversed number so that was the first step the Second Step In order to reverse our number is going to be really to take the last digit of this number that our user has entered so how can we do that we can do that by modulating this number here by 10 so I’m going to declare a variable let’s call it um last digit like this and as we already said we can get that last digit if we modulate this number here where is it so this number that our user has entered by 10 okay that is going to give us the last digit of this number here and then what we really want to do is we really want to add that last digit to our reversed number that was one part of this algorithm so the next step so I’m going to say reversed number plus equal to last digit like this or you can write it a longer way but this way I pref I prefer to write it um this way but you can as well say reverse number is equal to reverse number plus last digit and after we have added that last digit to our reverse number there is one more step left to do and that is to really take that last digit from our number and how we can do that well we can really do that by dividing our number by 10 so you can say number is equal to number divided by 10 or number divided equal to 10 whichever way you prefer okay so this is really the algorithm that we explained and this step here you can can really write out the shorter way if you want so you can say for example reverse number plus equal to number modulated by 10 like this so you can make your code a bit more readable if you prefer it this way or you can leave this part here and then really add your last digit to your reversed number so now that we have done this algorithm here let’s write out our reverse number and see what we have done so I’m going to write out C out and I’m going to say reversed like this okay and I’m going to write out our reversed number okay let me delete these empty spaces and if I run my program now it asks us to enter a number so let’s enter number 1 2 3 and now if I press enter you can see that our program has really reversed this number here so let’s quickly one more time explain how this has happened so our while loop has really iterated through this number here so that in each iteration it is going to do the following so it is going to take our reverse number and initially that reverse number is equal to zero so it is going to multiply that by 10 so it stays zero and after that is going to take that reverse number and add it the last digit of our number that our user has entered so that is going to be in a first iteration number three so our reverse number in that case becomes three so 0 + 3 is equal to three and after that we are going to really take that last digit from our number that our user has entered so it has taken this three part away and then in the second iteration is coming here it is going to check again whether or not number is not equal to zero and our number is going to be 12 in that situation so that is not equal to zero so it enters here again it executes this block of code here so it says again please multiply my reverse number by 10 and assign that again to my reverse number so our reverse number was three and if you multiply by 10 if you multiply 3 by 10 you are going to get 30 after that it is taking the last digit of the number that our user has entered which is two now because three we have taken away in our previous iteration so it is going to add that two to my reversed number so number reverse number is going to become 32 now and then it is really going to take that last digit from our number away it is going to divide it by 10 so now we are left with number one and our reverse number is equal to 32 and then it goes back to to our third iteration it checks again whether our number so whether our remaining number is equal to zero and this one here is the value of our number so that is not equal to zero so this condition here is fulfilled it can enter the while loop so it does this algorithm here again so it says please multiply my reverse number by 10 our reverse number at this point is 32 so when you multiply that by 10 you get 320 and then after that it takes the last digit of our number which is going to be this one so this one here which is the last one remaining so it is going to take this one and add it to my reverse number as you can see here and then it is really going to take that last digit away so it is going to take all of these three digits away so it has taken them in a previous situations and now it has taken this one away as well so our number is equal to zero now now and then it goes back to our fourth iteration it checks whether our number is not equal to zero but in this situation our number is equal to zero so it really leaves this Loop here so it is not going to enter in this Loop anymore and then it goes here and it really writes out the value of our reversed number which is this line of code here so that is how we have reversed our number so I hope that you like this video and that you understand this explanation if you have any questions write those in the comments down below and also share this video with all your friends with anyone who would like to learn programming and thanks for watching I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners if you are already a subscriber welcome back and if you’re a new viewer make sure to subscribe hit that Bell icon as well and welcome to my channel so in this video I want to talk about the while loop and in my previous videos we have already talked about while loop and iteration in general so if you are not familiar with those make sure to watch that video I’m going to link it here but in this video I want to explain to you how and when is used do while loop and I’m going to give you an example of a program that is usually used and for example applications such as when you try to unlock your phone and then you are given three attempts to guess your pen and if you guess it correctly then you can proceed loading your phone’s applications further or for example if you want to unlock your credit card so you put your credit card in ATM and then it gives you three attempts to unlock your credit card if you guess your pen correctly you can proceed further but if you fail so if you don’t guess your pen correctly in those three attempts your account gets blocked so that is the application that we are going to make today and for that we are going to use do while loop so there are three things that we need actually three variables so I’m going to declare those three here the first one is going to be our let’s say the the pin of our user so let’s call it users pin like this which is going to be really the correct pin the one that you want to guess so I’m going to put here let’s say 1 2 3 4 that is going to be our user pin after that that we need another variable which is going to be really the pin that our user enters so let’s call that variable just pin okay like this and then the third variable that we need is going to be really counter of our errors so the counter of the attempts and errors that our user has made so I’m going to call that variable error counter like this and let’s set that value initially to zero okay and the next thing that we need to do is we really need to give our user three attempts in order to guess this pin here and if he guesses it correctly in those three attempts we are going to write out that the application can be loaded further so we are going to write out application is loading or something like that but in the case that our user does not guess this pin here so this pin here correctly we we are going to really write out that the application or a credit card whatever has been blocked and how we are going to do that so we are going to use do while loop so I’m going to write out do like this and then here I’m going to put while because that is the syntax of our do while loop okay and here you need semic colum because if you don’t put it you are going to get a syntax error now here we put the block of code that we want to execute in each iteration and here we put the condition that we want to check each time that this code here is executed we come here and then we check that condition and if this condition here that we put is correct we are going to go again here and do one more iteration and then again check and then do more one more iteration and we are going to repeat that until this condition that we put here is no long longer true when it when this condition here when it becomes false we are going to leave our do while loop okay so what do we want to enter so what do we want actually to do in this block of code here we really want to write out a message to our user so that he knows that he should enter a pin a pin and then we want to really accept that pin that our user enters in this variable variable here so let’s do that first I’m going to write out C out like this and then then let’s just write out pin like this and let’s accept the value that our user has entered in our pin variable like this okay and then after we have done this what we need to do is we really need to check whether this pin here so this pin that our user has entered corresponds to this pin here so whether this value is equal to this value here and if they are not that means that our user has failed so in that case we are going to increase our errors counter so I’m going to put here if pin is not equal to users pin like this what we want to do is we want really increase our errors counter variable like this okay and this code here so we want to give the the attempt to user so that he can enter a pin and then we want to check whether that pin is correct three times or until this pin here and this pin here are the same so until they are equal or until until our user has used all of these three attempts that we have given to him okay so here I’m going to really put that condition so here inside these parentheses I’m going to write out please do this block of code here here while our e let’s say while our errors counter is less than three like this and then also at the same time while our pin is not equal to users pin like this which means that this block of code here is going to be executed while our user has not used all of these three attempts that we have given to him and while this pin here so this pin here and this pin here are not equal in a situation where this here results as false we are going to come here and after that when we come here we really want to check whether we have left this do while loop here because our errors counter has reached three or because these two were the same in a situation where our errors counter has reached three that means that our user has used three attempts and that he has not guessed his pin correctly so I’m going to put here if our errors counter is less than three like this and this condition here really means that this do while loop has been left in a situation where our user has not used all of these three attempt that we have given to him that means that this while condition has really failed on this part here so that means that our user has entered 1 2 3 4 as pin and in that situation 1 2 3 4 is not equal to 1 2 3 4 that results as false so this whole expression here this whole condition results in false as false and then we leave our do while loop and in that situation if our user has not used all of these three attempts that really means that he has guessed his pin correctly so here in this if situation we can write out to our user see out you have guessed or you can proceed with loading of of this application so I’m going to write out just loading like this but in a situation where our while loop has been left because this errors counter is greater than three actually it is going to be equal to three that means that our user has failed in guessing his pin three times and that means probably that he’s not trying to unlock his phone or his credit card so in that situation we are really going to block that account so we can say else see out blocked like this okay and I’m going to put one more here like this so this is going going to be a program that we really use to allow our user to enter three attempts of his pin and in a situation where he guesses that pin correctly in those three attempts we are going to write out to our user that he has successfully unlocked his phone for example and we can proceed with loading of applications but in a situation where he really uses all of those three attempts and fails to guess his pin we can write out that the application is blocked oh blocked now now it’s now it’s okay so let me run this program and let’s try to use three attempts so I’m going to say that my first attempt is going to be for example 1 one one one like this so it says you have not guessed correctly please enter pin again this is what it means after that I’m going to try for example 2222 it tries to prompt me to enter my pin again because I have failed previously and let’s say that my third third attempt is going to be 3333 like this and then it has said it has written out a message that my account has been blocked because I have missed three times okay so that is one scenario and and the other scenario is going to be really where we guess the one where we guess our pin correctly so let’s say that our first attempt is going to be um 111 one again and after that we really remember what is the correct pin and we enter 1 2 3 4 like this and then if I press enter it says really you are loading you can you can load your application now or the further loading of your application is going to begin now because we have T the correct pin so let me very quickly explain one more time how has this happened so this code here when we come to this do while loop the first thing that is executed is this line here so it says please enter your PIN and then after your user enters the pin your program really checks whether that pin is equal to user’s pin so the previous pin the one that he needs to guess and if those two are not equal that means that your user has not guessed correctly and then you want to increase your errors counter so the number of attempts that your user has used and failed actually in using so we increase in our first iteration that errors counter to one so from 0o to one and then we come here and then our Loop really checks whether that errors counter is less than three so one is less than three that is true and also it checks whether that pin here is is not equal to the pin that we need to guess and in this situation it is not equal so it also this this whole expression results as true and it now can go here again so it prompts you again to enter the pin so you can enter the pin now and in this situation we enter 2222 for example and then it guesses it it checks again so it checks whether pin that you have entered so 2222 is not equal to 1 2 3 4 for those two are not equal so it increases the errors counter once more and it becomes two now then you go here and then it says okay please check whether my user has used all of these three attempts it it it says that your errors counter is still less than three so you have used only two attempts so far and then this condition here results as true because you have entered 2222 and that is not equal to your PIN so 1 2 3 4 and then it goes back here tries to prompt you one more time to enter your PIN and then if you fail this time it increases your errors counter to three like this and then it goes here and it checks whether your errors counter is less than three your error errors counter in this situation is uh has become three so this condition here results as false and your while the while loop actually is now broken so you are not going to continue the execution of your do while loop but you come here and then it checks whether errors counter is less than three because this here fails because this here results as false you are presented with this message here so blocked your phone your account has been blocked okay and in a situation where your user guesses correctly that errors counter is going to be less than three and you are going to be presented with a message of loading and there is one important thing that I want to mention and is really the difference between while loop and do while loop in do while loop you first do so you first execute this block of code here and then you check the condition and then if that condition results as true you go back and you again do this block of code here and then you check and then you do but in a situation of while loop you first check the condition and then if that condition results as true then you can really proceed with executing your block of code that comes after your while but in this situation here so in the situation of do while loop you first do this block of code here so uh irrelevant whether this condition here is true or not you are going to do this block of code here at least once I hope that you like this video if you did make sure to subscribe to my channel and click that Bell icon as well and also if you want me to post more videos like this make sure to like this video because then I will know that you liked it and well that’s all I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners in this video I want to talk about four Loops but before we start make sure to subscribe to my channel and hit that Bell icon as well okay so what I’m going to explain today I want to explain to you how for Loop works and I’m going to explain that on a simple example which is calculating the factorial of a number so let me copy the text of our task here like this and I’m going to comment it out so what is the factorial of a number factorial of a number is usually defined as a product of all numbers between one and that number that you want to calculate the factorial of that means for example if your user enter here is number six let’s say and you want to calculate the factorial of number six you are going to do that in a following way so 1 * by 2 multipli by 3 4 5 and oh sorry six okay and then this here is going to result in 720 so this 720 is really going to be the result of your factorial of six and this example here is what we want to really translate in our program so we want our user to enter a number and then we want to calculate the factorial of that number and write that result out to our user and we are going to use for Loop for that so let me quickly declare a variable which is going to be called number okay like this and let’s prompt our user that he should enter a number and then let’s really store that number that our user enters in our number variable okay so after we have acquired a number that we want to calculate our factorial of let’s explain how we are going to really do that so I’m going to do that using for Loop and what is the difference between four Loop and while loop and do while loop because we have previously talked about while loop and do while loop as well you can find those videos on my channel if you’re interested and I’m going to link those videos in the description of this video if you want to watch them so the difference is that usually when you use for Loop beforehand you should know how many iterations that Loop is going to make so for how long your Loop is going to run so let me show you the syntax of our for Loop you say four and then you use these parentheses here in which we are going to put certain expressions in a moment and after that you put these curly brackets in which we are going to write out the code that is going to be executed in each iteration of our four Loop so inside this parentheses here we need to put three things what are those three things the first one is going to be to set the initial value of our counter variable that is the first one after that the second is going to be to really put the condition that your for Loop is going to check each time that it wants to run this block of code here so before each iteration it is going to check that condition so that is going to be the second thing and after that the third thing is going to be really a way for your counter value to come to that condition condition which means that you have to either increase or decrease your counter variable in order to reach that condition at certain point and then when that condition results as false your for Loop is not going to be executed anymore okay so those are three things that we need to put in these parentheses here and let’s now look at this example here because from here we are going to really uh deduct which conditions which Expressions we are going to put here so if you notice this algorithm here because this is really algorithm nothing else um you see that this is really a counter this behaves as counter so it goes 1 2 3 four and it really starts at one and then it goes up to that value that your user has entered so we can use that for our expression here the first expression is initial value of our counter we need to declare that variable and we are going to call that variable I you can call it count or whatever you want really uh your compiler is not going to give you an error because of that but a common practice is to use a single letter variable name for this counter that you use in your for Loop so I’m going to use name I for that and the initial value of my I counter is going to be one because as you can see here it really starts on one and then after that we need to put the condition that your for Loop is going to check each time that it wants to run a new iteration and that condition as you can see here is really this this expression here this algorithm runs until it comes to this six until it comes to the value that your user has entered so we are going to put that here we are going to say please run this block of code here until my I is less or equal to number like this so whichever number our user enters and then the third thing is going to re be really to give our Loop a way to reach this condition here at some point which means to make this condition here false and then leave our four Loop and again we look here and you can see that your counter is really increasing in each iteration by one okay so here we are going to put I ++ which is in each iteration going to increase the value of our I counter by one okay so after we have put these expressions in these parentheses of our for Loop we need to really put a block of code that is going to be executed in each iteration of our four Loop and I’m going to declare before this for Loop here I’m going to declare another variable which I’m going to call tutorial and I’m going to give it a type of int okay like this and I’m going to assign the initial value to my factorial factorial variable and that is going to be one and then how I’m going to use this factorial variable in each iteration of my four loop I want to say that my factorial is going to be equal to whatever my factorial was previously holding multiply that by my current I value which means by the current value of my counter and how this is going to behave so let’s say that our user enters for example number three and then your execution comes here and it says please declare a a variable which is going to be called factorial and it is going to have a value of one so we have assigned that value here and then it comes to your four Loop the first thing that your four Loop is going to do is it is going to declare this I variable here and assign it a value of one so we we are going to write that here so we are going to say I is equal to 1 and then it really goes here and checks this condition here before it determines whether it’s going to run this block of code here or not so if this here results is true it is going to run this block of codee here and if not it is going to leave your for Loop so is your I less or equal to the number that your user has entered so your I is going to be one and then that is less or equal to three so your for Loop is going to execute this block of code here which means that it is going to come here and say factorial multiplied by one which is going to be 1 multiplied by 1 and that is going to result as one and it is going to assign the result of this here to your factorial variable which is going to stay one after that your for Loop comes here and at this close bracket here it really goes here and it increases the value of your I and this increment operator is going to increase it by one so your I now becomes two and then after that it goes back here and checks this condition here so it says please check check whether my two is less or equal to the number that your user has entered so two is less or equal to three so it is going to run this block of code here again and then it is going to do following so it is going to say please multiply my factorial value so the previous value that my factorial was holding which is one by the current value of my I which is 1 * 2 that is going to result as 2 and that is going to be assigned to your factorial variable so we assign two here okay and then it goes back to these Clos brackets and then it goes here increases the value of your I again so your I now is three and then it really checks this condition here so whether three is less or equal to three the result of that is going to be yes so it is going to do this expression here again so so the current value of your factorial which is going to be two multiplied by the current value of your counter variable which is going to be three so 2 ultied by 3 that is going to be six and that is going to be assigned to your factorial variable after that it goes here and then it really increases again the value of your I variable so of the counter that you are using in your for Loop and that value becomes four now after that it is going to try to check this expression here so this condition here and four is not less or equal to three so your for Loop is not going to execute anymore and then your really your your execution comes here and at this line of code here it has the value of six in your factorial variable which means that we are left only with the need to write out this to our user so we need need to say um let’s say it like this number okay and then let’s say factorial of that number is going to be equal two and then let’s write out the result so the result we are holding in our factorial variable like this so This should really write out the result of this here so the the factorial of this number that our user has has entered and if I run my program you can see that it asks us to enter a number I’m going to say let’s say for example three and then if I press enter it is going to give us the result of six which is the correct result the one that we previously got let’s run it one more time just check this number here so I’m going to say please give me a factorial of six and it calculates that the factorial of 6 is 720 as we did before so this is going to be really one way of writing this for Loop for this current example so for calculating factorial I want to show you another way how you can do exactly the same thing so I’m going to really comment this part of code here so I’m going to say um comment this block of code here and then there is another way to write these parenthesis here so as you can see this example here is what we have used in order to write these Expressions inside these parentheses but there is really one more way to calculate your factorial and that is going to be to start at this maximum value which means 6 factorial is equal to 6 multiplied by 5 by 4 3 2 1 and and that is going to be equal to 720 so now you start your counter at this maximum value so this number that your user has entered and then you really decrease the value of your counter and you go until your counter value comes to one and that is the condition when you stop so your one value of a counter is going to be the last iteration through your for Loop so now we are going to write out um so actually we are going to really write our for Loop using this algorithm here so we are going to say four and then also put this these parentheses which we are going to use for the block of code that we want to run through in each iteration and in these parentheses here I’m going to set the initial value of my counter that is going to be I is equal to and as you can see here our I starts at six so I’m going to put here six which means a number that our user has entered in this current situation it is six but since we want to calculate the factorial of whichever number our user decides to enter I’m going to use that variable here okay and then the condition that your for Loop is going to check each time that it wants to make a new iteration and that is going to be please run this block of code here until my I is greater than or equal to 2 1 okay and then the last thing that we need to put here is going to be really a way for our for Loop to stop at a certain point and if you look at this example here you see that your counter is decreasing by one in each iteration so we are going to put that here we are going to say I minus minus which means use this decrement operator on our I variable and then we are going to really use the same expression here here okay and this is going to give us the exact exactly the same result as this code here did so if I run my program you can see that it asks number again so if I enter number six for example it is going to give us 720 as this code here did as well so let’s repeat one more time there are three things that you need to put in these parentheses here in order to set up your four Loop and the first one of those three is going to be to set the initial value of your I variable which means the initial value of your counter after that you need to put the condition which is going to be checked each time that your for loop wants to run an iteration and if this condition here results as true your for Loop is going to run this block of code here but if this condition here results as false your for Loop is not going to run this block of code here but you are really going to leave your for Loop and come to the next line after it and then the third thing that you need to put in these parentheses here is going to be really to either increase or decrease value of your counter variable so that it can reach this condition here at certain point and make it false so we have decreased it in this example here and we have increased it in this example here so those are three things that you need to put inside these parentheses here and you really need to separate those three using this semic colum sign okay and there is one more thing that I need to mention and that is going to be really you can upgrade this program here so that it checks whether this number here is greater than zero because you cannot calculate factorial of negative number so our program is not going to be behave as expected if you enter negative number and also the factorial of zero is going to be equal to 1 so you can put that code here and determine whether your user has entered positive or negative number and in case that your user has entered negative number make sure to write out appropriate message to your user so I think that is all if you like this video and if you learned something new make sure to subscribe to my channel and hit that Bell icon as well share it on your social media because it really helps me to reach a lot more people so that all of us can learn and upgrade our knowledge in programming and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners in this video I want to talk about nesting Loops in my previous videos we have talked about while loop do while loop and for Loop and now I want to show you the example on how you can really combine and Nest those Loops so if you haven’t watched my previous videos or you are not familiar with loops at all I recommend you to watch those I’m going to link those in the description of this video and also before we start make sure to subscribe to my channel and click that Bell icon as well so what are we going to do in this video I want to really show you how you can nest for Loop and do while loop and the example that I’m going to use to explain that is going to be following so I want my user which is going to be a student let’s say to enter three grades or more if you want we are going to use three for desk exam and I want to those grades I want those grades to be between 1 and five and then I want to write out the average grade so the average grade between those three that he has entered so let’s start building our program the first thing that I need to explain is since we are going to enter three grades that means that we are going to repeat that entering process three times and for that I’m going to use for Loop so I’m going to write four and then in these parentheses here I’m going to put my initial set setup of four Loop which is going to be the first thing is going to be initial value of our counter so I’m going to declare a counter which is going to be called I and initially I’m going to give it a value of zero that is the first thing the second thing that I need to put in these parentheses here is going to be the condition that our Loop checks each time that it wants to run a block of code which is going to be this block of code that we put inside these parentheses so that condition we put here and that condition is going to be while our I is less than three so we want to make three iterations in the first iteration our I has the value of zero in the second iteration it’s going to have the value of one and then in our third iteration it’s going to have the value of two so we have made three iterations after that it gets the value of three but this condition here is not going to be true anymore so then our for Loop is not going to be executed anymore so that is the second thing and then the third thing which we need is going to be really increasing that value of our counter in each iteration so after age iteration and I’m going to put here this increment on our I variable okay so in this block of code here we are going to repeat three times something so what is that something that is going to be really the process of our user entering the value for his grade and since we said that that grade needs to be between 1 and five I am going to use do while loop for that how well I’m going to write out do okay and then here I’m going to put while which is going to be the condition so here we prompt our you user to enter the grade and then we we say here you are going to have to enter that grade while that grade is less than 1 or greater than five so since we don’t have any variable that we are going to use to enter that grade I will have to declare it here so I’m going to say here int grade like this okay and then let’s prompt our user in this block here to enter his grade so I’m going to write out C out and let’s say enter grade and I am going to use the current value of my counter so that I can really say um which grade my user is entering so enter first grade second grade and third grade so I’m going to say I + 1 like this y + one well because our counter starts at zero and it wouldn’t make much sense to say to our user please enter grade zero so that is why I’m increasing this value of my I when I want to write out a message to my user okay like this so here I’m going to write out please enter a grade and after that I need to accept that grade that my user enters in my grade variable so I’m going to say C in grade like this and we are going to repeat this process here for a single grade while our user enters a grade that is less than one or grade is greater than 5 okay so our program is really going to prompt our user please enter grade one and then he enter six for example and then our program checks this condition here and says okay you have missed this part here so go back and then please enter grade one so first grade again okay so if I run my program now let’s just prove that very quickly so our program our program says now enter first grade so enter grade one and then let’s say that I enter nine for example it prompts me again to enter first grade because I have not obeyed this rule here this part here so I’m going to say this time for example five and then it says okay you have successfully entered first grade let’s now enter second grade so for that second grade let’s enter for example zero and then it prompts me again you have not entered correct value for grade two please enter it again and let’s say that this time I’m going to enter one and then it asks for third grade and let’s say that this time third grade is going to be three so our program now has successfully accepted this third grade and now our program is going to really uh finish its execution because we haven’t written anything else after this part here so there is something else that we need to write and since we want to calculate the average grade of our user what we are going to need is going to be really to sum all of these grades that our user enters so I am going to declare a variable which is going to really hold that sum of our users grades so I’m am going to put it here I’m going to call it sum and initially I’m going to assign it a value of zero and later I’m going to explain why so I have declared a variable that is going to be of type int and I have called it sum and assign it a value of zero so this sum here is going to each time that our user enters a grade and we really um we really check that that grade is valid grade after that we want our sum to hold whatever it was previously holding plus the value of our grade like this okay so why I have assigned a value of zero to my sum because zero is a neutral value when it comes to adding numbers you add zero to whichever number and then you get that same number and in a situation where we didn’t assign any value to our sum we would get really um an error so if I try to run my program now you see that it prompts me with an error and it says uninitialized local variable sum used because it does not have any value assigned to this variable here it is going to say really that it does not know how to add the value so the value of our grade to our sum so that is why we need to assign some value to our sum variable okay so and that value is going to be zero because zero is neutral when it comes to adding numbers okay so now I can really run my program and as you can see um that error has disappeared so I’m going to stop my program and let’s very quickly write out this sum that we have calculated here so I’m going to say see out and I’m going to write out sum like this sum is equal to and then let’s write out the value of our sum and let’s add end line like this so I am going to run my program once more it prompts me to enter first grade I’m going to say that my first first grade is going to be for example five and then my second grade is going to be for example six uhuh that’s an error so please enter your second grade again so I’m going to enter this time two let’s say and then for my third third grade let’s enter one for example and it says that the sum of my grade grades is equal to 8 which is correct so 1 + 2 + 5 that is going to equal to 8 so what we are left to do now we should only really divide our sum by the count of our grades which is three because we have hardcoded this value here to three so our user can enter only three grades you can really use a variable for this or you can part code it to any other value that you want and need so here after this line of code here what I need to do is following so I’m going to say C out out and then let’s say average is equal to let’s say average grade is equal to and let’s write out the result so that is going to be sum divided by three okay is it though so I’m going to run my program and let’s enter for example value two and then again value two and then let’s enter for example value four and then it says that average grade is equal to two which is not correct but why has this happened so as you can see here we have used two integer variables so our sum is integer value and then three is integer value as well so when you divide two integer values the result is also going to be integer value so in order to get a floating point a decimal point Point number you really need to convert one of these two into a float type so you can say either here you can say float so please convert my sum variable into float and then divide or you can put here this 0 Z or you can leave both of these whichever you prefer so I’m going to leave both of these like this so if I run my program once more it prompts me again to enter first first grade so I’m going to say that my first grade is equal to five and then my second grade is also five and then let’s say that the third grade of our user is going to be nine so our program prompts us again to enter the third grade because it needs to be in this interval here so I’m going to say now that uh the value of my third grade is going to be three which is correct value and after that as you can see it writes out that the sum of these three grades is 13 and then average grade is 4.33 333 so that was an example on how you can really combine and Nest Loops in order to solve complex problems and thanks for watching make sure to subscribe to my channel click the Bell icon also share it with anyone who would like to learn programming and I’m going to see you in my next video bye hi everyone welcome to to my channel welcome to another video of C++ for beginners in this video I want to talk about nesting four Loops so I want show you how you can solve more complex problems using nested for Loop but before we start please subscribe to my channel and click the Bell icon as well and also like this video so this example that we are going to do today is going to be really multiplication stable so I’m going to show you the example that I want to program so that would be this here and if you look at this multiplication table that we want to make you can really start to notice a pattern and what pattern I mean you see here this this first end in this first part of my multiplication table so in this first table as you can see this first end is one and it stays one in this table here after that you can look at this second table you see that this end is now two and then in my third table it has increased to three 4 five and it really increases so it increments by one and it goes up to 10 okay so that is the first operand so this first part of my multiplication after that we can look at this second operand and you can really notice that it increases in each iteration by one so it goes one two three four five up to 10 and then it does the same thing in this second table so it goes from 1 to 10 again and then the same in my third table fourth fifth and it really behaves the same in this 10th table as well so that is the pattern that I want you to notice so this first oper end can be really represented using one for Loop so let’s say that that is going to be outer for Loop and it is going to increase each time that my second upper end Counts from 1 to 10 and that second opont we can really represent using another for Loop which is going to be really inner for Loop so the program the algorithm for for solving this problem is going to go like this you have outer for Loop which is going to count from 1 2 3 4 up to 10 so it is going to count from 1 to 10 and then you are going to have inner for Loop which is also going to count from 1 to 10 but for each value of my counter of my outer loop okay so that means that my outer loop counter changes only after my inner loop has counted from 1 to 10 so let’s copy the text of our task here I’m going to say multiplication table and let’s comment that text out so as we said in order to solve this problem we are going to use nested for Loops so I’m going to add empty space here and then the first thing that I need is going to be my outer loop so I’m going to really set up my outer loop I’m going to say four and then we need to declare a counter which I’m going to call I so I’m going to say int I is equal to and then since our outer let me show you this image one more time since it goes from one to 10 I’m really going to set its initial value to one so I’m going to say I is equal to 1 and then I’m going to write the condition so how long this for Loop is going to run and that is going to be while this I is less than or equal to 10 like this and then each iteration it is going to increase by one so that is going to be i++ okay and then I’m going to put this block of code here that is going to be executed in each iteration of this for Loop so what we need to do in each iteration of our for Loop let’s look at our image one more time and as you can see it really says that in each iteration of this outer for Loop you need to count from 1 to 10 so in this iteration here some other counter really counts from 1 to 10 and then new iteration so our I is now two and then counter counts again from 1 to 10 and then three but also we have this inner counter that counts from 1 to 10 okay so let’s really write that code so that inner counter that counts from 1 to 10 for each value of our I we are going to represent with another for Loop and that is going to be really that nested or that inner for Loop so I’m going to write four and that inner counter I’m going to call J so I’m going to write int J and since our J also Counts from 1 to 10 I’m going to set its initial value to one and I’m also going to say please iterate through this for a loop while our J is less than or equal to 10 as well and then in each iteration please increase the value of J by one so do this increment operation and then in each iteration of our J Loop we are going to execute this block of code here so what we are going to do in this block of code here well let me look at that image once more and as you can see in each iteration of our J so this is one iteration of our J this is second third fourth fifth and then 10th iteration of our J after that we change our I counter value so we increment that and then our J starts again starts one more to count from 1 to 10 so in each of these iterations as you can see really we have to multiply our I value counter with our J value counter and write the result of that so I am going to write that here I am going to write C out like this and then let’s write out the value of our I counter like this and then let’s write out this this multiplication operation and then let’s write out J like this this is just for maing our text so I’m going to put this equal sign and then I really want to multiply those two counters like this and let’s also add one end line here so that our text is formatted nicely because we are going to have multiple multiple lines so with this we we have really covered this multiplication part and there is only one more thing left to do and that is to add one more end line because I really want to make separation between these so I want to make separation between these tables this is going to be one logical part after that this is going to be another then third fourth and I want to put uh empty space space between those two so that I can group them group them so I’m going to add here C out and line like this and that should be it pretty much so if I run my program now as you can see it has generated this multiplication table from 1 to 10 okay and it has done that in a matter of less than a second so as you can see here we have this outer counter oh I cannot Mark that only so we have this outer counter which is going to be our I that counts from one to 10 but for each value of our outer counter for so for each value of our I we have to really count from 1 to 10 with our inner counter which is going to be our J as you can see here okay so these are the results of our multiplication operation and I hope that you have seen now how you can really use programming to your advantage how you can use it to solve not really complex but tedious tasks you would really need 20 or 30 minutes in order to write this yourself and you can now generate it with just couple of lines of code and less than a second of your computer’s power to to Really execute this code here that you have written and the most amazing part is that you don’t really have to put 10 here here so we have put 10 here because I want to make this example manageable for this video but you don’t have to hardcode these values here you can really use whatever values you want you can say for example let’s say 2,000 okay so I want to generate multiplications stable up to 2,000 how long would that take in real life so without programming okay now you see a few moments later okay so it is still running and it is going to generate around 4 million records which is a lot and it is going to do that in a matter of minutes so how long would it take for you to even just count from 1 to 4 million it would take you probably days if not months and also there were a lot of errors that you would probably make in that process so I hope that now you can really recognize the power of programming now if you needed to do this task you would really program your computer to do it and now you can just go take a break and your computer is going to finish that task for you so I hope that you can recognize now how you can use programming in order to solve different types of tasks that you can come across in your school in your job or life in general and if you like this video make sure to subscribe to my channel also click the Bell icon and share it with anyone who would like to learn programming and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners in this video I want to show you how you can draw shapes using C++ so before we start make sure to subscribe to my channel and also hit that Bell icon as well so that you are notified when I publish my next video and let me show you now what we are going to do in this video so here where is it here I have image of the task that we are going to do today and that is going to be really to draw this rectangle shape with the desired height and width and the symbol that our user enters okay so that is the task that we are going to do in this video and let’s very quickly analyze this problem and see how we are going to solve it so the first thing that we need is for our user to enter height width and then symbol and after that we will really need to figure out a way so figure out the algorithm on how we are going to draw this rectangle shape here so if you look at this rectangle shape you can really notice that it has the height that is going to be three of these symbols that our user has entered and then it has the width that is going to take four of these symbols that our user has entered for width okay so we are going to use nested for Loop in order to solve this problem here and if you’re not familiar with nested four loop I am going to link that video here because I have already made one video with nested four Loops so make sure to watch that video and in this video I am going to really use that nested for Loop in order to control height and width of our rectangle shape so we are going to have outer for Loop which is going to really control this height and then for each iteration of our outer for Loop we are really going to control this width with another loop and we are going to count from one up to four because four is the width that our user has entered and draw that shape in each iteration of our inner for Loop okay so that is what we are going to do so let’s now translate that into code I’m going to say here first thing that we need is going to be from our user to enter width and height so I’m going to declare two variables the first one is going to be height like this and then with Okay so let’s write out a message to our user so that he knows that he should enter height okay now let’s accept that height value in our height variable and after that let’s really copy this and do the same thing for our width like this and accept that value in our width variable so that is the first step the second step is going to be to declare another variable which is going to hold the symbol that our user wants to use for drawing that shape so I’m going to declare a variable of type Char and I’m going to call it symbol like this and let’s write out a message to the user so that he knows that he should enter that symbol like this and let’s say C in symbol so after we have acquired all the necessary inputs from our user which are height width and symbol that we are going to use to draw our shape now we are left to write the algorithm that is going to draw that rectangle shape so as I already said for that we are going to use nested for Loop so I am going to set up my outer loop the first Loop and I’m going to say four and then I’m going to declare the counter which is going to count the iterations of my outer loop since that outer loop is going to control the height of our rectangle I’m going to say int H so I’m going to give the H name to our outer counter and I’m going to set its initial value to zero like this and then we are going to put the condition how long our outer loop is going to run so while our H is less than height that our user has entered like this and then after each iteration of my outer loop we have to increment the value of our H counter so that would be the setup of our Outer Loop and let’s Now set up our inner loop so I’m going to write four and for this inner loop I’m going to declare another counter which I’m going to call W like this because this inner loop is going to control the width of rectangle shape so I’m going to set its initial value to zero as well and then I’m going to say that it is going to run while this W is less than with that our user has entered like this and also after each iteration we really need to increment the value of this W okay so what we are going to do in this Loop so in this inner loop if you look at this image here where is it okay here you can really notice that in each iteration of our inner loop it just draws this symbol that our user has entered so I am going to very quickly just see out so write that symbol out I’m going to say see out and then write out that symbol like this and there is really one more thing that we need to put and that is going to be after this four Loop so this outer for Loop finishes single iteration we really need to put something else at the end so here at the end of our outer for Loop and let’s look at our image so as you can see here after each iteration of our outer four Loop because it is controlling height and it is really iterating through this inner four Loop in each iteration of our outer four loop at the end of that iteration of outer for Loop we really need to put empty space so here I need to put empty space and that corresponds to this line here so here I’m going to write out C out end line like this and now if I run my program we should really expect to see the shape that rectangle shape of Dimensions that our user defines so let’s say for height four and then for width let’s say for example six and the symbol that we want to use to draw that shape let’s say that that is going to be this plus symbol okay so as you can see our rectangle has the height of four and then it has the width of 2 4 6 so it has the width of six of these symbols that our user has entered okay so there is one more thing that I notice here and that is going to be really to format this shape uh to be a bit more pretty so for that we are going to use the library which is called IO manip so I am going to include that Library here I have to say include IO manip like this and this Library here really contains a function that is that is called set W which means set width which is really going to set the width of the field that comes after it so I’m going to put here that function I’m going to say I’m going to put these redirection signs here and then in this space here I’m going to write out set V so set W actually and then here I want to put what is the width of the field that comes after this function so what is going to be the width of our symbol field and let’s use three for DOT for example so if I run my program again but let me stop it first and if I run it again oh no I haven’t stopped my program so I’m going to close it okay and now if I run my program you can see that it asks height and width again so previously we have entered four and six and then for the symbol let’s enter plus again and now as you can see our shape looks much nicer because of this set width function because it has really assigned to each symbol to each character that our user has entered the width of three Fields okay so let’s run our program one more time and let’s say that that height is going to be five and width is going to be seven and let’s enter another shape so let’s say for example minus and as you can see it has written out the shape so the rectangle shape of these Dimensions that our user has entered and it has used this symbol that our user also has entered so I hope that you enjoyed this video if you did make sure to sub subscribe to my channel and click the Bell icon as well also if you want me to make more videos like this so if you want me to use programming to draw more shapes make sure to write that in the comments down below so that I can know that you really enjoyed this video and like it as well and thanks for watching I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ for beginners and this video is going to be sort of a continuation to my previous video in which I showed you how you can draw rectangle shape using C++ and in this video I want to show you how you can draw triangle and reversed triangle shapes using C++ as well so if you’re not familiar with how you can draw rectangle I would suggest you to watch that video first I’m going to link it here because in my opinion it is a bit more difficult to draw triangle than it is to draw a rectangle shapes so what one more thing I have also created Instagram and Twitter accounts so if you are interested in how developer life looks like and also if you’re interested in behind the scenes of these videos that I post on YouTube make sure to follow me on my other social media so at true code Beauty Instagram and Twitter accounts I’m going to put the link to those in the description of this video so without further Ado let’s start drawing our triangle shape so here I have the shape that we are going to draw in this video and that is going to be this equilateral triangle shape that I have here and there is a couple of things that I want to explain before we start to write code the first thing is going to be that this height our user really has to enter this height so we are going to let our user decide how many of these symbols are going to be on this side and this side and this side as well and the second thing is going to be that our user defines this symbol so which whichever symbol our user wants to use in order to draw this shape we are going to use that symbol that he enters those are two things that we need from our user and then it is up to us to really think and figure out the algorithm that we are going to use in order to draw this triangle shape here so let me explain to you how we are going to do that so we are going to have two four loops and those are going to be nested for Loops so if you’re not familiar with for Loop nesting I’m going to link my video on that here so make sure to watch it so our outer four Loop is the one that is going to control this height of a triangle so in this particular case it is going to have five iterations 1 2 3 4 five and then our inner for Loop is the one that is going to control the width of this triangle and if you really look at this triangle you can notice that our outer for Loop really goes from one up to the number that our user has entered so it has five etration in this particular case because our user has entered five for the length of this triangle so for the length of its sides so that is the behavior of our outer for Loop it goes from one up to five in this particular case and then the behavior of our inner for Loop is going to be the following so in the first iteration of our outer for Loop loop our inner for Loop has only one iteration after that in the second iteration of outer for Loop inner for Loop has two iterations then in the third iteration of outer for Loop inner for Loop has three in a fourth iteration of outer for Loop inner for Loop has four and so on so that means that our inner for Loop goes from one up to the current value of the counter of outer for Loop so let’s translate that into our C++ code let me return this picture here okay so before we start to write that algorithm I am going to create a variable which is going to hold the length that our user enters so I’m going to call that variable length Okay and then let’s write out a message to the user so that he knows that he should enter length like this and let’s store the value in our length variable so that is the first thing that we need from our user and then the second thing is going to be a symbol so that is going to be of type Char like this so I’m going to write out oh see out symbol like this so that our user knows that you should enter symbol as well and let’s store that symbol and our symbol variable so after we have acquired these two things from our user let’s translate the algorithm that I just explained into C++ code so as I said we are going to have two for Loops outer for Loop which is going to have counter that I’m going to call let’s say I and that outer for Loop its counter goes from one up to the value that our user us has entered and it increases by one in each iteration okay so I’m going to say I is equal to 1 and then I is I is less than or equal to length so length that our user has entered and then please increment that I in each iteration so that is going to be outer for Loop and then inner for Loop is going to go from one up to the current value of outer for Loops counter so in the first iteration is going to execute only once so it is going to have only one iteration in the second iteration of outer for Loop it is going to execute twice in the third it is going to execute three times four times five times so how we are going to write that we are going to say four int and then our inner for Loops counter I’m going to call J and J goes from one up to the value of our I so up to the value of outer four Loops counter and it increases by one as well in each iteration and in each iteration it has to write out this symbol that our user has entered so let’s say see out symbol like this okay and then there is one more thing that I want to explain and that is going to be after each iteration of outer for Loop really the next iteration starts in a new line so we are going to write that here here I’m sorry so at the end of our for loop our outer for Loop we are going to say see out end line okay and now if I run this program it asks for length I’m going to say that length is let’s say five and then symbol is going to be star symbol and as you can see it has really written out a triangle that has the length five of these symbols that our user has entered and there is one more thing that I want to do in order to format this shape here to be a bit prettier and that is going to be really to add a function here which is going to assign to each of these symbols that are user enter so that our for Loop writes out uh width of two fields and that is going to be done using a function that is called set W meaning set width and this function here is going to give the space of two fields to the symbol that comes after it and in order to use this function here we have to include its library and that is going to be iio manip Library so I’m going to say include like this IO manip oh okay and now this underline has went away so if I run my program once more and I enter let’s say for length six and then for symbol I enter this this symbol here as you can see our triangle shape looks better now so it has the height or actually the length of six of these symbols that our user has entered and it has also used this symbol here in order to draw this triangle shape and there is one more thing that I want to show you so at the beginning of this video I promis that I’m going to teach you how you can draw triangle shape and then reversed triangle shape as well so there is one very beautiful thing about programming and that is going to be code reusability and about real code reusability you are going to learn when we learn about classes and functions and when I make my videos on functions I’m going to link that video here so make sure to watch it because functions really are one of the most important things that you have to understand not only for C++ programming but for programming in general so make sure to watch that video and let’s say that for now we are only going to really adjust this code here so we are going to modify it a little bit in order to draw this shape here so if you look at these two shapes you can really notice similarities and what are those so this inner for Loop behaves about the same in both of these triangles but there is one key difference and that is going to be that in this triangle shape our outer for Loop Counts from 1 to five and then in this reverse triangle our outer for Loop really counts from five to one so if we modify that we are going to have this reversed triangle so let me move these and then I’m going to really copy this here so I’m going to use contrl C and then control V and then let’s really add a couple of end lines between these two okay like this and then let’s modify this triangle shape that we have just explained and drawn and as you could see on this image here our outer for Loop Counts from five to one which means from the size that our user has entered from one so that means that if we change our outer for Loop we should get that reverse triangle shape so it goes from length like this and it really goes while our I is greater than or equal to 1 and then our I decreases in each iteration so it decrements and now if I run my program it asks me for length let’s say that length is going to be five and then symbol is going to be let’s say this plus symbol and when I pressed enter we have gotten both of these triangle shapes so this one that we have drawn first and then this reverse triangle shape as well I hope that now you have really seeing the real beauty of programming you learn some Basics and then you can use those basics in the most creative ways that you can think of so I hope that you like this video if you did make sure to subscribe to my channel click the Bell icon as well so that you are notified when I publish my next video and a lot more great videos are coming thanks for watching I’m going to see you in my next video bye hi everyone welcome to my channel welcome to the first video of C++ functions if you’re a beginner at C++ make sure to check out my playlist on C++ for beginners and there you can find some of the most important Concepts that you will need to understand and know in order to work with C++ and in this video we are going to talk about C++ functions so functions are one of the most important Concepts that you will need to understand and use in order to be a good programmer and that is not only case in C++ but in most programming languages as well the first thing that I want to explain is what is function function is a block of code that is grouped together and usually that block of code solves a specific problem meaning it performs a specific task and that block of code is executed only when you call that function meaning only when you invoke the function the body of that function is going to be executed and each C++ program contains at least one function and that is going to be main function so this here and the execution of your program starts on the first line of your main function and then it ends when it comes to this last line so this Clos bracket of your main function and also it can end when it comes to return statement but we are going to talk about return statements later in this course so main function is the main one so the first one that is executed and whatever code you put in your main function that code is going to be executed as part of your program so if I say here for example see out and I say hello from main function like this and let’s add a new line like this and now if I run my program you can see that our program has written out hello from Main and that is the first function that our program starts executing besides from main function you can also create your own functions and let’s explain how you can do that so there are a couple of things that you need to know in order to create your own function and that is going to be following so the first thing that you need to really write when you create your own function is going to be return type of your function and that is going to be void for now which means that this function is not going to return anything and we are going to talk about return types more in detail later in this course so for now we are going to use void return type meaning that this function that we declare in this line is not going to to return anything and then you write out the name for your function and let’s call it function like this and then in these parentheses you can put arguments or parameters that your functions that your function really uh receives and for now these parth parentheses are going to be empty meaning that this function does not receive any arguments and then in these curly brackets we are going to put the body of our function so this here is going to be the function that we created ourselves and you have to specify specify the return type of your function after that you write out the name of your function then in these parentheses you can put any arguments that your function receives in this particular case these are empty and we are not going to send any parameters to our function and then here is going to be the body of your function and what we are going to put in this body let’s say see out hello from function like this and let’s also add end line at the end of this function so now we have really created our own function which is called function and if I run my program now what do you think that is going to happen write that in the comments down below so I am going to run this program and as you can see nothing has changed really our program has written out hello from Main as it did before so before we created this function that is because as I explained your function is not going to execute until you call that function so until you invoke it it is not going to execute so in order for our function to be executed we need to invoke that function and how that is done so here in this line after hello from Main we are going to put function and then these parentheses so this here is the invocation of our function and now our function is going to be executed so now if I press this play button you can see that now our console has changed so now we have hello from Main and then also hello from function so that is because we have invoked this function here and you can invoke this function wherever you need it so you can I have invoked it after this line here but you can invoke it as well before this line here if you need to and if you want to so now if I run my program you can see that it first says hello from function and then it says hello from Main because this function has been invoked first and then we have written out this line of code here and that you can see in this console window and let me show you one thing so I’m going to return this after this line of code the invocation of our function I’m going to return here and now I’m going to take this code here so this uh definition of our function and I’m going to paste it after our main function and let’s see what is going to happen now so let me delete these these blank lines and now if I run my program you can see that our program has failed to build so we have compile time errors and in this window here in this error list you can see that it says function identifier not found which means that this function here is really uh our compiler does not understand what this function is because C++ code is executed from top to bottom and when it comes to this line here so when it comes to the invocation of your function it is really not familiar with this function it it does not know what this function is so you have to either put this code before your main function as we did before or you have to do um other thing which is really the recommended way to create your functions and that would be to create definition and Declaration of your function so what are definition and Declaration of function Declaration of function is going to be really this here so I’m going to copy this and put it before our main function and this declaration of function is going to tell to your compiler what is going to be the return type of your function what is the name of your function and then if there are any parameters that your function really receives you are going to put those in these parentheses here so that is going to be Declaration of your function and that part decoration of your function goes before your main function and after that you are going to write the definition of your function and the definition of your function is going to go after your main function and in that way you are going to make your code more readable meaning that when someone else comes to your code and if your code had 200 or three or 400 lines of code then it would be really hard to to read that code and for someone it would be really hard to manage and uh go through your code so he is going to find it much easier if he has all the Declarations of your functions before your main function and then if he needs to read a specific definition of a function he can rightclick the name of that function and click go to definition and then he’s going to be taken to the definition of your function so the specific one that he needs to read so that you don’t bombard um that user with all the functions all the definitions of a fun functions that you have in your program and in this particular situation it is only one function but uh your program is going to consist usually of more than one function and that is really unreadable when you find a lot of definitions of a functions before your main so you can right click on your function and say go to definition or you can press F12 so you can click on your function and then press F12 and you are going to be taken to the definition of your function Okay so so this here is the recommended way to create functions and now if I press play button you can see that our program has executed actually has written out the same as it did before so we have uh really removed that error that we had when we um moved this definition of a function after our main because we have added this declaration of a function before our main function and there is really the most most important thing that I want to mention in this video and that is going to be what is the reason why functions exist okay so we have seen that they make your code a bit more readable so they group the parts of your code together so that you can manage your code easier and the most important characteristic of functions is that they make your code reusable meaning that you can write a specific code once so you can solve a specific problem once put the solution the algorithm the code for that problem in a function and then you can really invoke that function however many times you need it so here I can really copy this and then paste it let’s say three times if I needed it and then if I run my program you can see that this function has been executed three times here and that is really the most important thing about functions which means functions make your code reusable you don’t have to write the same code over and over again and you should really try to group your code in functions so that each function does a specific task nothing more than that and in that way you are going to make your code easier for yourself and for other people as well that are going to read your code so I hope that you understood what functions are and how they are used and we are going to talk about function functions in more detail in my later videos so make sure to subscribe to my channel and click the Bell icon because only then you are going to be notified when I publish my next video and also follow me on my other social media platforms so Instagram and Twitter accounts through code Beauty thanks for watching and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ functions in this video I wanted to talk about function parameters or arguments and the first thing that I want to explain is what are parameters so what are arguments sometimes a function needs to receive a certain value a certain variable and then perform a certain task on that value so on that variable or it really needs the value of that variable in order to perform a certain task so let’s explain how we are going to create a function that receives a parameter in C+ plus so here I’m going to add a function of return type void and I’m going to say that that function is going to be called let’s say um introduce me introduce me like this and then in these parentheses here we can put parameters that our function is going to receive and after that in these curly brackets we are going to put the body of our function so as I said in these parentheses here we are going to put parameters and they are specified in a following way so first you are going to write out the type of your parameter and that is going to be string like this and then we are going to specify the name of our parameter and that is going to be let’s say name so we want to pass in this function that is going to introduce our user we want to really pass the name of our user and then what our function is going to do we are going to put in these curly brackets here and that is going to be really to introduce our user so our function is going to write out C out um let’s say my name is and then let’s write out this name that we have received in this function so I’m going to say name and I’m going to add end line like this okay okay so this is the way to pass a parameter so to pass a value to your function and as I said in my previous video you can really separate this um declaration and definition of a function so you can put really um Declaration of your function here so before your main function and then you can put definition of your function after your main function and if you don’t know how to do that make sure to watch my first video of this playlist okay so now I want to invoke this function here and how we do that well we specify the name of my function so I’m going to say introduce me and then since this this function receives um argument so since this function function receives a parameter here we really have to pass that parameter to our function and that I’m going to put here so here I’m going to pass an argument to my function so I’m going to say Salena like this and this here really is called argument so it is a value that we passed to our function and then here it is called parameter okay so now if I run my program you can see that my function has successfully introduced me so it says my name is Salina like this okay so here we have really here we have really um defined our function so the parameters that our function receives name return type and then uh the block of code that our function is going to execute and then here we have invoked our function and passed an argument which is this string of text here to our function which is going to be received in this name variable and then our function is going to really treat it as a variable which means that it is going to write that value here okay okay and now if I try to invoke this function once more so I’m going to copy this this line and then paste it here and let’s say that I’m going to pass it a different value so I’m going to say for example Anna okay you can see that uh now our function has successfully introduced two users so it has said my name is my name is Salina and then my name is Anna and there is also another thing that I want to explain and that is going to be how you can pass multiple arguments to your function and that is going to be in a following way so here in these parentheses where I have specified my first parameter you can put comma sign and then you specify your second third fourth fifth and um your other parameters so you specify the type which is also going to be string in this particular case and let’s say that my second parameter is going to be called City like this and let’s add another one so let’s say int H like this so now in this function I’m going to write out also where is my user from and also how old my user is so I’m going to write out C out um I am from and then let’s write out this city that we have passed in this function and add also end line and let’s write out also I am I am um age so I am however many years we have passed in this function and then let’s say years old old like this okay so now we have really introduced our user in more detail and we have passed to this function name City and age information for our user but as you can see here our function so our compiler really says that this function is not valid it has too few arguments in a function call meaning that this invocation this call of a function does not really contain all the necessary parameters or all the necessary arguments that we need to pass to our function which means that it really lacks the city and age parameters so here here I’m going to put comma as well and then I’m going to specify my city this here is bolded so it is bold and that means that we have to really pass a city value to our function so I’m going to write out mostar like this and then I am also going to specify age so I’m going to say 25 and let’s do the same for our ni user so I’m going say that our Anna is from New York and let’s say that she has 27 years old for example so now when I run my program you can see that we have successfully introduced two users so my name is Salina I am from mustar I am 25 years old and then also my name is Anna I from New York and I’m 27 years old okay so and we have really written this code only once and then we can reuse it however many times we need to so in this particular case we have reused it two times okay and another thing that I want to explain is going to be a default parameter so what is default parameter sometimes you really don’t want to pass a value to your function meaning that in a specific situation you don’t have that value or you don’t want to pass it and in that case you want to Define define find um theault value for your parameter so in the case where you use where your user does not pass that argument to your function for example you can say that your age parameter here has the default value of zero okay and that means that you don’t really have to pass this age parameter anymore so here I’m going to delete this age for my Anna user and let’s let’s run our program now in order to see how this function is going to behave for this first user and then also to see how it is going to behave for this second user user which did not specify this age parameter so this age argument and when I run it you can see that my first user has been introduced as it was previously so I am 25 years old and then the second user which did not specify age argument it really said I am zero years old meaning that our function has really taken this default value and it has written out I am and then this default value and then years old oh we are missing s here okay so I’m going to add s and I want to do a following thing so in the case where our user does not pass this value for our AG parameter I’m going to really check whether we have that value or we have this default value and then in the case where we have only this default value I don’t want to write this line of code here so I am going to say here if age is not equal to zero meaning that our user has specified some other value which is not zero then and only then we are going to write this line of code but in the case where we have only this default value we do not really want to write out that our user has zero years old cuz that does not make sense okay so as you can see now my first user has been introduced as I am 25 years old and then my name is Anna I from New York since Anna did not specify how old she is we haven’t written out her age here because of this check that we have added okay so that was about default parameter and there is one thing also that I want to um that I want to say about this default parameter and that is going to be really if I delete this is equal to zero and then I try to assign theault value to this city parameter so I say let’s say that city is equal to default like this you can see that the compiler is really underlying this function and it says okay it says theault argument not at end of parameter list meaning that you can specify theault argument only at the end of this list so if you want to specify default value for this parameter you will have to specify default value for this one as well so if I add theault value here so I have added zero then we can really add a default value for this second parameter and then we can add default value for this this one as well and now we are really uh left with so our compiler is not underlying this uh introduce me function name anymore okay and this does not make sense so I’m going to delete it but I wanted to explain that you cannot specify default value for your middle parameter if you did not specify a default value at the end of your parameters list and there is one more thing that I want to show you and that is going to be that you don’t have to hardcore these values as we did here so I’m going to comment these out and then I’m going to let my user Define his own values for these three variables so I am going to declare uh two variables of type string which are going to be name and City and then also I’m going to declare a variable of type int which is going to be called age and then I’m going to say see out so please enter a name like this it’s not capital letter okay and then see in name and then see out City so after my user has entered name I want him to enter City so C in city like this and then also I want to enter age and C in age like this so now after my user has has specified these three variables so name City and age I can pass these three in my introduce me function so I can say introduce me and then pass name and City and age like this and if I run my program now as you can see my program really asks me to enter a name so let’s say that name is going to be Tom for example and then let’s say that city is going to be London and age let’s say 32 okay and now as you can see my function has successfully introduced Tom so it says my name is Tom I am from London and I am 32 years old okay and you don’t really have to use these names for the variables in your main function so the names of these variables here do not have to be the same as these names here here so you can call these for example name one city 1 age 1 but you are going to have to use these names in your main function so you will have to say name one city 1 age one and here as well but these names do not have to be the same as these names here your program is going to work correctly you have to however have the same type here and here so this here has to be string if it has been declared as string here and this one as well and then age also has to be of type int if it has been declared as int here and once more if I run my program you can see that it asks for name so Tom New York and then age is going to be 22 and as you can see my name is Tom I’m from New York I am 22 years old so your program works just fine so I hope that you have understood how parameters behave in a function and how you can pass multiple parameters to your function and also how you can specify a default parameter in your function and if you enjoyed this video If you learned something new make sure to subscribe to my channel click the Bell icon so that you are notified when I publish my next video also like it and share it with your friends and follow me on my other social media so Instagram and Twitter account true code Beauty thanks for watching and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another video of C++ functions in this video I wanted to talk about return statements and return types of a function so what is return type of a function well return type of a function can be any data type that can be used in order to declare variable so it can be int float bull charart double um it can be any user created data type and it can be void as well which means that that function is not going to return anything and as we explained in one of my previous videos function is a block of code it is a code that is grouped together and that code is going to perform a specific task and here I want to make a difference between functions that return value and functions that don’t return value and functions that don’t return value can be for example um an example of a function that does not return value can be a function that writes out a menu to your user so you call that function that function writes out a menu to your user and the job of that function is done there so you are not expecting any value to be returned from that function but an example of a function that returns a value can be a function that performs a specific calculation let’s say on arguments that you pass to that function and after that calculation is performed you are EXP expecting a certain value so result of that calculation to be returned from that function and an important thing is that function can return only one value so only one return statement inside your fun function is going to be executed and I’m going to show that on the example that we are going to do in this video and now I’m going to show you really how functions make your code easier to read easier to understand and how they make your code reusable so we are going to show that on an example which we are going to first make without using a function so we are going to make a program that is going to determine whether a number is prime number or not and we are going to do that first without chosing functions and then I’m going to refactor that program so that it uses functions and then I’m going to show you how that program becomes instantly more readable more understandable and also how that makes your code reusable so as I said we are going to create a program that is going to determine whether our number is prime number or not and the definition of a prime number is a number that is divisible only by itself and by one so if that number is divisible by any other number so not one and not itself but any other number that means that that number is not prime number so the first thing that I’m going to do here is I’m going to declare a variable of type in call it number and then I’m going to let my user enter that number so I’m going to write out the message to my user and then use the C in command in order to get that number and store it in my number variable and then let’s explain the algorithm that we are going to use in order to determine whether that number is prime number or not the definition of a prime number is a number that is divisible only by one and by itself which means that if you can find any other number number besides one and that number itself that you can use to divide it by this number that are user has entered and get the remainder of zero that means that this number is not prime number so how we are going to solve this problem well we are going to iterate through all the numbers between two and this number minus one and then we are going to check whether this number is divisible by that count value so I’m going to write out for INT I is equal to 2 and then I is less than number and in each iteration I want to increase the value of my I counter so why haven’t I used one here and why haven’t I said here that this I is less than or equal to the number because every number can be divided by one so we do not need really to check that and also every number can be divided by itself and we do not need to check that as well so here we are going to iterate through this interval so between two and while I is less than that number that our user has entered and here we are going to check whether this number that our user has entered can be divided by any value of ouri so in any iteration which we are going to go through and in the situation where it can be divided we are going to use a flag which I’m going to declare here and that flag is going to be of type bu and let’s call it is prime flag like this okay and this flag is initially going to be assigned a value of true so we are going to initially say that all the numbers are prime numbers and then we want to prove that wrong for the numbers that are not so we are going to use this flag in a following way here I’m going to check in each iteration if our number that our user has entered can be divided by that current counter so by the current value of I so I’m going to use this modular operation and I’m going to say if this number modulated by I is going to give us the result of zero so when you divide this number by I do you get the remaining of zero and if this operation here results as true we are going to say that our is prime flag is going to be false so we are going to assign the false value to our is prime flag because we have clearly found one number which is not one and that number itself that can be used in order to make this condition true so here I’m going to write out is prime flag and then I’m going to assign it a value of false and and then another thing is going to be really if we find one number so even one number is enough to find that that really fulfills this condition here in order to say that our number is not prime number and in that situation we do not really need to check any more numbers because we have determined that our number is not prime number so here I can use break statement so I can say if you find only one number please do not iterate through this for Loop anymore because we do not need to find any more numbers so in this situation here we have iterated through all the numbers between two and that number that our user has entered we have checked whether that number can be divided by any value of our I counter and if it can be divided meaning that it gives the remainder of zero after that division we are going to set our Prime flag to false and we are going to break from our four Loop and after we have have successfully fulfilled this so after we have successfully iterated through this for Loop or we have fulfilled this condition in one iteration we are going to leave our for Loop and we are going to come to this line of code here and here I want to check what has happened with my is prime flag meaning I want to check whether this is prime flag has has stayed true which means that our for Loop has executed all of its iteration and it has not find any number that can be really used to fulfill this condition here and in that particular situation that flag is going to stay true and that is going to mean that our number is prime number so here I’m going to write out if is prime flag meaning if this value here if this variable here holds the value of true we are going to write out C out like this and we are going to write out prime number like this okay and let’s also add end line here but in a situation where this here does not hold a value of true that means that in uh one iteration so it can be the first one it can be the last one it can be any in between we have really found at least one number that can be used to fulfill this condition and that has set our is prime flag to fals and in that situation we are going to use our else statement and we are going to copy this and we are going to really modify it to say not prime number like this okay so now if I run this program you can see that it asks us to enter a number I’m going to enter a number um let’s say five for example and it says that five is prime number which is correct five is a prime number and let’s run it one more time and let’s say that we want to check six this time and as you can see our program has written out that six is not prime number and six really is not prime number because it is divisible by two and by three besides from one and itself okay so now you have seen how we can really solve this problem and let’s try to refactor this program here in order to use functions so how we are going to do that well the first thing that we need to do is we need to create function and I’m going to do that here and since this part of code here this is the part of code that we are going to move to our function and since this part of part of code here determines really whether our number is prime number or not and then sets this flag to true or false let’s say that we are going to create a function which is going to check as as well whether the number is prime number or not and then it is going to return a value true or false meaning the number is prime number or the number is not prime number and that we are going to write here so here I’m going to put the return type of my function and that is going to be bull so that is the return type of my function and then the name for my function is going to be is prime number like this and then let’s say that we want to pass an argument to that function and that argument is going to be of type int and that argument is going to be really the number that we want to oh the number that we want to check so we are going to pass the number to our function that function is going to in this body here check whether that number is prime number or not and then it is going to return bull value meaning true or false so if the number is prime number it is going to return true and if the number is not prime number it is going to return the value of false and how we are going to do that very simple so you see this code here I’m going to comment this code here and I’m going to really um oh I should have copied it before so I’m going to copy this code here and I’m going to move it to my function okay and we have previously explained this code here so we do not need to explain it again but what I’m going to say here is after this algorithm is done so after we have really uh stored the value of true or false so we have stored the value of false in our is prime flag or we have really kept this True Value inside our S Prime flag what we need to do is we really just need to say return is Prime oh is prime flag like this so after we have checked whether our number is prime or not we can really just return that value from our function okay so we can now after we have moved this code to our function we can delete it from here like this okay and then as you can see we have been left with this is prime flag which is not declared now so identifier is prime flag is undefined meaning that now we have to really declare it and we have to assign it a value so I’m going to say here bow is prime flag like this and then the value that I’m going to assign to my is prime flag variable is going to be whatever value our function returns so here I’m going to say please call my function is prime number oh this prime number like this okay and then pass to that function this argument here so our function expects a value and that is going to be this number that we want to check whether it’s prime or not and then after this function here is done it is going to return a value of either true or false and that value is going to be stored inside our S Prime flag variable okay so now if I run my program you can see that it asks us again to enter a number so so I’m going to say let’s check number nine for example and it says that number nine is not prime number which is not because it is divisible by three and let’s check number um 13 for example and 13 is prime number okay so after we have really used this function in order to perform this particular task I want to show you one more thing and that is going to be how we can refactor this fun function here in order to make it even more simple and if you look at this function here you can say you can see that this is prime flag is set to True here and then in this situation where we find number that can be used to fulfill this condition here we set that is prime flag to false and then we use this break statement in order to break our for Loop so we are not going to iterate anymore through our for Loop when we come to this break statement and then we really go here and then we return that is prime flag but we can do that in a more simple Manner and that is going to be really here so here in a situation where we find number that is really fulfilling this condition here we can say at this very line of code we can say return false like this because this and this code of this code here we can delete and what I can use this return statement because this return statement is going to really break our for Loop and it is going to return the value from our is prime number function meaning it is going to do two things so we do not really need to set the flag and then return the value of that flag at the end but we can really say if you find any number that can fulfill this condition return false immediately so break for Loop and also return the value from our function meaning and the execution of that function because we have found our result and then here as well we do not really need to declare this is prime flag to true and then return it because it is clearly true so we can say here return true and then remove this flag from here like this and then as well I can remove these curly brackets and make my code even more readable so now I want to explain what we have done so here we are passing a number to our s prime number function then we are iterating through all the numbers between two and that number we have skipped one and that number itself because all the numbers are divisible by one and by that by that number itself and then we are checking whether any of these I values between two and number fulfill this condition here that would mean that that number is divisible by that current value of I and that would mean that our number is not prime number so at that very moment we can say please return false because this number is clearly not prime number but in a situation where this for Loop has really iterated through all of its iterations and it has not found any number that fulfills this condition here that means that this return false statement has not been executed and then that in that particular situation this return statement here is going to be executed and this return statement here says return true okay so this part of code here has not changed nor it is going to change and if I run it again you can see it asks me to enter a number I am going to enter number seven then it is going to check whether that number is prime number so it is going to call our function and assign the result of that to our is prime flag variable and I press enter here you can see that we get result prime number because 7 is prime number okay and that is really making your code much more readable and reusable as well so this main function here is much more clean than it was before and now I want to show you the most beautiful thing and that is going to be how we can make this is prime number function reusable so let’s say that I am going to delete all of this code here so I’m going to delete it and now I have I know that I have written out this is prime number function and I know that that I can really invoke this function and use it whenever I need to determine whether some number is prime number or not so let’s say that now we want to check all the prime numbers between 1 and a th000 for example so how we are going to do that well we are going to iterate through all the numbers between one so I is equal to 1 and then I is less than or equal to 1,000 and increase our I in each iteration by one like this and then in each iteration I really am going to just send this I to my function and I’m going to really get the result from this function so this function is going to tell me whether that I is prime number or not so here I’m going to declare a variable of type ball and I’m going to call it is prime and I’m going to assign to that variable a value of is prime number when I pass it the value of I so whatever this function here returns whatever this function here results in I’m going to assign that result to my is prime variable okay and now what I want to write out is all the numbers that I that are prime numbers between one and this thousand value so I’m going to say if is prime like this I’m going to write out C out and then I want to write out the current value of my I counter because that is number that we are talking about so I is prime number number like this okay and I’m going to add a new line at the end so this code here is really going to check all the prime numbers between one and a th and it is going to write out all the prime numbers in that interval and for solving this particular problem so whether the number is prime number or not we have used this is prime number function which we have written once and we have really tested it once we know that it works as it should and now we can really close it we do not need to really think about how we are going to perform this task never again so we have written it we have oh we have tested it and now we have this algorithm stored in our is prime number function and we know that this function Works in a following way so we pass it a value and then this function return returns us true or false variable meaning that the number is prime number or not so once more if I run my program you can see that we have gotten the expected result so we have gotten all the prime numbers between one and a th000 okay and there are a lot of numbers okay so you can check these numbers on your calculator if you want and let’s say now that we really want to check all the numbers between not just one and a th000 but let’s say 1 and 10,000 or 100,000 okay we can call just this is prime number function pass it the value of our I and then check the value that this function has returned and this function has really told us whether the number is prime number or not and if the number is prime number we just want to write that number out to our user so if I run this function again you can see that it is writing out all the prime numbers between 1 and 100,000 and there there is a lot of numbers again so you can even count how many prime numbers there are in this interval so between 1 and 100 ,000 and let’s say that I’m going to leave that part to you so if you want to really uh upgrade this program so that it counts how many prime numbers there are in this interval you can write that code in the comments down below and I’m going to check it and as well you can leave it for other people to see and use if they need it so I hope that you have understood this return type of a function and in this particular situation it was Bull type but you can have as a return type from your function you can have any other data type so you can have float chart int uh string whichever data type you can really uh use in order to create a variable you can use that data type in order to be um return type of your function so in this particular situation I wanted to show you an example of a bit of a more complex function let’s say that is going to determine whether your number is prime number or not and it is going to really receive that number that you want to check as an argument as parameter and then it is going to return only true or false meaning that number is prime number or that number is not prime number and once you have written this code and once you have tested it you do not really need to bother with this function anymore you do not need to remember this code nor read it nor even understand it in order to use this function only in a situation where you have a b bug and that bug is in this particular function only in that situation you are going to need to really reread this function and fix that bug in any other situation you can really just use this is prime number function uh and as well we could have made other functions with other return types we could have created for example a function that is going to um to sum two numbers so you are going to pass to a function two numbers let’s say number a and number B which your user enters and then that function is going to sum those two numbers and it is going to return the result to your main function from where you are going to invoke that function and as well I can leave that to you so you can really practice writing functions on that example for example and you can put the code for that um exercise in the comments down below as well and I’m going to check it and in this particular example as I said I wanted to show you a bit more complex example so that you can really understand why we need functions and why they make our code understandable and reusable and if someone else comes to your code now and he sees that he has um is prime number function he does not really need to open this function and read how this function works it is pretty clear from this this declaration itself that this function receives a number and determines whether that number is prime number or not and returns that true or false back to the invoker back to the function that called that invoked this is primed is prime number okay so I hope that you like this video I hope that you enjoyed watching this video if you did make sure to like it and also subscribe to my channel and follow me on my other social media so Instagram Twitter account at true code Beauty the link is going to be in the description and I’m going to see you in my next video bye hi everyone welcome to my channel welcome to another C++ functions video and in this video I want to talk about concept that is related to functions which is function overloading so I want to First explain what function overloading is it means that you can create multiple functions with the same name but those functions are going to have different parameters so here I have opened my visual studio stud and let’s create a function which is going to be called for example sum and I’m going to put the return type of that function to be int so integer if you’re not familiar with function return types I’m going to link that video here so make sure to watch it so first thing we write the return type of our function and then we write the name of our function and as I said our function is going to be called sum and then I want to pass parameters to this function so I really want to declare which parameters this function is going to receive and those are going to be two parameters the first one is going to be integer and I’m going to call it a and then the second one is also going to be integer and I’m going to call it B like this so this is going to be our first function and let’s also say that we want to create another function which is also going to be called sum but this time it is going to be of return type double like this and then I’m going going to call it sum as I already said and this function is going to receive two parameters as well but those are going to be of type double so I’m going to say double A and then Double B like this okay and as you can see these functions are underlined because it says function definition for sum not found meaning we have declared our functions here but these functions are missing the the definition so definition is missing for this function and and then this function as well and let’s also create one more function so I’m going to say for example float and then I’m also going to call it sum and let’s say that this time I’m going to give it um three parameters so I’m going to say float um let’s say float a and then float B and then float C like this okay and then what I want to do is I want to create definitions for these functions which I’m going to do here here so the first one that I want to Define is going to be this one here so I’m going to copy its declaration and then I’m going to add these curly brackets and here I’m going to put a definition for this function so let’s say that I’m going to create a variable of type int and I’m going to call that variable result like this and I’m going to assign it the result of a + b like this and then what I want to do is return this result from my function fun so here I’m going to say return result like this so this would be one way of returning the result from your function and then another way to do the same thing is going to be to say really return here so instead of creating a variable that is going to hold this result you can really return this result itself from your function so you can say here return A+ B and now we can delete this line and as you can see this function became shorter and more readable so now I want to Define this function here so I’m going to say double okay I should have copied this and then double b as well like this so here I want to put the definition for this function here and this function oh I’m missing the name for my function it is called sum so this is return type this is the name of our function and then these are parameters of our function and here I want to say return a + b as well but this time our a and our B are going to be of type double so in this situation there were integers and then in this situation there are decimal numbers okay and let’s also create a definition for this function here so this float function and this time I’m going to copy it okay and I’m going to add these curly brackets and here I want to write return and then A + B + C like this okay so now how we are going to test this we can call these functions we can invoke these functions here in our main function and the first one that I want to invoke is going to be our in function so I’m going to say C out and then this line of code is going to write out whatever our function returns so I’m going to say please write out whatever my sum function returns and then I want to pass to my sum function two numbers and those two numbers are going to be two integers and as you can see here we have really helped from our Intel ense which says you have three possible functions that you can call so you have overloaded three functions and you can navigate through these using your arrows so the first one is going to be our function that has float return type and that function return that function receives three parameters of type float and then the second one is going to be the one that has return type double and that function receives two double parameters and then the third one is going to be the one that returns integer and that function receives two integer values so here I want to call our integer function and I want to pass to that function four and three for example and let’s also add end line like this and now if I run my program we can expect to see the result of this line of code here and as you can see the result is seven meaning that our function has been invoked and then this line of code has received the result of summing these two numbers and that has been written out in our console and the result of summing four and three is seven Okay so now I’m going to stop this console and I want to test these other two functions so I’m going to say see out and let’s test our some function that receives two double parameters so it is going to be this one here so I’m going to say 4.4 and then 3.3 for example and I’m going to add end line at the end as well okay and now if I run this program you can see that our second line is is 7.7 meaning 4.4 + 3.3 is going to be 7.7 which is correct so we have successfully tested this function here so this double function that returns double and receives also two double parameters and then let’s also test this third function so here I want to say C out sum and then here I want to pass three parameters the first one is going to be let’s say four .4 and then the second one is going to be 3.3 and then oh three decimal points 3.3 and then the third one is going to be 2.2 for example okay now this invocation should invoke this float function so when I run my program as you can see here this third line contains the result of summing these three numbers and you can check this out using a calculator but this is the correct result so as I already explained this represents function overloading and we have created three functions the first one is the one that receives in types and returns in type as well then the second one receives double so two double uh variables two double parameters and returns double as well and then the third one really contains three arguments so three parameter parameters but it has the same name as these previous two and then it returns float type as well and then now when we call when we invoke those functions we can really pass different data types and depending on those data types we are going to call adequate function so in this first line we are going to invoke this and then in this second line we are going to invoke this and then in our third line we are going to invoke this okay so I hope that you understood what function overloading is and also I hope that you have understood that you don’t have to create functions with different names when they are doing uh almost the same thing so these three functions these three are doing the same thing they are summing the numbers that we pass to them only in this particular situation the first one is summing integers the second one is summing decimal point numbers and then this third one really sums three numbers and we have overloaded this sum function and we didn’t have to create functions that are for example sum int and then some double oh double and then some float like this so we didn’t have to name these like some int some double and some float but we can use the same name as long as we have different parameters different number of parameters different return type or something similar in that particular situation our compiler is going to decide on its own which function it should call I hope that you have understood what function overloading is and how you can use that thanks for watching and I’m going to see you in my next video bye hi everyone welcome to my channel my name is Salina and I make it and programming related videos so if that is something that is of interest to you consider subscribing to my channel and give this video a thumbs up as well now in this video I want to show you how you can build an ATM application and the first thing that I want to do in order to build this application is going to be to plan the functionalities that this application is going to have so I’m going to put a comment here and then here we are going to write all the functionalities that our ATM is going to have so the first one is going to be to check the balance so I’m going to write that so check balance and then another functionality is going to be to deposit money so let’s say deposit like this okay and then what else well we should be able to withdraw money as well so let’s write that okay and I definitely want to show the menu to my user so I’m going to write that as well so I’m going to say say show menu like this okay now after we have written these functionalities that we want to implement the first one that I want to implement is going to be this show menu function so I’m going to put the code for this show menu functionality in a function and let’s create that function here so I’m going to say void it is going to be of void return type let’s call it show menu like this oh like this okay and then what I want to do here is I want to write out the menu to my user so I’m going to say see out and then let’s add these star symbols four 5 6 7 8 9 10 that is going to be enough like this and then I’m going to copy this on the other side so that it looks proportional okay and then the first option that I want to write out my user is going to be uh let’s add first and then check balance so that is going to be the first option that our user can choose and then let’s add couple more of these so the second option is going to be deposit so I’m going to write that like this and then the third option is going to be to with draw so I’m going to copy this here and then paste it here okay and then let’s add these star symbols at the end of our menu like this okay now after we have created this show menu function what I want to do is I want to invoke this function so here I’m going to say um show menu like this okay and if I run my program as you can see we have this menu shown to our user now what should happen next is we should allow our user to choose one of these three options so the next thing that I will do is I will create a variable so let’s create it here let’s say int and that variable is going to store the option that our user chooses so I’m going to call it option like this and then here after I have written out this menu so this menu here to my user I’m going to say see out and then please choose an option or whatever message you want to show so option like this and then I want to accept the value that my user enters in this option variable so I’m going to say C in option like this okay now if I run this program again as you can see it asks for option and if I select any of these three options if I press three for example you can see that my program closes because we haven’t written any code after this line here so what I want to do now is I want to handle these three options and I’m going to handle these three options using a switch case so I’m going to write switch okay and then here I want to put this option variable so that is going to be the value that I want to check so I’m going to say switch option and then in the case that our user has entered option one what I want to do is I want to write out the balance to my user and in order to do that I’m going to create a balance variable because we do not have a balanced variable yet so I’m going to give it a type double like this and call it balance okay and let’s assign it initial value of uh for example 5 100 okay so that is going to be the initial value of our balance um variable so here I’m going to say C out and then let’s say balance is okay and then let’s write out this balance variable and I’m going to add this dollar symbol at the end and I’m going to add end line as well okay so that is going to happen in the case that our user enters value or option one and I’m going to add break at the end of each case so here as well okay now our second case case is going to be when our user enters option two like this so in that second case we should allow our user to deposit money so here I’m going to say see out and then let’s write out um deposit amount so we want to ask our user how how much money he wants to deposit so in order to accept the value that our user enters I’m going to create a variable which I’m going to call deposit amount so let’s create that variable it’s going to be of type double and it is going to be called deposit amount like this and then I’m going to accept the value that our user enters here in my deposit amount variable like this okay and now what I want to do with this deposit amount is I want to add it to my balance so I’m going to say balance is now going to be equal to whatever my balance was previously holding plus this deposit amount like this and then let’s add break at the end as well okay and then our third option our third case is going to be when our user wants to withdraw money so I’m going to copy this case here and then paste it here and here I want to write out a different message to my user so I’m going to say withdraw amount let’s copy this okay and then this variable I’m going to call it withdraw amount like this okay and then here I want to enter that withdraw amount and what I’m going to do with my balance in that situation is going to be I want to subtract that withdraw amount from my balance but I want to subtract that withdraw amount only in a situation where this withdraw amount is equal to or less than this balance so I’m going to say here if withdraw where it is withraw amount is less than or equal to balance like this then I want to give that money to my user else meaning if our user has has requested more money than he has I’m going to write out a message so I’m going to say not enough money like this okay and that is going to happen so this code here is going to happen in the case that our user enters option three which is this one here okay so now if I run my program you can see that it asks option and let’s see that we want this first option so this check balance and it says that balance is 500 and if I press anything else as you can see my program is going to close and that is because we haven’t implemented any Loop that is going to iterate this code here so let’s add that Loop now so here I’m going to say do so do while loop is the one that I want to use and then in inside my do while loop I’m going to put all of this code here so let’s add a curly bracket close curly bracket at the end like this and then I’m going to say please do this block of code here while and then I want to do this code here while the option that my user has ento option that my user has entered is not equal to four four and when my user enters option four we should stop the execution of our program so in order for our user to know that for means exit we are going to write that here in our show menu function so here I’m going to add this fourth option which is going to exit our program like this okay now if I run this code you can see that it says that it has this menu here and then it asks for option so I’m going to enter option one for example okay and this option one says that balance is $500 now let’s enter this second option let’s enter this deposit option so I’m going to press two and as you can see it says please enter deposit amount so let’s say that I want to deposit $700 for example okay now if I check my b balance again so I have entered this option one and then I press enter as you can see it says that my balance is $1,200 and there is one thing that I want to do with this program because I don’t like the way that this looks it is not really readable so I’m going to add um clear screen so clear console command and I’m going to add that here so after my user chooses his option I want to clear the console so I’m going to say system and then let’s add CLS which is a command that is going to clear my console clear my um window so if I run my program again as you can see again we have this menu and then it asks us for the option so let’s say that I want to check my balance it says that my balance is $500 now let’s try to withdraw money let’s say that I want to withdraw money and I want to withdraw $600 for example and then it says not enough money because we had $500 um on our account so now what I want to do is let’s say for example that I want to deposit $100 okay and then I want to withdraw $600 okay and if I check my balance now as you can see balance is zero and in order to test this exit functionality let’s press for and then if I press enter as you can see my application is going to close now another thing that I want to check is going to be what is going to happen if our user enters option that is not valid meaning an option that is not any of these for that we have covered here so if I run my program again as you can see um it asks us to enter options so I’m going to enter option five for example which is not valid and nothing has happened happened if I enter option n nothing has happened again 99 okay now you get the point what is happening here is our program tries to find this adequate option so option five option n whichever one we have selected and since that option does not exist in these cases here our program continues to this while check and then it checks that the option is not equal to four and because our option is five or 9 or 99 which is not equal to 4 then our DU while iterates again and then it writes this show menu again and then it asks us to enter this option again so these three options are the only valid options that you can select and then four means that you are going to exit your program now here we have created this show menu function that has uh check balance deposit withdraw and then this exit option and what I want to suggest to you is how you can upgrade this program on your own so for example you can create two users two accounts and what you can do with those two users is you can Implement transfer option meaning um transfer money from one account to the other account and I’m going to leave that up to you and if some of you decide to write that code make sure to paste it in the comments down below and I’m going to review that code and and some other people may find it useful as well so I hope that you enjoyed this video if you did give it a thumbs up don’t forget to subscribe to my channel and hit that Bell icon as well and I’m going to see you in my next video bye hi everyone welcome to my channel my name is Salina and I make it and programming related videos so if you’re interested in those please subscribe to my channel and give this video a thumbs up because that helps me a lot to reach more people and spread programming knowledge and in this video I want to talk about generics and templates in C++ so what are generics the idea of generics was born when programmers decided that they want to be able to use the same code but with different data types so the logic is the same but data types are different or if you want another explanation when we talked about functions we said that we can pass parameters to functions and what we said as well is that types of those parameters had to be known beforehand so you had to hardcode types of those parameters whether it is int or Char or float or any other data type that had to be known beforehand but with this idea of generics what we should be able to do is we should be able to pass that type itself to a function so we should be able to determine which type we want that function to operate on and the best way for you to understand and this will be on an example so that is exactly what I will do so let’s say that in my visual studio I want to create a function that will swap the values of two variables and if you don’t have an idea how you can swap values of two variables I have a video where I explained that uh in a very visual way so you can use that video I will link it here so here I will just type very quickly the code for that and if you need explanation again you can watch that video so I will say that that function will be of return type void and I will call it Swap and then what I want to pass this function will be two integer variables so I will say int a and then int int B like this okay but because I want to have both of these variables available in my main function which will invoke my swap function I will have to pass these two variables using a reference and again if you’re not familiar with passing parameters by a reference I will link another video here where I talk about that and I think that I made more than one video on my channel talking about passing variables by a reference to a function so I will put those in the description as well so the code for this swap function will be the following so I will say int temp I will create a temporary variable and to that temporary variable I will assign the value that my variable a is hold holding and then I will assign to my variable a the value that my B is holding like this and then to my B I will assign whatever my temp variable is holding again if you need to understand this in more detail I will put video in the description of this logic here okay so now this function should give us the ability to swap values of two variables and the way to test this function is the following so I will say please create two variables call them A and B like this and to my a variable I will assign the value of five for example and then B will have the value of s so let’s write out values of these two variables let’s say a and then just make a separation and then value of B like this okay so now what I want to do is I want to invoke this swap function I will say Swap and then I will pass my a and then B like this and if I copy this line after the invocation of my swap function we will see if the values had indeed been changed so if I run my program as you can see this line of code here has resulted with this output so 57 and then after invoking our swap function the values inside these two variables so A and B have successfully been swapped so now it is 75 okay excellent so that means that this function does what it should do now what happens if I want to swap values of two Char variables for example what I would have to do is I would have to copy this function paste it here and then I will adjust it to be able to work with Char variables so I will say Char and then I will change this with Char as well and then here I will put Char as well now this swap function should work with char parameters and this is called function overloading if you’re not familiar with function overloading I made that video explaining how it works so I will link it here if you want to watch it and I will put it in the description as well so this function should be able to work with Char parameters now and in order to test this function let’s create two variables of type Char so Char C and then d as well and to my C variable I will assign the value of letter C and then to d i will assign the value of letter D excellent so I will copy this line of code here and I will just adjust it so that now we write out the value of our C variable and then here we write out the value of my D variable like this and then after this line of code here I want to invoke this swap function so I will say Swap and then pass it C and D like this and I want to write out my C and D variables after this line of code here so after I have swapped the values just to check that they successfully have been swapped so if I run my code as you can see we have this out output here so c and d and then after swapping the values inside these two variables we have this output here which means that they have been swapped successfully now um I see a problem with this approach here and the problem is following what happens if I want for example to swap values of two float variables and then two doubles and then two booleans and so on well I would have to create this swap function for each data type and that is repeating code and we shouldn’t really be repeating code unless we really need to and in this particular situation we don’t so there is a simple solution for this problem and that simple solution will be using generics and the idea is to be able to use the same function the same logic but with different data types so again we will be solving this problem using generics and the way that generics are implemented is using templates so how do you make a template in C++ well you use keyword that is template like this and then inside these angled brackets you will put the name of your type so you will say type name and um most common type name that is used is called T but you can use whichever type name you want you can say type as well if you want that should work but I will use T because that is the recommended way so now that I have created a template and I have said I want to create a new type which is called T I will have to use this T in my swap function so now I will change this int with my T so I will say t here and and then T here and I will create T here as well okay now this T is called generic data type and this swap function is now a generic function which means that this swap function can be used on any data type whose variables can be swapped using this logic here so in one invocation it can be swapping integer variables and then in another it can be swapping characters and then in the next one floats and then doubles and booleans and so on on so now that means that we can really remove this swap function because we do not need it because as we said this function here is a generic function and it can be used with different data types so now I will delete this swap function here and if I run this code this code should work as it did before so let’s press this button okay and as you can see 57 and then 75 this function indeed works for integers and then CD and then DC so it works for characters as well and let’s close this okay now what you can do here as well here in the invocation in this 15th line invoking this function for two integer variables what you can do is you can specify the type itself as well so you can say I am invoking this swap function for my integer type so now when this function is invoked it will go here and this T keyword will be changed with this int so it will be int here and then int here and then int here and it will do the swapping this function here will do the swapping for INT data type and then in this 20th line here you can say as well Char if you want you don’t have to that process will happen automatically because you have declared C and D as charart type so those C and D of type chart will be passed here and then Char will be here here and Char will be here and then Char will be here as well so what we have acquired with this template function here is to be able to use the same code with different data types we have just demonstrated how that can be invoked for integer data type and then how we can use it for character and you can do on your own float or double or bull and so on okay and then what you can do as well is you can use any other name for your generic type T is something that is used commonly in literature but you can use type as well if you want so you can say oh you can say type and then you would have to say type here and then type here and here as well okay that should work the same way that it did previously and then another thing that you will find in literature is instead of this type name keyword you can use class um it really depends on you whichever one you want to use you can and again if you know what classes are class is a type as well so it is userdefined type so this should work as well the same way that type name keyword did and if you’re not familiar with classes and objects and objectoriented programming I have course which I will link here so make sure to watch that so I hope that this video helped you understand what are generics and templates and what is the main idea behind them and we will be talking about this of course in my future videos and in more depth so so make sure to subscribe to my channel and hit that Bell icon as well so that you don’t miss a video that I publish and if you like this one please give it a thumbs up that helps me to reach more people and help more people with programming so thank you very much for watching and I am going to see you in my next video bye hi everyone welcome to my channel my name is Salina and I make it and programming related videos so if that is something that is of interest to you consider subscribing to my channel and in this video I want talk about recursion and recursive functions in my previous videos we already talked about functions in general so you should be familiar with that and then in this video I want to show you on an example what is recursion and how it works so what is recursion recursion is a process where a function invokes itself and that function that invokes itself is called recursive function that is pretty simple definition so let’s show that on an example and the example that I want to give you today in this video will be the sum all the numbers between M and N which are the numbers that our user defines and the first thing that I want to show is we will solve that problem using Loops which is a solution that you should already be familiar with and if you don’t understand Loops you can find videos on Loops in my C++ for beginers playlist so you can watch that and then after we solve that problem using Loops I want to show you how you can solve that same problem using recursion so if you want to skip directly to the recursion part I’m going to leave the link to that part the time stamp in the description of this video so that you can navigate yourself directly to the recursion part if you want now as I already said the problem that we want to solve in this video is going to be to sum all numbers between number M and N so let’s write the text of our task here I’m going to say sum number first between M and N okay so this is going to be our task and then here as I already said I will first solve this problem using Loops so considering that we have to sum numbers between number M and N I will create two variables so int M and N which are two variables to hold the numbers that our user enters you can do that part I’m going to hard code those values here so let’s say that my number M that my variable M holds value of two and then n holds the value of four for example uh and one thing if you are going to ask your user to enter the numbers for these two variables what you should do is you should make sure that your user enters smaller number in your variable M and then greater number in your variable n and if that is not the case there are a few ways to solve that problem so you can swap the values in those in these two variables if your user enters bigger number here and then smaller one here and if you don’t know how to swap the values into variables I’m going to put a link which contains the explanation for that here and then you can as well just ask your user to enter again and again and again until this number is smaller and then this one is greater uh and as I already said I’m just going to hard code these two values here okay so now that we have our number M and our number n what I’m going to do is I will write a loop which is going to solve this problem here and the easiest way to solve this problem here is going to be using four Loops so I will say four and then I will declare a counter in I and that counter should start at the value of our variable M so I is equal to M and then it should count until it comes to the value of n so while our I is less than or equal to n oh sorry so while our I is less than or equal to n and then in each iteration I’m going to increase the value of my counter by one okay so what I should do in this for Loop here is I will just sum all the values that my counter holds in a specific iteration so I will create a variable here which is going to be of type int and I will call it sum and initial Val for our sum will be zero because zero is neutral when it comes to adding so here I will write sum is equal to whatever our sum was previously holding and then to that I will add the value of my I counter like this so this should be pretty much it to solve this problem and at the end of this for Loop we should have the sum of the numbers between two and four in this variable here so let’s write that out I will say C out out sum is equal to and then write out the value that are sum variable holds and if you are not familiar with this code here you should watch my video related to for Loop and I’m going to link it here or leave it in the description down below so let’s run our program and test this code here okay it says that our sum is equal to 9 so 2 + 3 is 5 + 4 is 9 so that is the correct result so this approach here will solve this problem using loops and this is something that you should already be familiar with and now I’m going to show you how you can solve the same problem using recursive functions so let’s comment this code out because I don’t need it anymore like this and then what I want to do is I want to create a function of return type int and I will call it let’s call it recursive sum like this okay so this recursive sum function will receive two parameters and those two will be integer number M and then integer which is called number n so we will pass these two values to our recursive sum function and what should we do inside this recursive sum function well the same way that we do not want this four Loop to be an infinite Loop we do not want our function to be an infinite recursion so here we specified the condition when our for Loop is going to stop to execute so here when our counter I reaches the value of n that is the point when our for Loop stops running and then here in our recursive sum function we will have to define a base case which is going to break this recursion so as I already said it is called base case and for this recursive sum function our base case will be following so I will say if our m is equal to n in that case what I want to do is I want to return from this recursive sum function value of our M or n so I will say return M it doesn’t really matter which one you return because here we have checked that they are equal okay so this here is our base case something that is going to break our recursion so that we do not end up with an infinite recursion okay and then what I want to do here is I want to do that recursive part so that part where the function is invoking itself and what we should do here is the following so I will say return and here I want to return the value of M so the current value of our M parameter and then I will add to that the following expression so I will invoke again our recursive sum function but this time I will pass to this recursive sum function the value of our m + 1 and then the value of our n variable okay so what this code here is going to do the same way that here we have increased the value of our I counter in each iteration here I’m increasing the value of our M parameter in each recursion so that at a certain point we are going to reach this condition here so our M and RN will be equal and at that point our recursion is going to stop so how is this code here going to behave well let’s write out invocation of this function here and then we are going to go line by line through the execution of this program so that you can understand how this recursion is going to work so let’s say see out sum is equal to and then I will invoke this recursive sum so recursive sum and here I want to pass the value of M and N like this so when we come to this 14th line of code here what is going to happen is we will pass values of two and four to this function here so I will write that my M holds the value of two and then n holds the value of four okay and then we come to this line of code here and we check is our m equal to our n so is 2 equal to 4 the answer to that is no so we do not execute this but we go here and what this line of code here says it says please return from this function the following so return current value of my M which is two and then to that I will add whatever this recursive sum function returns to me if I pass it m + one and N so here I will invoke function again and I’m going to use these parentheses to indicate invocation of a function so here we are invoking recursive sum function again and this time we are passing it values of n + one which is three and then n stays the same because our n is our upper limit so that we can know when we are going to break this recursion so here is the invocation of this function again and then we have entered this function using these two parameters so we go here again and we check again is our m equal to r n so is 3 equal to 4 the answer to that is no so we do not execute this line of code but we go here again and what this line of code here says it says please return current value of M which is in this recursion three and then add to that whatever this recursive sum function returns for these parameters here so here I will invoke recursion again and I will indicate that again with these parentheses so we inv invoke our recursive function again with parameters of n + 1 which is four and then n stays the same so we go here again and we check is 4 equal to 4 and the answer to that question now is yes so now we return the value of RM which is four so here I will say that this recursion Returns the value of four and then we go backwards so here we have all the invocations of this recursive of some function so the result the end result of this recursion is going to be the result of this expression here so let’s calculate what this recursive sum function is going to return finally at the end so this is one recursion and that recursion Returns the value of four so I’m going to delete these parentheses and then the recursion prior to that returned the value of 3 + 4 which is 7 and then if we come out this recursion as well so I will delete these parentheses the result of our recursive sum function will be the result of this expression so 2 + 7 will be equal to 9 so this is going to be the result of our recursive sum function so if I run my program now we should get this nine as the result of executing this recursive Su function so let’s run our program and as you can see some is equal to 9 and if I increase these M and N values so if I say for example please calculate some between 1 and 4 we should get 10 this time so 10 okay and then here if I add number five for example we should get value of 15 right so we get that the result is 15 and what you can do here now of course you can say please calculate some of the numbers between 1 and 551 for example but this is going to be hard to check so if I run my program as you can see we get uh this very very big number okay one very important thing that you must have each time that you work with recursion is the following so every time that you work with recursion you must have this base case here which will stop the recursion from happening again and again and again so this base case here will stop invoking recursive some function at a certain point when a certain condition is reached and unless you have that base case which will stop the recursion you will have that function invoking itself infinitely so infinite number of times and you will get an error so in order to demonstrate that I will remove this base case here so let’s comment it out and if I run my program now as you can see we get un stack Overflow error which means that as I already said this recursive sum function is invoking itself again and again and again infinite number of times and this recursion never stops and in order to stop it you need to have a base case which will stop the recursion so I’m going to close the program now and I will return this code here which is our base case and if I run my program again as you can see we get the expected result and the error has disappeared so that is something very important to remember each time that you use recursion you must have a base case to break that recursion from happening infinite number of times so I hope that you understood what is recursion and how it works and in order to practice on your own I will leave a task for you and the task is following so I want you to do the factorial of a number using recursion calculate factorial of a number using recursion and if you are not familiar with what factorial is or how it is calculated I will leave a video link here where I’m calculating factorial of a number using loops and then what I want you to do is to do that same task using recursive functions and you can paste your code in the comments down below so I hope that this video helped you understand what is recursion and how it works and if it did give it a thumbs up and subscribe to my channel and also you can follow me on my other social media if you want the links are in the description thank you very much for watching I’m going to see you in my next video bye hi everyone welcome to my channel my name is Salina and I make it and programming related videos so if that is something that is of interest to you consider subscribing to my channel and give this video a thumbs up as well now in this particular video I want to talk about objectoriented programming so what is objectoriented programming well oop or object-oriented programming allows you to represent real life objects in programming and those real life objects are going to be represented together with their attributes and then their behaviors as well one of the most important concepts of oop are classes and objects so let me explain difference what is a class and then what is an object a class is going to represent a template meaning a blueprint and then an object really represents an example of that class an instance of that class for example a class can be a fruit and then an object of that fruit class can be an apple a banana a peach or another example a class can be a car and then an object of that class can be a Volvo a Ford a BMW and so on and that car class for example has some attributes and then it has some behaviors as well now what are attributes of car class well a car has a name for example that’s an example of a one attribute and then it has a price and Max Speed and color and so on and then behaviors of a car can be drive for example and then break a as well and then change color and so on so here we are going to create an example of a class and then we are going to create an object of that class so the class that I want to create is going to be called YouTube channel so in order to create a class you write class and then you give a name to your class so here I’m going to say YouTube channel like this and then you put these curly brackets and at the end you will have to put a semic column and now here you will put the members of this class now one thing that I haven’t mentioned is that class is user defined data type we have already talked about data types in this course or in C++ for beginners course so if you haven’t watched that make sure to do so I’m going to link it in the description and then here as well so we have talked about basic data types such as integer floating Point number and then Boolean character double string you know but a class is going to be a user defined data type which is going to allow you to represent a real life object in programming and in this particular situation I want to represent a YouTube channel so let’s think of attributes of a YouTube channel what is something that describes a YouTube channel let’s say for example that each YouTube channel has a name so so that is going to be a string variable let’s say string name like this so these attributes are going to be represented with variables so one of the attributes is going to be name and then let’s say another is going to be string owner owner name like this and then let’s think of another attribute let’s say that each YouTube channel has a subscribers count so in subscribers count like this and then let’s as well create a list of published videos so I’m going to say list and let’s call it published video titles so that is going to be type string and it is going to be called published like this now here it says that that this list cannot be used because we haven’t included um it here so here I’m going to say include list and now this should be accessible okay now we don’t have that error anymore and what I want to do here is I want to represent a YouTube channel that has four attributes it has a name then owner name you can use email here or whatever and then it has subscribers count and published video titles now here you can use another class here you can say for example list of videos you can create another class that is called video and then in that video class you can put all the attributes that describe a video so that can be for example a title and then a description number of likes number of comments number of views um the duration of that video the video itself you know but for the Simplicity of this particular exam example I’m going to use just the title of those videos so now after I have created this YouTube channel class what I can do is I can create an object of that class so let’s say here that I’m going to create an object so how you do that you say the type so you put the name of your class which is YouTube channel and then you give a name to that variable let’s call it YouTube channel like this okay now what I want to do is I want to assign values to these properties of my YouTube channel and how do I do that well you say YouTube channel and then you put dot and here is nothing available but it should be these properties should be available when you say YouTube channel dot now why these are not available it is because all the members of your class are by default private and that means that these members because they are private they are going to be accessible only within this class here and in order to make them public in order to make them accessible outside of this class you put Public Access modifier so you say here public okay like this now this public is an access modifier and it is going to make all of these members of your class accessible outside of your class which means that now if I press dot here as you you can see name owner name published video titles and then subscribers count is available for me now so I’m going to say that the name of my YouTube channel is going to be for example code Beauty like this and then owner name let’s copy this a couple more times so owner name is going to be my name so Salina like this and then subscribers count well let’s say this is an integer variable so we don’t need the quotation marks let’s say 1,800 uh people and then these published video titles so let’s add value to my published video titles list so here I want to say that I have published for example um C++ for beginners oh let’s say video one okay and then let’s say HTML and CSS video one okay and let’s add as well this video so let’s say C++ o o video one okay now after I have assigned value to these properties what I can do is I can write out these properties so I can say here for example see out and then let’s say name and let’s write out the name of my YouTube channel like this and I’m going to add an end line and I’m going to copy this couple more times like this so here I want to write out owner name so let’s put YouTube channel. owner name and then here I want to write out a subscribers count so YouTube channel do subscribers count and then published video titles now this property here published video titles is not a simple property meaning this property here is a list and in order to write out a list we are going to use a loop so I’m going to delete this and then here I want to create a loop and let’s say that we will be using for each Loop so I’m going to say four like this and then here I’m going to write out the type of the value that I’m going to use in my list so I’m going to say string because this published video title is of type string and then here I want to give it a name so I’m going to say video title like this and then I’m going to specify the list that I want to iterate and that list is going to be this one here so it is going to be a list of published videos in my YouTube channel object okay and now in these curly brackets I am going to specify the block of code that is going to be executed in each iteration so what I want to do with this video title is I want to write it out so I’m going to say see out and then let’s write out video title and I’m going to add an end line at the end as well and one more thing that I want to write out before this list is going to be just see out videos like this okay and let’s add end line at the end so that it is formatted nicely so now if I run this program as you can see it has written out information about this object that we have created here it says that the name of YouTube channel is code Beauty and then owner name is salinaa subscribers count is equal to 1800 and then the this channel has published three videos so C++ for beginners and then HTML and CSS video one and then C++ objectoriented programming video one okay so uh I have created a class that is called YouTube channel I have uh created four attributes so four properties and made them public which means that these four properties are going to be accessible outside of this class and we have accessed those properties here so we have said uh that we want to assign value to our name property and then owner name sub subscribers count and then we have as well um assigned value to this published video titles list okay and then here we have written out information that is stored inside these properties so that was an example of how you can create a class and then how you can create an object of that class as well and in my next video we are going to be talking about Constructors and class methods because there is a more simple way to do this that we have done here so make sure to check that video out as well so I hope that you enjoyed this video if you did give it a thumbs up and also please subscribe to my channel and click that Bell icon and I’m going to see you in my next video bye hi everyone welcome to my channel my name is Salina and I make it and programming related videos on this channel so if that is something that is of interest to you consider subscribing and give this video a thumbs up as well and in this particular video I want to talk about Constructors and class methods so here I have some code that we have written in a previous tutorial of this course so if you haven’t watched that make sure to check it out I’m going to link it here and in the description as well and let’s explain very quickly this code that we have here so I have created a class called YouTube channel and that class has four public properties so four attribut attributes those are name owner name subscribers count and then a list of published video titles and then here I have created an object of that class I have assigned the value to the to these properties here okay and then here I have written out information about this object that we created and as I said said in this video I want to talk about Constructors and class methods and how am I going to explain these well let me first introduce a problem to this approach here so that you can really understand the need for these two so what happens if I want to create another object of this YouTube channel class how am I going to do that well in this current situation what I would do is I would copy this so I’m going to copy it and then I’m going to paste it here like this and let’s give it a name let’s say that this channel is going to be YouTube channel to and let’s call it let’s say YouTube channel 2. name let’s say that it is going to be called Amy SS for example and um owner is going to be a girl called Amy and then she is going to have let’s say 2,000 subscribers okay and and then the videos that she has published are going to be songs obviously because she has a channel named Amy sings so let’s say that she has published for example um let’s say Johnny B cover like this so that’s one song that’s one video and then let’s say that another video that she has published is going to be for example um Laura Li so that’s a song from scorpions and she has made a cover of that song like this now these two are two of my favorite songs and you can put whatever you want here in this list and I’m also wondering and you can write that in a comments down below what are your favorite songs so please write that in the comments just don’t put links because I think that YouTube has this policy of treating um links as U advertising or spam or something so just write out the name name of your song and then uh the name of a singer I guess and I’m really looking forward to reading your comments so now that I have created this second YouTube channel what I want to do is I want to write out information about this channel but I noticed that I’m missing here uh this YouTube channel to so here I’m going to say YouTube channel 2. ownername and then YouTube channel 2. subscribers count and then YouTube channel to. published video titles as well okay now if I wanted to write out information about this second Channel what I would do is I would copy this so I’m going to copy it and then paste it here and here I will say that the name is Youtube channel 2. name and then owner name is YouTube channel 2. ownername and then here as well and then YouTube channel 2. published video titles okay now if I run this program we should get information about these two channels so the first channel is this one that we already had it’s code Beauty owner is me and then this is subscribers counter and then these are three videos that I published so far I mean I published more than three videos uh but this is just an example and then here is our second channel it’s called Amy sings and then owner is Amy she has 2,000 subscribers and then she has published two covers now this here has a problem if we wanted to create a third a fourth a fifth object we would have to copy this code and then each time that we want to write out information about those channels we would have to copy this code and this really collides with a principle called don’t repeat yourself meaning do not repeat your code if you don’t really have to repeat it and in this particular situation we do not have to repeat it so how we are going to solve this problem well the first thing that I want to talk about are going to be Constructors and what a Constructor is it is a special method that is going to be invoked each time that you create an object of a specific class meaning that method is going to be called on the construction of that object so there are two rules when it comes to Constructors and the first rule is that Constructor has the same name as your class and then the second rule is that Constructor does not have a return type so let’s create a Constructor for this YouTube channel class here I’m going to say YouTube channel like this and then I’m going to put these parentheses and I’m going to put these curly brackets as well now what I want to do in this Constructor is I want to receive two parameters I want to receive two arguments and those are going to be string name and then string string um let’s let’s say owner name okay now these are two parameters that I want to pass to my Constructor and what I’m going to do with these in my Constructor is I’m going to assign these to these properties here so I’m going to say that name is going to be equal to whatever my user has passed to this Constructor so name is equal to this name here and then owner name in my class is going to be equal to this owner name that I have received in my Constructor now since since this Constructor here is invoked each time that I create object each time that it is constructed that means that at the beginning when a channel is created it has zero subscribers so I’m going to put here zero like this we do not even have to pass this value in our Constructor because when you create your YouTube channel you do not have subscribers okay now what am I going to do here is I do not need to write this code like this anymore so I’m going to delete I’m going to actually comment this code here and as you can see this is underlined it says that no default Constructor exists for class YouTube channel now what we have to do is we have to use this Constructor here that I have just created and how you do that well you put parentheses here and then inside these parentheses we are going to pass these two parameters so the first parameter is going to be the name so that is the name of our Channel and that is this name here so code Beauty like this and then a second parameter as you can see here is owner name and that was this value here so I’m going to pass that here like this and now after I have created this YouTube channel we do not need this code um anymore so I’m going to delete it okay and what we can do is we can do the same with this second channel so with this YouTube channel too so I’m going to really comment this code for a moment and then here I want to invoke a Constructor for this YouTube channel class and pass it as first value the name because we are receiving name as our first value in our Constructor like this and then then the second value that we need to pass is going to be owner name so I’m going to copy that as well and now we have successfully created this second YouTube channel okay so now I can delete this code here as well okay and now if I run my program as you can see it has written out information about my two channels the first one is code Beauty owner is me and then I have zero subscribers because I have just created my channel and we have assigned that here and then our second channel is Amy sings uh owner is Amy and she has zero subscribers as well and as you can see both of these videos published videos lists are empty because we haven’t uh really added any videos okay so how do you do that I’m going to delete this from here and then move it here like this so now we have both of our objects being created at the beginning here so what I want to do now is I want to add a couple of videos to this channel here so how do you do that well you say YouTube channel like this and then I’m going to put dot and here in this published video titles list I’m going to invoke a method push back which is going to add at the end of this list another element and that element is going to be of type string because this publish video titles is a list of strings so here I’m going to add a string and I’m going to call that video C++ for beginners like this so that is one video and then let’s add a couple more videos let’s say uh HTML and CSS for beginners and then let’s say um o op for beginners Well no let’s say C+ plus o o like this okay so we have added three videos for this first channel and then this second channel does not have videos yet so if I run my program again you can see that this first channel has three videos and then this check this second channel does not have any videos yet because we have deleted those that we previously had okay now that was the example on how you can create a constru structor and how you can use a Constructor so this here is the Constructor of this YouTube channel class and we have passed two parameters two arguments to this Constructor and then here in our Constructor we have really assigned initial values to these properties here that we have in our YouTube channel and then this here is the way that you use your Constructor so you put these parentheses and then you pass the values that your Constructor has to receive and here we have created two objects and we have done that without repeating code now what is going to happen with this here so this here and then this here is repeating code as well and in order to solve this particular Pro problem we are going to use class methods so class method is going to describe a behavior of a class and since here we are writing out uh the these attributes of our class since we are writing out information about our YouTube channels what I want to do is I want to create a method that is going to be called get info for example so that method is going to be of type void let’s call it get info like this and what I want to do in this particular method is I want to copy this code here so I’m going to cut it and then paste it here and in this particular method in this get info I want to say please write out name and then the name property we don’t need this YouTube channel object anymore because we are in the class itself okay and then here as well I’m going to delete this here and then here and now this code should work so whenever you invoke this get info method on your object it should write out all of these properties of of that object so now I can remove this code here as well so this um information about our second Channel and how am I going to get how am I going to invoke this method well I say the name of my object so for example YouTube channel Dot and then as you can see I have this get info method available here because it is public so I say get info and I invoke it like I would invoke any other function and let’s do the same for our second YouTube channel let’s say YouTube channel to get info like this and now if I run my program as you can see it has written out information about my two channels so code Beauty Sal owner and then subscribers count my videos and then info about my second Channel as well so I hope that you understood the concept behind behind a Constructor of a class and then behind a class method here we have demonstrated how you can create an object using a Constructor and then here as well so you don’t really have to repeat your code each time that you create an object and then here we have invoked a method of these objects which we have implemented here so you do not have to repeat that code as well each time that you need to get information about your object you just invoke this get info method and now our main function looks much cleaner and all the implementations of the construction of our objects and then this get info method are in this YouTube channel class so I hope that you enjoyed this video if you did give it a thumbs up and also subscribe to my channel don’t forget to hit that Bell icon and I’m going to see you in my next video bye hi everyone my name is Salina and I make it and programming related videos so if that is something that is of interest to you consider subscribing to my channel and give this video a thumbs up as well and in this particular video I want to talk about encapsulation here I have code that we have written in the previous videos of this course so if you haven’t watched those make sure to check them out I’m going to link them in the description of this video and I’m going to go over this code very quickly so that you can understand what we have written here so here I have created this YouTube channel class which has four public attributes and those are name owner name subscribers count and then list of published video titles and then here we have a YouTube channel Constructor and then this get info method as well that just writes out information about our YouTube channel and here’s the code of our Constructor okay and then in our main function we have created an object of this YouTube channel class and we have assigned it these two values for our name and our owner name and then we have as well added three videos to this published videos list and here we have written out information about our channel so if I run this code now as you can see this is how it behaves it writes out information about our YouTube channel now now what I want to talk about in this video is encapsulation and what does this principle of encapsulation says well encapsulation says that these properties here should not be public these should be private and then the way to change the value the data that you store inside these properties should be really using methods that you Expose and then you give access to those methods to your user and then using those methods obeying the rules of those methods your user can change the value of these properties okay so let me introduce a problem here so that you can really understand why we need en encapsulation so what happens if I say for example that YouTube channel so this that we have created has let’s say a million subscribers okay this is a million now we have assigned a million subscribers to this YouTube Channel and this should not be allowed if I run this program you can see that this YouTube channel has a million subscribers now but this is not the natural way to gain subscribers for your YouTube channel what you should do instead is you should give your user the ability to invoke subscribe and unsubscribe methods and then using those methods you are going to increase or decrease this subscribers counter so let’s do that let’s first hide these properties from our user so from whoever is going to use this class here so how do you hide these well you make them private so here instead of using public access modifier I’m going to use private access modifier so I’m going to say private oh private like this and then these should stay public so I’m going to put public here like this okay and then as you can see we have a problem here it says that this subscribers count is inaccessible and then this publ this published video titles as well is inaccessible meaning that we cannot access these private members of our class these private members can be accessed only within this class itself so how we are going to give our user the ability to change this subscribers counter well as I said we are going to create methods so let’s create two methods the first one is going to be void void subscribe like this and then what this method should do it should increase this subscribers counter so here I’m going to say subscribers counter like this plus plus using this increment operator we are going to increase the value that we store in this variable by one and then we are going to have as well unsubscribed method so I’m going to copy this paste it here and let’s say unsubscribe and then here I’m going to say that this subscribers count is going to be decremented so now if I I will have to comment this code here and then I’m going to delete this code here and now if I want to increase or decrease subscribers for my Channel what I will have to do is I will have to invoke one of these two methods so let’s say for example YouTube channel do subscribe like this okay and let’s invoke this method um three times for example and now if I run this program as you can see my channel so code Beauty channel has three subscribers and then let’s say for example that I haven’t published videos in a while so people decide to unsubscribe so I’m going to invoke this unsubscribe method like this and if I invoke this get info after that I should have two subscribers well oh as you can see I have two subscribers now because three people have subscribed and then one person has unsubscribed from my channel okay so we have this code here as well that was underlined meaning that it has um compile time error and it says member published video titles is inaccessible meaning that now we cannot access this published video titles list anymore because it is private now so I’m going to expose a method that is going to publish videos for me so here I want to create a method of type void which is going to be called publish video publish video like this and then here I want to add a video to my published video titles like this so I’m going to say published video titles push back and then what I want to do is I want to pass a value here which value well we are going to receive that value as a parameter in our function so here I’m going to add an argument a parameter and that is going to be of type string and let’s call it title like this and now we are going to use this title here so we are going to push this title in our push in our published videos titles okay like this now if I want to invoke this method I’m going to invoke it like this so I’m going to say YouTube channel dot publish video like this and then I’m going to do the same thing here and then here and here as well okay so now we have created these methods that we invoke and then using these methods we change these properties and these properties should be private meaning these should be encapsulated okay and now as you can see we have a channel called code Beauty and then owner is myself and subscribers is two and then these are videos that I have published so far now if you look at this unsubscribe method you will notice that it has a bug what is that bug well let’s delete these three lines of code let’s delete these subscribe method invocations and if I run my program now what is going to happen as you can see it says that my subscribers count is equal to minus one and that does not really make sense so you cannot have minus one subscriber and we are going to fix that problem if we put here inside this unsubscribed method a check so we want to check if our subscribers count is greater than zero and only in that situation if that subscribers count is greater than Z zero only then we can decrease this subscribers count value so if I run my program now as you can see we have invoked this unsub subscribe method but we still have zero subscribers and now we have fixed that bug that we had because if no one has subscribe to our Channel then no one can unsubscribe from it okay so that was a bug that I wanted to fix and then what you can do here because here we have exposed these three methods that really manipulate the values that are stored inside these properties and then these two properties there is no way to change them outside of this class so what you can do for dam for example is you can create a getter and a Setter meaning a method that that is called for example get name and that method is going to return you the value that is stored inside this name variable and then a set method meaning set name method that is going to receive um parameter which is going to be called name for example and inside that set name method you are just going to change the value that is stored inside this name property and then you can do the same for this owner name uh as well so you can create a get and a set method so let’s go over this encapsulation rule one more time so encapsulation rule says that all of these properties should be private meaning they shouldn’t be accessible outside of this class and you do that by making them private so you put this private access modifier here and then how do you change the values that you store inside your properties well you expose a public methods that are going to change the data that you are storing inside your properties and here we have created these three public methods that are going to change the data stored inside our subscribers count uh property and then inside our published video list property here so you can for these two properties again you can create getter and Setter method and if some of you do that please put that code in the comment section and I’m going to review it so if you enjoyed this video give it a thumbs up and don’t forget to subscribe to my channel and hit that Bell icon as well and I’m going to see you in my next video bye hi everyone my name is Salina and I make it and programming related videos on my channel so if that is something that is of interest to you consider subscribing and give this video a thumbs up as well and in this particular video I want to talk about inheritance so here I have my visual studio and here I have some code that we have written in the previous tutorials of this course so if you haven’t watched those make sure to watch them and now I’m going to go very quickly over the code that we have here so I have created a class that is called YouTube channel and that class has four private properties name owner name subscribers count and then published video titles and then we have a couple of public methods as well we have a Constructor which just assigns initializes these variables here and then we have get info method that just writes out information values that are stored inside these properties here and then as well we have subscribed and unsubscribe methods our subscribe method increases our subscribers counter and then our unsubscribe method decreases that subscribers counter but first we have to check if that subscribers count is greater than zero so those would be subscribe and unsubscribe methods and then we have this publish video method as well that just adds a new item adds a new title to this published videos list okay now what is going to happen if I want to create another type of YouTube channel a specific type of YouTube channel which is going to be for example um cooking YouTube channel so I should copy these properties right well that can be one approach but the quicker and better approach is going to be to inherit this YouTube channel class so let’s do that let’s create another type of channel so let’s create another class let’s say class and then let’s call it cooking YouTube channel like this okay now I have created a class that is called cooking YouTube channel and in order to inherit this YouTube channel class what I’m going to do is I’m going to put this column sign and then I’m going to say public you YouTube channel like this and in this way my cooking YouTube channel is going to inherit my YouTube channel and that means that my cooking YouTube channel is going to have everything that my YouTube channel has now this public access modifier means that whatever is public in this class here it is going to be public here as well so in this derived class and one very important thing is is to know that this class is called Base Class so the one that you inherit from that is base class and then the derived class is going to be this one here so the one that inherits from the base class is called derived class and in this particular situation our cooking YouTube channel is derived class now what is going to happen if I want to create for example an object of this cooking YouTube channel so I’m going to say cooking YouTube channel and let’s call it YouTube channel like this okay now as you can see it says that default Constructor of cooking YouTube channel cannot be referenced now that is because we do not have a Constructor for this class here so let’s create one let’s create a Constructor so I’m going to copy this name and then add these parentheses okay and now if I hover over this it says that the Constructor is inaccessible so we still have an error but we have a different error which means that we are making progress so because this Constructor is inaccessible I will have to make it public to make it accessible outside of this class here so I’m going to say public okay and now my uh Constructor is going to be accessible but there is another thing that we have to do and that is going to be inside this Constructor we have to receive properties that we are going to initialize in our Constructor and those are going to be these two properties name and owner name so here I’m going to say that my Constructor receives two properties so string name and then string owner name so the owner of that channel and what I’m going to do when I receive these two properties I’m not going to initialize them here in my Constructor because I’m inheriting from a class that already knows how to construct how to initialize these two particular properties so I’m going to call the Constructor of that class so I’m going to call the Constructor of this YouTube channel class so here I’m going to put this column sign and then I’m going to invoke its Constructor so I’m going to say YouTube channel and then I will pass these two parameters here so I’m going to say name and then owner name like this and now our Base Class our YouTube channel class is going to construct to initialize actually the value of these two properties and as you can see here we have an error that asks us to pass these two values to our Constructor so we are going to pass two parameters the first one is going to be the name of our channel so let’s say that that is going to be for example Amy’s kitchen like this and then owner is going to be um girl named Amy let’s put that here as well okay now after I have created an object of this cooking YouTube channel what I should be able to do is I should be able to access all of these public methods that my base class has so all of these methods from my YouTube channel class should be available for my uh cooking YouTube channel so here I’m going to say YouTube channel Dot and then as you can see these are available so get info publish video subscribe unsubscribe let’s write out info about my channel like this and if I run it now well you you can see that we have Amy’s Amy’s kitchen Channel owner is Amy it has zero subscribers and it has no videos as well so let’s publish a couple of videos for Amy Amy’s kitchen channel so here I’m going to say okay before I this get info function I’m going to say YouTube channel Dot and then let’s say publish video of for example apple pie like this this and then let’s publish another video let’s say for example chocolate cake like this and uh now if I run this program as you can see we have oh we have two videos and let’s as well say that people like these videos so they decide to subscribe to Amy’s kitchen channel so I’m going to say YouTube channel do subscribe so uh for example two people decide to subscribe to her Channel and if I run my program again you can see that now we have two subscribers as well so we have been able to invoke all of these methods that are implemented in our Base Class so here from the object of our derived class so from the object of this derived class class here now this derived class this cooking YouTube channel can have its own members meaning things that are specific for this class only so let’s say for example that we want to create a method that is going to be called uh for example practice so I’m going to say void practice like this and then what this method should do it should just make our user that has this cooking YouTube channel it should say that this user is practicing cooking and then learning new recipes and things like that so I’m going to say see out like this and that let me copy this part of the code because I don’t want to make a typo like this so it says that uh our YouTube Channel’s user is practicing cooking learning new recipes and then experimenting with spices cuz I guess that’s something that you should do if you have a cooking YouTube channel Channel and let me add endline here as well like this so now if I decide to invoke this method this method is going to be available only for objects of this cooking YouTube channel so I’m going to say YouTube channel like this and then let’s say practice like this now um let me very quickly change the name of this YouTube channel object because I want to create another object that is going to be of uh this YouTube channnel type and I want to call that YouTube channel so here I’m going to say um cooking YouTube channel and I’m going to paste that name here and then here and here here as well okay now we have named this object cooking YouTube channel and if I run this program you can see that at the end it says practicing cooking learning new recipes experimenting with spices is now as I already said this practice method should be available only for the objects of this cooking YouTube channel class so that means if I decide to create an object of this class here this Base Class that class is not going to have this practice method and let’s prove that very quickly so here I’m going to create an object of YouTube channel Class Type and let’s call that object YouTube channel that’s why I changed the name name of this object like this and let’s say that that is going to be my channel for example um code Beauty like this and then let’s say that owner is my name Salina so now if I try to access this practice method on my YouTube channel so I press dot you can see that that method is not available for this Base Class it is available only for this cooking YouTube channel class because this practice is very specific method meaning um this code Beauty Channel which is oriented to programming and it does not really benefit from learning uh recipes and experimenting with spices practicing cooking and things like that so this channel should probably have some other way of practicing uh because it is different type of channel so I’m going to delete this code here okay and let’s repeat this one more time so we have created a derived class which is called cooking YouTube channel and we have inherited everything that our YouTube channel class has by saying public and then the name of our Base Class and this public access modifier is going to allow us to have whatever is public here to have that public here as well and then we have created a Constructor for our cooking YouTube channel and in that Constructor we receive two parameters name and owner name and since our Base Class Constructor knows how to initialize those two we have here invoked this Base Class Constructor and then here we have created as well a method that is called practice and that method just says that our user is practicing cooking and he is learning new recipes and experimenting with spices now there’s one more thing that I want to show you and that is going to be to Let’s create another object of this cooking YouTube channel and that is going to be uh let’s say cooking YouTube channel to and let’s call it um John’s kitchen like this and owner is going to be for example John now what is going to happen if I say for example that this second YouTube channel so this cooking YouTube channel to John’s YouTube channel is practicing I’m going to um comment these two because I don’t need them and if I run my program now you can see that it says two times practicing cooking learning new recipes experimenting with spices and then the same line here so you cannot really differentiate between which which one is Amy’s Channel and which one is John’s channel so in order to make that a bit more understandable I’m going to add a property here so here I want to add the name of the owner of this channel so here I’m going to say let me copy this property like this so owner name and then let’s say that that owner is practicing cooking learning new recipes experimenting with spices and so on but as you can see this this property here is not accessible it says that member owner name is inaccessible and why is that the case why is it inaccessible because it is private and if you remember private members can be accessed only within that class and then public members can be accessed from outside of that class but what happens if you want to have for example a certain property to be accessible in in the derived class now there is an access modifier for that as well so that is going to be protected access modifier so I’m going to say here protected like this and then I’m going to move this owner name to my protected area like this so now this owner name property should be accessible in derived classes as well and as you can see the error has disappeared so now if I run my program you can see that it says that Amy is practicing cooking learning new recipes and experimenting with spices and then this second line here says that John is practicing cooking and learning new recipes and experimenting with spices so now we have made a difference we have specify the name of our owner of the channel and we can understand what the code is doing um a bit more I hope that you understood what is inheritance and how it works in C++ and if you did please like this video don’t forget to subscribe to my channel and click that Bell icon as well and I’m going to see you in my next video bye hi everyone welcome to my channel my name is Salina and I make it and programming related videos so if that is something that is of interest to you consider subscribing to my channel and give this video a thumbs up as well and in this particular video I want to talk about polymorphism now the first thing that I want to do is I want to explain what is polymorphism polymorphism describes the ability of an object for example to have multiple forms now that means that you can have two or more objects that inherit from the same Base Class those objects can have the method that has the same name but different implementation meaning different behavior and I’m going to demonstrate that on an example now here I have some code that we have written in my previous courses so if you haven’t watched those make sure to do so the links to those videos are going to be in the description and I’m very quickly going to go over this code so here I have created a class that is called YouTube channel that class has three private prop properties name subscribers count and then published video titles and then it has one protected property which is owner name now um this private properties these are available only in this class and then these protected properties these are available in derived classes as well and then here we have public methods as well and this here is our Constructor so it just initializes values of um these properties I’m going to collapse death and then here we have get info method with which just writes out information about our YouTube channel and then these subscribe and unsubscribe methods these just increase or decrease the the number of our subscribers let’s collapse that and then publish video method it just um adds another video to this published video titles list so that would be our YouTube channel base class and then here we have cooking YouTube channel which is a specific type of YouTube channel that inherits from this Base Class here and that cooking YouTube channel has its own Constructor which is this one here and here we have just invoked the Constructor of our base class and then here we have implemented a method which is called practice and it says that when you practice and you have a cooking YouTube channel you will have to be practicing uh cooking and then learning new recipes and experimenting with spices now what I want to do is I want to create another derived class so I’m going to copy this okay and then this derived class should be called for example what let’s paste the name here so singer YouTube channel and I’m going to paste the name uh here as well on my Constructor so this is going to be a YouTube channel about singing now as you can see this singer’s YouTube channel has this practice method as well but this implementation is not right for my singer YouTube channel because if you’re a singer you are not going to benefit really from practicing cooking and then from learning re PES and experimenting with spices but what you should do instead is you should practice something else so I’m going to copy that so that I don’t make a typo like this so someone who is trying to make a singer’s YouTube channel is going to take singing classes and then learning new songs and then he should as well be learning how to dance because I believe that singers should know how to dance as well okay so now we have implemented this singer YouTube channel and as you can see as I already demonstrated it has this same method which is practice but this method has different implementation than this one and as you can see here this is the implementation of our practice method on our Cooking Channel and then this here is the implementation on our singer YouTube channel so what I want to do now is is I want to create this singer’s YouTube channel here we already have cooking YouTube channel so it is a video it is a code from one of my previous videos and then what I want to do is I want to create um singer YouTube channel so let’s call it um Singers YouTube channel and let’s say that it is going to be called for example John sings like this and then owner is going to be a guy named John like this okay now after I have created this cooking YouTube channel and then this singer YouTube channel you can probably call it singing YouTube channel or something like that uh this is the best name that I could come up with okay so now what I want to do is I want to invoke methods on these two classes and the methods that I want to invoke are going to be these two so practice and then this practice method as well so here I’m going to say cooking YouTube channel do practice like this and then let’s invoke the same method for my singer YouTube channel like this and now if I run my program as you can see it says that Amy is practicing cooking and then John is taking singing classes and learning new songs and learning how to dance I can imagine that okay now after I have invoked these two methods you can really see oh I have stopped my program I’m sorry so here you can see that this cooking YouTube channel has invoked its own method so this cooking YouTube channel has invoked the method that has been implemented in this cooking YouTube channel class which is this one here and then this invocation so this singer YouTube channel when you invoke practice method on that this method here is going to be invoked so this method that is implemented in singer YouTube channel class now let’s add another thing and that is going to be here in this practice method and then in this practice method as well what I want to do is I want to say that each time that our user practices cooking and then practices singing what is going to happen is the quality of that YouTube channel is going to increase so in order to track that quality content rating I’m going to create a property and that is going to be here in this YouTube channel in this Base Class so I’m going to make that property uh protected protected because I want to have it accessible in my cooking YouTube channel and then in my singer YouTube channel as well so I want that property to I want to access that property from my derived classes and because of that I’m going to make it protected so here I’m going to say int and let’s call it it content quality like this okay and initially I want to set the value of this content quality variable in this Constructor here I want to set it to zero like this because I want to say that when you create your YouTube channel this Constructor here is going to be invoked and you are going to have zero subscribers and you are going to have a zero knowledge about content quality so your rate content quality rate is going to be zero so let’s close that and then what I want to do here in this practice method is I want to say each time that you practice your content quality should increase so let’s increase that variable content where is it content quality Plus+ so I’m going to increment that content quality and then I’m going to do the same here like this now let’s say for example that my um this singer here John he’s going to practice a lot so he has practiced five times more than Amy did so if I run my program now you can see that John is practicing and then again and again and again so he is practicing a lot and Amy is not really so what do I want to do with this content Quality Property well let’s say that I want to implement another method and that method is going to be as well implemented here in this Base Class and that method is going to be called uh check analytics because that check analytics method should be available for all YouTube channels so that is not something that is specific for this cooking YouTube channel only or for this singing YouTube channel so singer YouTube channel but that method should be available for all YouTube channels and because of that I’m going to implement it in this Base Class so let’s say void check analytics like this okay and now what I want to do in this check analytics method is I want to use this property this content Quality Property in a following way so I want to say if content quality is less than five I want to write out a message to my user so I want to say see out and then let’s write out the name of this YouTube channel like this and then let’s add um a message which is going to say let me copy that okay this is going to say that this channel has a bad quality content because this content quality has a rating that’s that is less than five and let’s add in line and then what is going to happen if this content quality is not uh less than five so if it is equal to five or greater than five I’m going to put else block here and what I want to say here okay is that this channel has a good content great content actually okay like this now what am I going to do with this check analytics method well I’m going to try to invoke it here but the way that I want to try to invoke this um this method that we just implemented is going to be in a following way so there is one very interesting thing when it comes to polymorphism and that thing is related to pointers um at this point I haven’t made videos about pointers on my channel but if you’re watching this video sometime in the future sure then those videos are probably available on my channel so make sure to look for them on my channel and then in the description of this video as well so let’s create a pointer and that pointer is going to be a pointer of our Base Class so a pointer of type YouTube channel okay like this and let’s call it YouTube one and what I want to do is I want to assign to this pointer here address of this cooking YouTube channel and you can do that you can assign to a pointer of a base class an address of derived class so I’m going to say here please to this pointer assign address of this cooking YouTube channel class like this and then what I want to do is I want to create another pointer let’s call it YouTube 2 and then to this YouTube 2 pointer I want assign the address of my singer YouTube channel like this so one more time a pointer of Base Class can point to a variable of derived class now what I can do using these pointers is I can invoke method that I have just created which is this one here so check analytics so let’s do that let’s say YouTube channel one and then um let’s invoke this method let’s say check analytics like this and if you just noticed it has changed my DOT to this symbol here because this is used when you want to invoke methods using pointers so I’m going to copy this again for my second YouTube channel like this and now if I run my program as you can see our John has been practicing a lot and then Amy has been practicing only one time so here after I have invoked these two methods this first method says that Amy’s kitchen has bad quality content because she hasn’t been practicing enough and then after this YouTube channel to check analytics you can see that it writes out this message that John sings channel has great content because he has been practicing a lot as you can see here okay so here we have used polymorphism in order to implement this practice method in our cooking YouTube channel and then in our singer YouTube channel so implementation of our singer YouTube channel practice method is here and then for our cooking YouTube channel our practice method looks like this and we have done that uh thanks to the polymorphism so different implement ations but the same method name and then I have demonstrated here how you can use pointers to point to an object of derived class and you can store that in a pointer of Base class and then we have invoked this check analytics methods using these uh pointers of Base class so I hope that you enjoyed this video if you did give it a thumbs up up and don’t forget to subscribe to my channel click the Bell icon as well and I’m going to see you in my next video bye hi everyone welcome to my channel in this video I want to talk about pointers so I will go straight to the point uh pointers are very important Concept in C++ and they have many uses in C++ now pointers are not limited only to C++ they exist in other programming languages as well but in most of those programming languages they are really hidden they work behind the scenes so you cannot see them and you cannot use them yourself but it’s C++ you can use them and you can create your own pointers and they can be pretty powerful if you know how to use them but they can get quite confusing as well if you don’t understand them well so the first thing that I want to explain is what are Pointers so we already have explained the concept of a variable and you should be familiar with that that so we said that a variable is just a container so a container that stores certain value now a pointer is container as well but instead of storing value pointer stores an address so a memory location and let me show you how pointers work in Visual Studio let’s create a variable of type int and I’m going to call it n and assign it a value of five and let’s write out this n like this so nothing new here we are already familiar with this and if I run my program as you can see we get this value of five so that was expected now as I already said this N is a variable and that means that it is a container which is storing certain value now because it is a container that means that it has its address inside memory so it has its physical location so how can we get that location how how can we check which address this n has so in order to do that you use this ENT symbol like this so you put it before your variable name and that should give you the address of that variable so if I run my program now as you can see now we have an address um and this is the address of our n variable so this is its physical address where this value of five is stored and because this is pretty hard for humans to remember this is just a random numbers and characters because of that we use meaningful names and we access these values that we store in our memory using these meaningful names which are our variables so I’m going to close this now and what I want to show you here is I want to show you how can you create a pointer that is going to hold this address of our r n variable so in order to create a pointer you give it a type first so you say int and then in order to indicate that you are creating a pointer you use this star symbol and then you give it a name so let’s call it PTR pointer and I’m going to assign it the address of our n variable so I’m going to copy this and paste it here okay now our pointer is holding the address of our n variable and in order to prove that I’m going to write out the value of my pointer like this so as expected we have this first line here which is writing out the address of our n variable and then this second line of code is this line here and as you can see we have written out the value of our pointer and that is the same address as this one here here which means that our pointer really is storing the address of our n variable now you may ask how can I access or can I access the value that is stored on that address using pointers and the answer to that question is yes you can and in order to do that in order to access the value that is stored on this address that your pointer is holding you have to dreference your pointer so how do you do that well let me copy this so as you already have seen this line of code here is going to write out the address and in order to write out the value on that address you dreference the pointer and in order to do that you add this star symbol before your Pointer’s name so if I run my program now as you can see in this last line of code we have the value of five which is actually the value that is stored on this address here so let me show you one more thing what I want to do is I want to change the value that is stored on this PTR address so on this address that our PTR pointer is storing so how am I going to do that I’m going to say again star symbol and then PTR and this here means please access this memory location so whatever I’m going to assign here is going to be stored on that memory location and what I want to assign is for example value of 10 like this so now if I copy this line of code and then paste it here and if I run my program again we have this value of 10 stored on this address here and one interesting thing as well is that if we try to write out the value that our n holds now like this if I run my program as you can see our n holds the value of 10 as well even though uh we have never said that n has the value of 10 but we have stored the address of our n in our pointer and then we have D referenced our pointer meaning we have changed the value on that address here in this 11th line of code here so that’s why our n holds value of 10 now one very important thing to keep in mind is that your pointer has to be of the same type like the variable that it is pointing to so let’s close this so as I said this integer pointer is pointing to an integer variable so our n is of int type and the same way would be if we created a float pointer it would have to point to a float variable and then chart pointer can point only to a Char variable double bull um and so on so pointer and the variable that that pointer is pointing to have to be of the same type okay so that means that if I try to change the type of this n variable to float for example like this so if I say float immediately we get an error here and the error says a value of type float pointer cannot be used to initialize an entity of type end pointer meaning you cannot assign address of a float type to pointer of int type okay so that is the error that we have here and I’m I’m going to return this to int okay and as you can see that error has disappeared because now our pointer is pointing to the same type so to the variable of the same type that that pointer has so int pointer pointing to an INT variable one thing that beginners very often try to do is the following so they say okay let’s create a pointer so int let’s give it a name ptr2 so pointer like this so I have created a pointer right so let’s dreference this pointer and assign it a value so I’m going to say please D reference PTR 2 and assign it a value of 7 for example now this code here has a problem problem and if I run it if I say build solution actually as you can see it says uninitialized local variable ptr2 used this means that this ptr2 so this pointer to does not have an address so where should it store this value of seven if it does not have an address and the easiest way right now to solve this problem is going to be to create a variable and to give the address of that variable to our ptr2 pointer so I’m going to say int V this variable has to be of the same type as our pointer as we already said and then I’m going to say here our ptr2 is going to hold hold the address of our V variable like this and now we shouldn’t have this problem anymore so if I build my code again as you can see one succeeded so the problem has disappeared and let me write out the value of this V variable so I’m going to say V is equal to and then let’s write out the value of this V and if I run my program as you can see it says that V has the value of seven because we have assigned it here by D referencing our pointer that is holding the address of our V so you may say now okay Salina I understand this but this seems a little bit too much why would I create a pointer just to assign a value to a variable and the answer to that question is you don’t this is not the type of problem for which pointers were created in C++ so this there are different problems that pointers solve in C++ and this here is just a demonstration of what are Pointers and how can you create your own pointers now examples of some of these other problems that pointers solve is you can use pointers in order to pass values by a reference to a function and then you can use them to return multiple values from a function which is an interesting one uh you can use pointers in combination with arrays as well uh you can use them for dynamic memory allocation and then if you’re familiar with oop objectoriented programming you can use a pointer of a base class in order to access a object of derived class and then there is this concept of smart pointers which we are going to cover in the future so I believe as well that I have mentioned some of these things in some of my videos but I plan to make um dedicated series to pointers where we are going to talk only about pointers so stay tuned subscribe to my channel um hit that Bell icon as well so that you are notified when I publish my next video and if you like this one give it a thumbs up thank you for watching and I’m going to see you in my next video where we will be talking about pointers bye hi everyone welcome to my channel in this video I want to talk about void pointers now in the previous video of this playlist I introduced you to pointers in general so I explained what are Pointers and how you can create your own pointers and I said that a pointer is a special variable that can hold an address and I said as well that a pointer can hold only the address of a variable that is of the same type as that pointer which means an integer pointer can hold the address of an integer variable and then a character pointer holds the address of a character variable float pointer of a float variable and so on but there is an exception to that rule and that is a void pointer and a void pointer is a special type of pointer that can hold the address of a variable of any other data type so a void pointer can hold the address of a float variable or an INT variable or a Char bull struct whichever one you pass to that void pointer but a void pointer has a limitation as well and that limitation is that you cannot directly D reference a void point so in order to demonstrate this I’m going to create an example with the knowledge that we already have so using only integer and character and Float pointers that we are already familiar with and then I want to introduce a void pointer in order to solve that problem so that you can see how void pointers are used so let’s jump into our Vis Visual Studio here I want to create a variable um and let’s make it of int data type so I’m going to say int and let’s call it number like this and I’m going to assign it a value of five for example now what I want to do with this number variable is I just want to write it out and because we are working with pointers let’s play with pointers some more so I want to write out this variable using a function that receives a pointer let’s do that so that function is going to be of return type void and let’s call it print number like this and then here this function is going to receive an integer pointer and we are going to call it uh number PTR so number pointer okay now what this function here should do is it it should just print out the value that this number pointer is storing so actually the value that is stored on the address that this number pointer is holding so in order to do that we have to the reference this pointer so I’m going to say star symbol and then put the name of this number pointer and let’s add an end line as well now this function is finished and it is writing out the value that is stored on the address that we passed to it and we have to pass it the address of an integer variable so if I invoke this print number function let’s say print number as I said since it is receiving a pointer we have to pass it an address and that is going to be the address of this number variable so let’s say m perent number so this here is going to give us the address of this number variable okay and now if I run this program as you can see this function here has printed out value of five which is the value of our number okay now what happens if I want to create a k character variable and then print out a character variable as well so let’s do that I’m going to say Char let’s call it letter and let’s assign it a value of letter A okay and now in order to print out this character using this same approach I will have to create another function because this one here receives an integer pointer and in order to print out a character we would have to create a function that receives a character pointer so let’s copy this function here and I’m going to call it print letter like this and then this function is going to receive a character pointer okay and that pointer is going to be called Char PTR and then here I just want to write out the referen value of that Char PTR so let’s invoke this print letter function let’s let’s pass it the address of this letter variable that we have created here and now if I run this program as you can see we have five for this first function and then a for this second function which means that these two functions are doing its job but what happens if I want to print out a floating Point number and then a double and then a Boolean value and a stct value in order to do each one of those I would have to to create a function that receives that specific data type pointer but we can solve that same problem using a void pointer because as we already said a void pointer can point to a variable of any data type so let’s do that let’s create a function that is going to print out any data type so that function is going to be of return type void and let’s give it a name print because it is generic it is going to work with all data types I’m going to give it name of print and as we said that function is going to receive void pointer and let’s call that pointer PTR okay now because this void pointer can point to a variable of any data type we will have to keep track of which data type we have passed inside this void pointer and in order to do that I’m going to use another parameter here and that parameter is going to be of type R and I’m going to call it type so how this type parameter is going to be used well in a situation where we pass an integer pointer to this print function here this type parameter is going to have a value of I in a situation when we pass a character pointer to this void pointer here in this type parameter we are going to pass a value of c and then if we pass a float pointer here here we are going to store an F and then if we pass a double pointer here this type variable should store a letter D so that we can know how we are going to dreference this PTR pointer so the first thing that we have to do is we have to check what this type variable is holding so in order to do that I’m going to use switch case like this you can use if else as well if you want so here I’m going to switch on this type variable like this and what I want to do here is I want to say in the case that this type variable is holding the value of I that means that this here is an integer pointer so here I’m just going to leave a comment for now so I’m going to say handle int pointer like this and then the other situation is going to be in the case that this type variable is holding the value of C that means that here we have passed a character pointer so I’m going to leave another comment as well so here I I’m going to say handle Char pointer okay now let’s explain how we are going to handle this integer pointer and then this character pointer as well well as we already said since a void pointer cannot be dereferenced directly but we first have to cast it into a specific specific data type so into an integer pointer or into a character pointer in this particular situation I’m going to do that so here I’m going to say in the case that our user has passed an integer pointer here I will have to cast this void pointer into an integer pointer first so how do you do that well you say please this pointer here so this PTR cast that into an integer pointer so this expression here is going to cast this void pointer into an integer pointer so in these parentheses here we are going to have an integer pointer and in order to access to the address that an integer pointer is storing and write out the value that is stored on that address we dreference that pointer and for that we use this star symbol so now here we have the value that is stored on this integer pointer and I’m going to write out that value like this and let’s add endline as well so this here writes out the value of an integer pointer so let’s copy that and then paste it here and here what I want to do in this C situation is I want to cast this void pointer into a character pointer so Char pointer and then after I have character pointer here I ID reference that and then this line is going to write out the value of our character okay so now if I invoke this print function I should get the value of this number and then of this letter as well using only this print function so let’s comment these two for now and let’s invoke our print function so I’m going to say print and then the first thing that it receives is going to be DX address and in this particular situation considering that this is a void pointer we can pass it the address of any data type so we can pass it the address of a integer variable or of a character variable or of a floating Point variable and in this situation we have integer variable and then character variable so let’s use these two so let’s pass here the address of our number that oh that is going to be the first parameter and then the second parameter is going to be the type and considering that we have passed the address of an integer let’s pass the value of i as our second parameter here okay and then I’m going to copy this function one more time and this time I want to pass it the address of our letter variable and considering that that is a character here as a second parameter I’m going to pass C now I’ve just not notice that something is missing from our switch case and before I say what it is please write your idea write your answer in the comments down below so what we are missing in these two cases is break at the end so here I’m missing a break like this and then here as well okay so now we have completed our switch case and if I run my program now as you can see for this first line we get the value of five which is our integer so this print function has printed the value of our integer and then in this second line we have printed out the value of a character and we have done that using this print function which receives a void pointer and then it receives a Char uh variable which is called type and we use that Char variable in order to differentiate which data type we are storing inside this void pointer because as I already said a void pointer can point to a variable of any data type but it cannot be de referenced directly so for that we are using this type parameter to check which data type is stored inside this pointer here so now you have an idea on how to use void pointers but I would actually advise you to be very careful when using void pointers why because your compiler in this particular situation does not have a way to tell you hey you are trying to cast a void pointer which is actually an in pointer into a character or vice versa if you’re doing that your compiler in this situation here does not have a way to know if you’re are making an error or not because inside a void pointer you can store the address of any variable so of a variable of any data type and then you can try to cast that void pointer into a pointer of any other data type which means for example in this particular situation here we are passing an integer so this number here is an integer which means that here for this line of code we are receiving an integer pointer okay and then in this case here we are trying to cast that into an integer pointer and that is okay but if we accidentally make a mistake here and we try to cast that into a character pointer for example like this our compiler Now does not have a way to know that we are making a mistake here and if we run our program look at this we get this undefined symbol here which is what is this you know this is not the expected behavior of our program and we did not get a compile time error which means that this here is is completely valid so your compiler is not going to tell you that this here is an error but it actually is a logical error and those type of Errors so logical errors are much harder to find inside programs and this here is a small program and it is kind of easy to find an error in a program that has 20 lines of code but if you had a logical error in a program that has 20,000 L lines of code for example you would have a very very big problem so again I strongly advise you to be very careful when you are using void pointers because as you see compiler is not uh reporting an error for this situation here but but this actually is an error so I’m going to return this to an integer pointer okay so I hope that you enjoyed this video and uh that you learned something new and if you did give it a thumbs up subscribe to my channel and thank you for watching I’m going see you in my next video bye hi everyone welcome to my channel in this video I want to talk about pointers and arrays and if you watched the first video of this playlist you remember that I said that one of the common uses of pointers is using them with arrays so in this video I want to demonstrate how that works so let’s jump straight to our visual studio and let’s create an array of type in and I’m going to call that array lucky numbers like this and let’s say that I have five lucky numbers for example and those are 2 3 5 7 9 oh that’s five numbers already okay so these here are my lucky numbers and now I want to show you one thing so what is going to happen if I say for example see out lucky numbers and let’s add and l so what is going to be written out if I write out just the name of my array let’s check that if I run this program as you can see we get an address but what is this address this address here so the name of our array is actually the address of the first element of that array and in order to prove that let’s write out the address of the first element of this array to check if these two are going to be the same so here I want to write out the address of the first element which is the element with index zero so now if I’m telling the truth these two should be the same so if I run my program as you can see indeed we get the same address which means again the name of the array is the address of the first element of that array now that means that this lucky number’s name behaves as a pointer and these square brackets here are behaving as a operator for D referencing so if I say for example see out lucky numbers of two I’m going to get the element that has index two so this here is going to be the first address and then it is going to add two more addresses to that element and we are going to get the value that is stored there so lucky numers name is the address of the first element it is going to add two more addresses to that so one two so this line of code here is going to give us the value of five let’s add endline and run our program in order to demonstrate that and as you can see indeed we get the value of five now there is another way to do this same thing here and that is going to be the following way so I can say see out please write out this lucky numbers which as we already demonstrated is the address of this first element so I’m going to put that here and then I can use arithmetic operators on this so I can say please add to this lucky numbers two more address spaces and then the reference this so we use star symbol for that and then I’m going to add end line and these two lines of code so this one here and this one here should behave the same so if I run my program now as you can see we get the same value so these two lines of code are doing the same thing which means that this line of code here is using these square brackets in order to the referentie the element with that index which is index 2 and we know that the indexing starts with zero so 0 1 2 and we get the value of five and then this second line of code here uses this star symbol in order to differentiate this expression here and what this expression here says it says lucky numbers which is the address of the first element as we demonstrated here so please use the address of the first element and then add two more address spaces to that so the address of the first element if I add two more to that it’s going to be the address of one two so the address of this one here and then if I dierentiate that I get this value which is stored on that address so these two lines of code are writing out the same thing so let me very quickly show you how you can enter the values for this array and then write them out because here we have hard hardcoded value so I’m going to delete this and um I’m going to comment these two lines of code as well no actually I’m going to comment all of these because we don’t need them anymore but I’m going to leave them for you so that you can um see how these are used in order to deeri um your array so as I said we want to enter values for our array now so in order to do that I’m going to use for Loop so I will say four and then our for Loop starts uh with I equal to Zer because that is the index of our first element and then considering that our array has five elements and the last one has index of four we are going to run our four Loop while I is less than or equal to four and in each iteration we are going to increment the value of our I okay and in order to enter values for our array let’s write out a message so I’m going to say see out number so please enter a number that is going to be the message for our user and then I’m going to input a value from my console into lucky numbers of I so this here means please enter the value into our lucky numbers array to element that has the same index that our I holds in that iteration so in the first iteration index zero in the second iteration index one and then in the third iteration index two and so on so this for Loop here is going to help us to enter the values into our lucky numbers array and in order to show that I’m going to put here a break point and that means that our program is going to stop its execution when it comes to this line here so if I run my program as you can see it asks me to enter number so I’m going to say 2 5 7 9 and 13 so those were five numbers that we had to enter for our lucky numbers array and if I press enter one more time as you can see our program has been stopped in this line of code here and if I hover over my lucky numbers here we have values that we have entered for our array so value of 2 5 7 9 and 13 which are the values that we have entered here so I’m going to stop my program now please stop okay and now what I want to do is I want to use this other approach to write out the numbers that this lucky numbers array is holding so let’s use another for Loop I’m going to copy this one okay and then what this second for Loop is going to do it is just going to write out these numbers but but okay let’s use this approach for now so I’m going to just change this to see out and then use these other redirection signs and after each number I’m going to add an empty space okay like this and instead of using this approach here so instead of uh using these square brackets in order to deeri uh the element on that position let’s use this approach here so I’m going to say please use lucky numbers so which is the address of the first element and then to that I want to add the value of my I so plus I like this and this is going to move okay so this expression here is going to help us to access all of the elements of this lucky numbers array so from the one that has index zero until we come to the one that has index for and because we don’t want to write out addresses because this here is going to give us the address but we want to write out the values that are stored on those addresses we will have to dreference this expression here so for that I will use star symbol and I’m going to remove this breakpoint now and I’m going to start my program to see what is going to happen Okay and let’s enter 2 3 5 7 9 19 and as you can see we get values of 2 3 5 7 and 19 which we have entered okay let’s stop this program now and there is one more thing that I want to show you what is going to happen if I change this max value from four to five like this so what is going to happen in this particular situation let’s run our program and enter numbers again so 2 5 7 13 15 okay as you can see now here we have these five numbers that we have entered so 2 5 7 13 15 those are the ones here and then the last one is something that we do not recognize what is this this is some junk number that we definitely have not entered here so this number here is something that does not belong to our lucky numbers array and here we have accessed someone else’s memory base so we have this result because we changed max value from four to 5 here and as we already know our lucky numbers has five elements the last one having the index of four which is this one here and then here we added one more iteration so now we are trying to access the element with index five and that element with index 5 does not belong or does not exist in our lucky numbers array so so this element here this is memory location that belongs to someone else and we accessed that trying to deeri the pointer to the element that is Sixth Element so we have five elements in our lucky numbers array and then if we add one more address space to that we get this here which is memory location that belongs to someone else and if we just randomly change and access memory locations that do not belong to us we can cause very very big problems so I advise you to be very careful when iterating through your arrays and to access only memory locations that belong to that array that you are iterating so in the case that your array has five elements that those are going to be from zero to four so indexes from 0 to four in the case that your array has 10 elements for example those are going to be indexes 0 to 9 and so on so again be very very careful to not access memory locations that do not belong to you so I hope that now you have an idea on how pointers and arrays go together and as well we have seen some of the potential problems that can happen if you are not careful enough when working with pointers and arrays so again I advise you to be very careful uh when working with pointers and arrays and and not access memory locations memory addresses that do not belong to you so thank you for watching this video If you enjoyed it if you learned something new give it a thumbs up and subscribe to my channel hit that Bell icon as well you can follow me on my other social media if you want links for those are going to be in the description of this video thank you for watching and I’m going to see you in my next video bye hi everyone welcome to my channel in this video I want to explain how you can use pointers in order to return multiple values from a function so I said in the first video of this playlist that using pointers to return multiple values from a function is a very common use for pointers so in this video I want to demonstrate how that works so here we are going to create an array of numbers and then first I want to create two functions and one of those two is going to return me the smallest number in that array and then the other one is going to return me the largest number in that array and then in the second part of this video I want to show you how you can use pointers in order to get both smallest and largest number using one function only so you can return both of these numbers so Min number and Max number using only one function and that is going to be with the help of pointers so let’s start with this example as I already said uh I’m going to create an array of numbers so um those are going to be numbers of type int and let’s call this array numbers like this and it is going to be array of five numbers and let’s assign him values of for example 5 4 um – 2 29 and 6 for example so those are going to be my numbers okay and now let’s create a function that is going to return the smallest number of this array so I’m going to create that function here and let’s give it the return type of int and I’m going to call it get min like this and what I will need to pass to this function is going to be array so this array here so I’m going to say int numbers array so this is going to be the first argument and then the second one is going to be the size of this array so I’m going to say in size and we will use this second parameter here so that we know how many iterations we have to make in order to go through all of the elements of this array so let’s define this function the first thing that I want to do is I want to create a variable of type int and that variable is going to be called min so this is going to be the variable that is going to hold the minimal value so the smallest number in this array and initially I want to assign to this variable the first element of this array so I’m going to say that the smallest element initially is going to be the first one so I’m going to say numbers of zero and then we are going to iterate through all of the other elements and each time that we find an element that is smaller than the current value of our min we are going to store that value in our Min so let’s do that so I’m going to say four and since we have already stored the value of our first element in our Min we do not need to iterate through that so I’m going to say that my int initially has the value of one okay oh int I is equal to one like this and then our for Loop is going to iterate while our I is less than the size of this array so in this particular situation while our I is less than five and in each iteration we want to increment our I like this so as I already said if we find a number on a specific position which is in this current situation uh the position with the index of I if we determine that that number is smaller than our Min number like this we are going to store that number in our Min variable so I’m going to say Min is equal to numbers of I so that at the end of this for Loop in our Min variable is going to be the smallest number of this array so at the end of this for Loop here we can return our Min like this okay so now in order to test this function here I’m going to invoke it let’s say get actually I’m going to write it out I’m going to say C out Min is like this and then let’s invoke it let’s say get min like this and this get min function receives array so let’s pass it numbers array and then it receives the size of this array and this array has 1 2 3 4 five elements and you can check that here as well so we are going to pass Five here okay and if I run this program as you can see it says Min is minus 2 which really is the smallest number in our array so that is going to be the first function and then the second function that I want to create is going to be the one that is going to return the largest number in our array so let’s copy this function I’m going to copy it and then just modify it a little bit so the name of that other function is going to be get Max like this and then that function as well will receive numbers array and the size but here we are going to have variable which is called Max instead of Min and again we will assign it the value of our first element so then we iterate through all of these elements so starting with the second element because first the value of the first one we already have inside this variable so we do not need to check that but if we find in these remaining elements if we find element that is larger so bigger than our Max let’s copy this here we are going to store the value of that element in our Max variable like this and then at the end we will return our Max variable okay so now in order to test this function I will invoke it as we did with this previous one I’m I will just say Max is and then invoke get Max like this and I’m going to add two end lines here so that we have output which is formatted nicely and if I run my program now as you can see it says Min is minus 2 and then Max is 29 which is correct so let’s explain one more time the algorithm that we are using here in order to determine the biggest number of our array so here in this first line I say that the biggest number is the one with the index zero so the first one and then here we iterate through all of the remaining elements and that is from the one with index one until the last one and if we find that any of those remaining numbers is greater than our Max number then we say that our Max number is equal to that number so at the end of this for Loop we will have in our Max variable the largest number of this array here okay and we have accomplished to get our Min number and then our Max number using these two functions oh I’m sorry so using this get min and then get Max function as well so now what I want to show you is how you can use one function only to get both Min and Max number so let’s do that let’s create a function which we will name void get min and Max like this and this function is going to receive like these two previous functions our numbers array and the size of the array and then considering that we want to return two values from our function we will have to pass those two values by a reference which means we will have to pass the addresses of the two values and then this function here is going to change the value that is stored on those two addresses and this function here our main function is going to have the access to those two addresses as well so once this function here assigns the value of Min and Max numbers to those two addresses our main function is going to be able to access those values so as I said let’s pass to this function as well int Min like this and then int Max so we are receiving here pointer to A Min number and then pointer to a Max number okay so the job of this function will be very similar to the jobs of the two functions that we just created so I will just copy this and then paste it here and once more we are iterating through all of the numbers of our numbers array and then here we say if you find any number which is greater than our Max number and here we have an error which says operand types are incompatible so int and int pointer which means that here we have to D reference this pointer using the star symbol so if you find any number which is greater than our current Max please store that number inside our Max like this and then I’m going to copy this code one more time for our M number so I will say if you find any number which is smaller than our Min number like this Please assign that number to my Min number like this so this is going to be the work that this function will do and considering that this function is receiving these two so Min and Max as pointers this means that this function is directly going to modify the values that are stored on these addresses and those same addresses are going to be available in our main function which means that once this function changes the value vales that are stored on our Max and our Min address this main function here will be able to access those changed values and using pointers in that way we have achieved to return multiple values from our function so let’s invoke this get min and Max in order to test what I just said so I’m going to comment these two lines of code because we do not need them anymore and because here we have to pass Min and Max we will have to create those two variables here as well so I will say int Min and as we did before I’m going to assign to this Min the value of my first element like this okay and then I will create Max variable as well and assign to my Max variable value of my first element as well and now let’s invoke this get min and Max function so let’s say get min and Max and let’s pass it parameters that it needs so the first one is numbers array so I will say numbers and then second parameter is size of that array so five and then it expects to receive two pointers so Min and Max and we will have to pass addresses of our Min and then address of our Max as well like this and this here is called passing a parameter using a reference so that means pass an address of a variable to your function rather than passing variable itself because then if you don’t pass an address your function is going to create a copy and whatever changes your function makes with that copy you will not be able to see those changes in your main function so in this way we are passing addresses which means that this function here is operating on the original addresses which this function here is accessing as well so when this function here changes the values that are stored on those addresses this function here will know so that means that now if I try to write out oh I will need to add semic colum here at the end okay so that means now if we try to write out our Min like this Min is and then Min and then if we try to write out our Max as well Max we will get um values of Min -2 and 29 at least we expect to get those two values if this function is working correctly so if I run my program as you can see we really have values of min-2 let me just um collapse this so we really have values of Min -2 and 29 as the smallest and largest number in our array and we have achieved that using this pass by a reference so by passing addresses of our variables to our function which our function then changes the values that are stored on those addresses and since this main function as well has the access to those same addresses that means that our main function can see the changes that have been made on those addresses so I hope that now you have an idea how to return multiple values from a function using pointers so if you enjoyed this video If you learned something new give it a thumbs up and also subscribe to my channel and I will be publishing more videos related to pointers in the future so if you don’t want to miss out on those press Bell icon as well thank you for watching and I’m going to see you in my next video bye hi everyone welcome to my channel my name is Salina and I make it and programming related videos so if that is something that is of interest to you consider subscribing to my channel and give this video a thumbs up as well and in this video I want to talk about Dynamic arrays so you should already be familiar with the idea of arrays and the concept of fixed arrays from my previous videos but for those of you that really want to understand the need for dynamic arrays I will go through some of the advantages and disadvantages of fixed arrays so that you can really understand where the need for dynamic arrays arised so we said that an array is type of collection which stores elements in continuous memory now that means that it stores elements one after the other so if I do this for example if I say let’s create an integer array of five elements and let’s call that array my array like this your computer in the background will do the following it will give to this array here five containers of type int and those containers will be one after the other in memory so that means because the array stores data in a continuous memory so one after the other accessing that data will be very very fast so because the name of the array is the address of the first element of that array when you specify the name of the array and then you give it the index of the element that you want to access it is going to be very fast to move from that first element until that position that you specified so until the element that has that index whereas if you use some other collection type like linked list for example which stores data in non-continuous memory which means in a random places in memory and then each element contains a pointer to the previous one and to the next one accessing elements in those type of collections would be much slower so if you wanted to access Fifth Element of linked list you would have to Traverse the first four elements and then get to the fifth one because they are stored in noncontinuous memory meaning they are randomly in your memory so as I already said accessing elements of an array is a very very fast operation but because your array stores data in continuous memory this has certain disadvantages as well so what happens if you want to insert or delete an element in the middle of the array for example so how can you insert or delete an element in the middle of the array without breaking that continuousness if I can say it like that so you get the point that means that the operation of inserting and deleting elements in an array is going to be much slower than inserting elements in a linked list for example and if you want me to do a video which is related to differences between linked lists and arrays for example write it in the comments down below and I will make it in the future when I find time so again if you are not familiar with the basics of arrays I recommend you to watch my first video which is related to arrays and pointers which I will link here and then you come back to this one so those were some advantages and disadvantages of arrays and it will be up to you to decide which collection you want to use however here I want to give you the biggest disadvantage or the biggest obstacle that we encountered so far when working with arrays and that is the following so the size of the array had to be constant which means that the size size of the array had to be known before we even started our program so we always kind of wanted to do this so we wanted to say int size and then we wanted to ask our user to enter the size so please enter the size for the array and then after our user enters the size for the array we wanted to create the array that is of that size that our user specified however we get the error as you can see here it says expression must have a constant value which confirms what I just said which is that the size of the array had to be known at compile time so the size of the array could not be changed once we declar it it and we had to declare it before we even started our program so this problem was without solution so far but surprise surprise if you know how to work with Dynamic arrays and dynamic memory you can very easily create an array and runtime so in C++ there are two keywords or two commands which allow you to allocate and deallocate dynamic memory which means to get yourself dynamic memory when you need it and then free that memory once you don’t so that it can be reused that is what allocate and deallocate means and those two commands are new and delete so new allocates memory as you may guess and then delete deallocates that memory or freeze it once you don’t need it so let’s see how we can use this information that I just gave you on our example so instead of doing this here I will comment it because we do not need it instead of doing this what I will do is I will create a pointer like this and let’s call that pointer my array and what I want to assign to this pointer will be the following I will say please make this pointer point to new integer array and the size of that array will be this size that our user entered like this okay and as you can see our compiler is fine with this expression here we do not have an error so this new keyword has allocated an array of this size that our user has specified and that array aray the address of the first element of that array is stored in this my array pointer so if I build this code as you can see we do not have compile time errors so what I want to show you now is how we can enter elements for this array and then how we can write them out and this is array again this is array which is created at runtime so our user will specify the size of this array which is something that we were not able to do before we learned how to use Dynamic arrays so uh in order to enter elements for this array here as we already know we will be using four Loops so I will say four please iterate from the element which has index zero until you come to the element that has the index of this size okay and then in each iteration increase our count counter by one and what I want to do is I want to write out a message for my user so I will say array and then let’s add index of the current element index that our user is entering so I like this okay and then what I want to do is I just want to enter an element on that position that we are current Curr it rating so I will say my array of I like this so using this code here we should be able to enter elements in this array here and then in order to write these elements out what I will do is I will use another for Loop so I will just copy this one and then paste it here and in this particular situation I just want to write out so I will use C out command and and then these other red Direction signs so I just want to write out all the elements of the array and I will add a few empty spaces after each element so that we have a nicely formatted output so this Loop here should write out the elements of our array and if I start this program now as you can see it asks us to enter the size of the array so let’s say five for example and now we are we are entering ele with index zero so let’s say 2 5 7 9 and let’s say 11 okay and as you can see here we have the elements of our array written out and we wouldn’t be able to do this if we didn’t know how to work with Dynamic arrays so let’s stop this program and there is one more thing that I want to mention and that is following these square brackets here are only one way to dreference your array another way to dreference the array or to to access the element on a specific position is the following so so the other way to access the element on a specific position would be using this asteris symbol and then here you say my array plus I now because the name of the array is the address of the first element here you have the address of the first element and then when you add a certain number to that it will move that many spaces in memory and then access the element on that position and when you dreference that you will get the value of that element instead of its address so here is one way to dreference your array and then here is another way to dreference your array and you can use whichever one you prefer and if I run this program again just to demonstrate that it works the same let’s say three and then one 5 10 okay we get 15 10 as the elements of our array one very important thing that I mentioned at the beginning is that we have two commands for working with dynamic memory and one of those two commands is new so we said that new is a command which will allocate memory for us when we need it and then another one is going to be delete and delete is a command which will de allocate that memory when we do not need it so that it can be reused Now using dynamic memory comes with a responsibility and that responsibility is the following each time that you allocate memory when you need it you will have to deallocate that memory once you don’t so that that memory can be reused so that means that each time that you write new command you will have to write delete command once you don’t need that memory anymore so I will demonstrate how can you deallocate the memory that we have allocated for this my array so let’s say that here in this line of code we do not need our array anymore so how can I deallocate the memory that I allocated for this array well using delete keyword and I will say please delete the memory that I allocated for my array which is called my AR array like this and you have to specify these square brackets because that is the way that you allocated memory so here you said I want new array and then here you have to say please delete that array and a good practice is to do the following as well so you can say my array is equal to null like this and let me collapse this so this here is going to assign the value of null to your array so your array will not point to anything to any address at this line of code so why do we do this because in the previous line of code we have deallocated this array here and now in this line of code here your array will point to a location in memory which does not belong to you so it does not belong to your program and because of that because we do not want to cause some accidental crashes or problems in our program by having this array pointing to memory locations which are not ours anymore it is a good practice to say that our array is now equal to null which means that it is not pointing to anything so as I already said and I repeat again when you use dynamic memory each time that you write new you will have to write the lead that corresponds to that new so here I have allocated an array and here I am deallocating that array so I hope that this video was helpful and that this video helped you understand what are Dynamic arrays and how they work and now that I have explained this it opened the whole world of new possibilities and new things that you can do with Dynamic arrays and I will leave to you to play and discover those new things until my next video of course so thank you for watching this video give it a thumbs up if you liked it subscribe to my channel click the Bell icon as well and I’m going to see you in my next video bye hi everyone welcome to my channel my name is Alina and I make it and programming related videos so if you’re interested in those please subscribe to my channel and give this video a thumbs up and in this video I want to talk about a topic that confuses many students and that is the topic of multi-dimensional dynamic arrays and the topics like this one are the reason why many people step away from learning C+ Plus+ and they believe that learning C++ is hard but what I think is that many of those people never actually had the opportunity to have this explained in a very simple way so that is what I will try to do in this video so with the help of excel I will try to draw what are multi-dimensional Dynamic arrays and how they work and I hope that at the end of this video you will have it pretty clear and you will be able to create and work with your own multi-dimension Dynamic arrays so what a multi-dimensional array is in simple words it is array of arrays and in this video you will learn how to create two dimensional Dynamic arrays and in order to be able to understand this topic you should be familiar with the topic of dynamic arrays which is a video that I already did on my channel and I will link it here so make sure to watch that video before watching this one so I will very quickly remind us all of how Dynamic arrays work and then we will see how we can use that knowledge to understand multi-dimensional Dynamic arrays so let’s create a visual representation of a dynamic array in our Excel sheet so let’s say that it will be array of four elements like this this is our array and the indexes of these elements start with zero and then 1 2 3 so these are the indexes and then the address of this first element will be for example 000000 AA like this and this address here it is the address of the first element but it is the address of the array itself as well and you should be familiar with that so this here is our dynamic memory and then on our stack which will be here let’s create our stack so this here will be our static memory here we will have to create a pointer variable which will hold the address to this element here or actually the address to the array itself so I will create a variable let’s call it PTR 1 so this is going going to be our pointer one and as we already said that pointer will hold the address of the first element of this array let’s copy that address like this and then we will store that address in our PTR 1 now if we wanted to create more array way by the knowledge that we have so far we would have to copy this and then let’s paste it here and let’s create one more array like this so now we have three Dynamic arrays and the first element of the first array has the address of 0 0000 AA and then this one here let’s say that it has the address of BB for example and then this one here has the address of 0000 CC and to be able to access these arrays we would have to create on our stack two more pointers so let’s do that okay so our pointer 2 will hold the address of the second array which is 0000 BB and then our pointer Tre would hold the address of our third array which is 0000 CC like this now with this we have created three Dynamic arrays and in order to create those three Dynamic arrays we had to create three pointers so those are these three here and this is something that you should already be familiar with so you should already know from my previous video how to create a dynamic array now one thing that I see here and that is a problem is that if we wanted to create four or five or 100 of these Dynamic arrays we would have to create that number of pointers on our stack which means that this part here is not Dynamic only this part here is dynamic because here our user determines how many elements this Dynamic array will have but for each of these Dynamic arrays we have to manually create a pointer on our stack which will hold the address of that array okay now what happens if I want to move this part here to our dynamic memory as well so let’s do that let me cut it from here and then I will paste it here for example so now I have moved this part to dynamic memory as well and as you can see here this kind of looks like an array as well so that means that this first element if we look at this as an array the first element will have index of zero and then second will have index of one and then third will have oh this won’t move third will have index of two okay so this is an array that has three elements and the first element for example has the address of 00 0 e e e e like this so now this part here is dynamic and then this part here is dynamic and in order to be able to access this array here what we have to do is on our stack which is this part here we will have to create a pointer which will hold the address of this first element so let’s do that let me just okay now as I already said on our stack we will have to create a pointer which will hold the address of this first element so let’s call that pointer table for example and this table will hold the address of this element here which is 0 0 e e e e and this table because it holds the address it should be a pointer but one thing to keep in mind is that this variable here is not a simple variable but this here is a pointer as well which means that this table will not be a simple pointer but it will be a pointer to a pointer and you indicate that using two ASX symbols because one is just a pointer and then two mean a pointer to a pointer why because this table holds the address of the element which is this one here and that element is pointer as well okay now if we look at this here as you can see we have one array that represents the number of rows that our table will have okay so one 2 3 and then for each one of the elements of this array here we create a separate Dynamic array like this so this here will be our table that has the number of rows that are user defines and then however many columns are user defines as well and in this particular situation it is a table that has three rows so these are three rows and then four columns so let’s now translate this to our C++ code and because we said that now our user defines how many rows this table will have and then how many columns as well that is the first thing that I will do so I will create two variables let’s call them int rows and columns and then I will ask my user to enter how many rows and how many columns he wants this table to have so let’s do that see in rows o and then columns like this okay now after our user has entered how many rows and columns he wants what I want to do now is this part here so this part here this is our first step and then this here is going to be our second step and this part here will be the third step so this part here will be the following when translated to C++ code so here as I already said I create a pointer to a pointer which I will call table so I will say please create an integer pointer to a pointer because here we will store integer values you can create a character or double or float whichever one you want I want to create integer pointer to a pointer and call that table like this okay so we are done with this first part here and then what this table pointer to a pointer will point to is going to be this array here so I will say please create a new in integer array that has this many elements so the number that our user has entered for this rows variable because this rows variable holds how many elements this array here will have but as you can see here we have an error and that error is happening because this here which is this array here is not just a simple integer array but it is array of pointers so here you will have to indicate that so you will have to say please create an integer array of pointers and as you can see now our error has disappeared and with this line of code here we have created this array here now our third step is going to be that for each element of this array here we would have to create a separate Dynamic array so this first element will hold the address of this Dynamic array and then this second element holds the address of this array and then this third the address of this array here so what I will have to do is I will have to iterate through all the elements of this array and for each one I will have to create a separate Dynamic array so let’s do that so I will say for in I is equal to zero and then I is less than the number of rows that our user entered and in each iteration increment I so in this particular situation our number of rows is equal to three but you can have as many as you want so what I want to do in each of these iterations is I want to create for each one of these elements a separate Dynamic array so I will say table of I is equal to new integer array that has this many elements and that is the number that we stored in our columns variable like this and with this code here we have successfully created these Dynamic arrays now how do you access elements on a specific position of this table here for example this one or this one or this one so in order to do that let’s say for example table of Row one and then column 2 will have the value of 88 now what this could here what this line here will do is the following so this part here it says please give me the table variable which is this one here and it is a pointer to a pointer which holds this address here so 0 0 e e e e and that address is the address of this element here so the address of this array and here we say please give me the element of that array that has index one which is this element here so it is the element that stores the address of 0000 BB which is the address of this array here and this second part says please give me the element of that array that has the index of two which is this element here so here we will store the value of 88 so that is what this line of code here will do it will store number 88 to this position position here so this line of code here will store this number at the element that has row index one and column index two of this table so this here is a row with index zero this here is a row with index one and then two so we are storing at this row and then column index two is this one here so here we store number 88 one thing that we said as well in my previous video is that each time that you allocate dynamic memory you have the responsibility to deallocate that memory when you don’t need it which means each time that you use new keyword you will have to use delete keyword when you don’t need that memory anymore so now is the question how do we deallocate all of this memory that we have taken so in order to do that what I want to do is I want to show you something if for some reason we lose this address here so the value that is stored in this table pointer to a pointer we will never be able to access all of these elements that we have created in our dynamic memory so that means that we will not be deallocating this first and then if we for some reason lost this the value of our 000000 AA for example that means that we would never be able to access this array here so we would never be able to deallocate this memory so that means that this is not going to be deallocated it first as well now allocation of this memory here went as follows this was the first step so this was the first thing that we allocated and it is this code here and then we allocated this so that corresponds to this part here and then the last thing to allocate was these arrays here and that corresponds to this part of the code and the allocation of this memory will go the other way around which means that first we will deallocate this and then we will deallocate this and then this will be the last thing that we will have to worry about now in order to deallocate this the process will be almost the same as the one when we allocated it so I will copy this for Loop and then paste it here but what I want to do in this particular situation so when the allocating is instead of creating a new Dynamic array for each table of I is I want to delete that array so for each element of this array here I want to delete the corresponding Dynamic array so I want to delete these three arrays and in order to do that I will say please delete the array that my table of I is pointing to now what this code here will do is for this element here it will deallocate this array here so let’s delete that and then for this element here it will deallocate this array and then for this one it will deallocate this array here so now we have successfully freed this memory that we have taken here now after we have done this after we have successfully deallocated our first step which was here this part here will be our second thing to deallocate so here I will say please delete the array that my table variable is pointing to so this line of code here will deallocate this part here so I will say please delete that we do not need it anymore okay and then our third step which is the last one will be to null this value here why because we have just free the memory that was here so we have deallocated that now someone else might be using this memory here and we really shouldn’t keep the address of someone else’s memory so we should make this a null value like this and in order to do this in our code I will just say now my table will hold the value of null like this and this will prevent some potential crashes and problems in your application so I hope that this video helped you understand multi-dimensional Dynamic arrays a bit better and if it did please give it a thumbs up and subscribe to my channel because that helps me to reach more people and hopefully make programming a little bit easier for them as well thank you very much for watching and I’m going to see you in my next video bye hi everyone welcome to my channel my name is Alina I’m a software engineer and I make it and programming related videos here in YouTu YouTube and in this video I will be doing something that I haven’t done before and that is reviewing your code and we will see some errors that you guys have sent me so I get a lot of messages a lot of questions on my Instagram on Twitter and then here on YouTube as well in the comments where you ask me for an opinion or for advice on certain errors that happen to you in programming and I try to answer as many of those as possible but it’s just not possible to answer to all of you and I’m very very sorry but I thought that it would be a good idea to make a video related to that so that all of you can see it so here I am I’m making that video right now so in this video I will be reviewing some code and we will see some errors that can happen and that do happen very often and I’m going to do that both manually and then I want to show you a very cool tool which is called PVS Studio I’m going to leave details in the description down below so that you can check it out for yourself but what PVS studio is it is static code analyzer so it is basically a tool that reviews your code and helps you detect bugs and errors and security weaknesses in your code so in the case that you need another pair of eyes to look at your code and give you a few tips and recommendations it is a great tool to use and you can get it as a team license for teams up to nine people or you can get an Enterprise license for bigger companies bigger departments or you can even request a free license if you are a student if you are working on some private projects or on some open- Source projects and then one very cool thing is that it is not only used to analyze C++ code but you can use it for C and then C and Java as well uh and I wondering guys which team are you in are you team C++ or are you team C or Java or C um I’m very curious to read your answers so please write me in the comments down below and if you ask me I’m definitely team C++ and then team c those are just two of my favorite languages ever but I am very curious to read what you will answer to this question so um I’m going to leave all the details about PVS studio uh in the description of this video so that you can check it out for yourself and let’s jump into the coding part right now because I am very very excited to do this here I have created a new project and I have this program that does basically nothing so what I want want to do is I want to check if everything is okay with this code so far so if we have made any errors so far so I’m going to click on extensions and then PVS studio and here you have multiple options you can check your current file you can check open files or you can check your project selected items solution I’m going to select this first option so I’m going to check this current file and you get this window here and as you can see we have one error and that error is that my license will expire in 5 days okay so that is not error which is related to our code so we are just going to ignore it so we don’t have code errors so far and let me show you how you can install this tool very quickly so you click on extensions and then manage extensions okay and then here you can search for PVS Studio like this okay great it is this one here so PVS studio is a tool for detecting bugs and security weaknesses and so on okay so you will click download here and your download should begin I’m not going to do that right now because I already have it but once it is downloaded the installation is pretty simple so it’s basically next next next finish installation so that should be simple okay now let’s close this window here and as you could see we don’t have any errors with this code so far so let’s write some code and let’s create some errors now so so let’s create an array of type int and I will call it saved money and that will be array of five elements and I want to initialize those elements here so the purpose of this array is following let’s say that I want to save some money each month and I want to store that data in this array here so I’m going to save money for five months and I will store how much money I have saved each month inside this array here so for example the first month I have saved $100 or Euros or whatever and then second month I have saved 200 and then 300 and 400 and 500 fifth month okay so this is our array now what I want to do with this data here is I want to Summit after 5 months I want to know how much money I have saved in total so I’m going to create a variable of type int and I will call it total like this and I will initially give give it a value of zero and then I will iterate through this array here so I will say for INT I is equal to zero and then I is less than or equal to 5 and then I ++ and what I will do inside this for Loop is I will say that my total will hold whatever my total was previously holding plus current value of how much money I have saved in that month so saved money off I okay now after I have done this I will just write out how much money I have in total so I will say total and then this value that is stored inside this variable here okay now if I run this program let’s see what will happen well it says that in total I have minus 8 billion something very very big number so I have tried to save each month and then at the end I have minus8 billion dollar you know so that does not make any sense so here we have a logical error okay so let’s see what is this error that is happening so let’s click on extensions and PVS Studio check current file to see what kind of error PVS Studio sees and it says array over run is possible the value of I index could reach five and if I double click on that it will take me here and this part of code here is underlined and this is actually our compiler our compiler is underlying this and it says that okay it says index 5 is out of valid index range of 0 to four so this here this situation here says that this I is out of range of valid indexes that this array here can have and if you are familiar with arrays you know that indexing of an array starts zero so the first element has index of zero and then 1 2 3 and four so valid indexes for this array here are from 0o to four and here we have accidentally written that this I is less than or equal to five and that is making a problem so if I delete this part here so if I say that my I is just less than five this error should disappear so if I click on PVS 2 studio and then check current file the error should disappear okay it has disappeared now so if I run my program this program is behaving as expected so this is one thing that very often happens you can accidentally write less than or equal to and then you can get a very very big logical error another thing that can happen is if you’re typing very quickly and if you lose concentration for a moment and and here instead of incrementing you decrement this counter so you say I minus minus you should get an error as well so if I try to build this program let’s see what our compiler will tell us so here in this error list it says ill defined for Loop counts down from minimum so that’s kind of helpful um information and then another let’s read this other warning it says reading invalid data from Saved memory the readable size is 20 bytes but minus 4 bytes maybe read so this is not really help helpful for someone who’s just starting and then this third message it says index minus 2 billion something is out of valid index range 0 to 4 again this is not really helpful for someone who is just starting so uh let’s see what our PVS Studio has to say so I’m going to click extensions PVS Studio check current file okay and this first error here here says the condition I less than 5 of for Loop is always true so this is actually a helpful message and if I click on this I will be taken here and it says that this condition here I is less than five is always true but why is it always true because we have started counting at zero and then we try to decrement that value in each iteration and uh doing that we can never reach this condition here this condition here will never become false so that means that here we have created an infinite Loop and here our PVS Studio says consider inspecting this for operators so consider inspecting this for Loop here because it will not be executed at all or it can be executed incorrectly and in this particular situation it is going to be executed incorrectly so it is going to be an infinite Loop which we don’t want in this particular situation so I’m going to correct this error here so I’m going to return it to i++ but that is sort of a help that you can get from PVS studio and this here is a pretty simple program because it has just a few lines of code where all the bugs can potentially happen but imagine working on a very very big project and then something like this happens so imagine something like this happening uh on a program that a bank uses so you are trying to save money for a couple of months and then the program says that you are in depth that your balance is minus 2,000 or 20,000 or something like this so this can create very very big issues and in this particular situation if you have a bug like this you will want to have all the help that you can get and sometimes that can be uh just the help that you get from your compiler or if you have a very very big problem you will definitely benefit from tools like PVS Studio which will give you some additional information on that situation that is happening and on that problem that you you are having and then there are other situations where you can have very very big problems but your compiler will not be helpful at all because your compiler will not be able to see those potential bugs that you are creating inside your code so in order to demonstrate that let’s delete all of this code here because I will not need it anymore and what I do need is to create a function here so let’s create a function of return type void and I’m going to call it my function like this okay and what I want to do inside this function is I want to create an integer pointer PTR so if you’re not familiar with the topic of pointers make sure to watch the playlist that I will link here it is the playlist where I explain pointers in C++ because it is one of the most important topics in C++ and it is the example that I will be using here so I have created an integer pointer and I’m going to say now you will point to a new array of integers and that array will have five elements like this now what do I want to do with this array well let’s do something very simple let’s say PTR of two will hold the value okay it will hold the value of 10 like this and then let’s just write out something let’s say hi I am equal to and then PTR of two okay so this here is pretty simple example that does basically nothing important nothing useful but I will use it to demonstrate a very very big issue that can happen in this situation so I’m going to invoke this function here so I’m going to say my function like this and I have successfully invoked this function so if I run this program it says hi I am 10 so nothing unexpected happened or did it okay um if I inspect my errors list it says that I don’t have any errors so if you ask a compiler it will tell you that everything is perfectly fine so let’s now ask PVS Studio here it has already detected two potential issues but you can click PVS studio and then check current file just to be sure okay and it says visibility scope of the PTR pointer was exited without releasing the memory a memory leak is possible so what we have done here in this program is we have created memory leak where here so here we have said please give me in my dynamic memory give me array of five integers and this is going to be done in dynamic memory so once this function is finished once this function ends we are going to lose this PTR so we are going to lose the address of the first element of this array here so here if I try to do something like PTR I cannot access this variable here anymore this variable has its scope and that scope is inside this function here and once this function exits we are going to lose the address of this array here which means that we will not be able to deallocate this memory here now let’s delete this okay here as you can see this memory leak is not a big memory leak here we are leaking five integers so we are leaking an array of five integers and that is not very big problem but usually what happens in real life is that you are not creating an array of five integers usually you are creating things that require much more memory than just an integer array of five elements so here as I said we are leaking five integers but imagine a situation where you are creating an array of 5,000 or 50,000 and not integers but objects of type user like this and this user has some pretty heavy data in it for example it has some images and things like that so here you are creating 50,000 users and to make things worse imagine not invoking this function only once but imagine invoking this function in a for Loop for example so invoking it 100 times or 1,000 times or 100,000 times that is going to be a huge memory leak so what this line of code here does is it asks your operating system for dynamic memory so it says please can you give me new memory so can you give me dynamic memory that I need to store this data here and your operating system gives that memory to your program so it allocates that memory for your program and then once this function here finishes you will lose all the variables that you have created inside that function and that is this PTR variable here so that means that the address of this array here which was stored inside this PTR variable is lost now and now you will not be able to deallocate this memory here which means that you will not be able to say okay now I am done with this memory which is a lot of memory and now I’m going to return that back to my operating system because I don’t have unlimited amounts of memory and my operating system maybe would like to give that memory to some other program so once this function here ends and you don’t deallocate this memory here you are leaking that memory and that is exactly the error that you have here it says a memory leak is possible whereas your compiler here said expected a type specifier which is U error that we have here because it does not know what is this user so I’m going to return this back to int okay now that error has disappeared but your compiler does not know that you are leaking memory here whereas your PVS Studio analyzer here says that a memory leak is happening so how do you fix this error here well for each new you need to have delete again you need to watch my C++ pointers playlist in order to understand pointers if you don’t understand this already so as I said for each new you need to have delete so I’m going to say delete and let’s delete this PTR let’s see what is going to happen now so if I click extensions and then PVS Studio check current file it says the memory was allocated using new array type operator but it was released using delete operator and then it gives you a recommendation here it says use delete array pointer it set instead so here we are trying to allocate memory for an array but we are not deleting that entire array so here we are leaking memory again so here I’m going to use these square brackets in order to indicate that I want to delete this entire array that I have allocated in this line of code here so now we shouldn’t be leaking memory anymore so let’s check that out I’m going to say PVS Studio check current file and let’s see we have that error that we previously had which is your license will expire in 5 days but we do not have memory leaks anymore which is great so errors like this memory leaks are very common when you work with pointers in C++ and these memory leaks can create huge problems if you have them in your code and as you could already see in most cases you cannot really on your compiler to tell you that you are leaking memory because in most cases it will not even be able to see that so tools like PVS Studio can be very helpful in those situations you could see all those little tips and recommendations that we had from PVS Studio that helped us to fix issues that we had related to leaking memory so those were some topics that I wanted to address in this video because many people when working with pointers will come across problems that they will not be able to fix or they will not even be aware that they have those problems that they have memory leaks until it gets to the point where it is unmanageable and they have very big problem they have huge problem so um if you have any more questions that you would like me to make video on please leave those in the comments down below and if you like this type of video please give this video a thumbs up so that I can know and I will make more videos like this in the future if you want me to so thank you very much for watching this video and I am going to see you in my next video bye hi everyone [Music] well okay so hi everyone welcome to my channel welcome to another [Music] [Applause] [Music] hi everyone Hi everyone welcome to Welcome to my channel so this here is the initialization step of our initialization initialization in initialization initialization so it is the in in

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • C Programming: Library Creation, Encryption, and System Call Hijacking

    C Programming: Library Creation, Encryption, and System Call Hijacking

    The provided texts encompass diverse topics in programming and computer science. One excerpt focuses on creating a SOCKS version 4 client in C to connect to the Tor network, detailing packet creation, data transmission/reception, and proxy traversal. Another segment explores XOR encryption, demonstrating its implementation in C for single-character encryption/decryption. A further discussion involves creating an encryption library using a modified ARC4 algorithm. An additional piece elucidates Linux file system permissions, explaining read, write, and execute permissions alongside their numeric representations. Finally, a text introduces creating a safe string library in C to avoid buffer overflows and memory corruption issues when handling strings, and the last text describes the use of functions to hijack connections made through the tour network by creating shared libraries and altering prioritization order.

    Source Code Deep Dive: Study Guide

    I. Quiz

    Answer each question in 2-3 sentences.

    1. What is the difference between a system call and a library call, and how can you determine which one is being used?
    2. What is the purpose of the htons() function, and why is it needed when working with network addresses?
    3. Explain the role of a makefile and the benefits of using one when compiling C code.
    4. What are the three essential elements needed to establish a TCP connection, and what specific steps are involved in configuring these elements?
    5. Explain the concept of a “predicate” in programming.
    6. How does the XOR operation work, and why is it useful for basic encryption?
    7. Why is it important to zero out buffers in the example code provided?
    8. What is a “type definition” in C programming, and what is its purpose?
    9. Explain the purpose of the assert() function and how it can be used for debugging.
    10. Explain what LD_PRELOAD does and how it can be used to override existing function calls.

    II. Quiz Answer Key

    1. A system call is a direct request to the operating system kernel, while a library call is a function provided by a library that may eventually use system calls. To determine which one is being used, you can consult the manual pages using man 2 for system calls and man 3 for library calls.
    2. The htons() function converts a host’s byte order to network byte order. This is necessary because different systems use different byte orders, and network communication requires a consistent order.
    3. A makefile automates the build process by defining dependencies and commands for compiling and linking code. This simplifies the compilation process, especially for projects with multiple source files.
    4. The three essential elements are the address family, the port number, and the IP address. These elements must be configured in a socket address structure before initializing the connection with the connect() command.
    5. A predicate is a function or operation that returns a boolean value, indicating whether a certain condition is true or false.
    6. XOR (exclusive OR) is a bitwise operation that returns 1 if the input bits are different and 0 if they are the same. It’s used for simple encryption because applying the same key twice decrypts the data.
    7. Zeroing out buffers ensures that they are initialized with a known state, preventing potential issues with leftover data or undefined behavior.
    8. A type definition creates an alias for an existing data type, making the code more readable and easier to maintain.
    9. The assert() function checks if a given condition is true, and if it’s false, the program terminates with an error message. It’s used to catch programming errors and ensure code integrity.
    10. LD_PRELOAD is an environment variable that specifies shared libraries to load before any others. It can be used to intercept and replace function calls, effectively overriding existing system behavior.

    III. Essay Questions

    1. Discuss the security implications of using a simple XOR encryption method, and explain the limitations of its cryptographic strength.
    2. Analyze the structure of a SOCKS version 4 client and its role in connecting to the Tor network.
    3. Elaborate on the benefits and drawbacks of using the getrandom() system call for generating cryptographically secure random numbers.
    4. Explain the purpose of “whitewashing” the RC4 keystream, and how it enhances the security of RC4 encryption.
    5. Explain the advantages and disadvantages of manually managing strings compared to using standard C functions, highlighting the security implications of both approaches.

    IV. Glossary of Key Terms

    • System Call: A request made by a program to the operating system kernel to perform a specific task.
    • Library Call: A function provided by a library that may eventually use system calls.
    • Socket: An endpoint of a two-way communication link between two programs running on the network.
    • TCP (Transmission Control Protocol): A connection-oriented protocol that provides reliable, ordered, and error-checked delivery of data between applications.
    • SOCKS (Socket Secure): An Internet protocol that routes network packets between a client and server through a proxy server.
    • Tor (The Onion Router): A free and open-source software for enabling anonymous communication.
    • Proxy Server: A server that acts as an intermediary between a client seeking resources and a server providing those resources.
    • Makefile: A file containing a set of directives used by the make utility to automate the compilation and linking of software.
    • Byte Order (Endianness): The order in which bytes of a multi-byte data type are stored in memory.
    • Network Byte Order: A standardized byte order used for network communication, typically big-endian.
    • Host Byte Order: The byte order used by the host system, which may be big-endian or little-endian.
    • htons(): A function that converts a 16-bit host byte order to network byte order.
    • AF_INET (Address Family Internet): An address family that is used to designate the type of addresses that the socket can communicate with (IPv4).
    • SOCK_STREAM: A socket type that provides sequenced, reliable, two-way, connection-based byte streams.
    • Predicate: A function or operation that returns a boolean value (true or false).
    • XOR (Exclusive OR): A bitwise operation that returns 1 if the input bits are different and 0 if they are the same.
    • Ciphertext: Encrypted data.
    • Cleartext: Unencrypted data.
    • Type Definition: A statement that creates an alias for an existing data type.
    • Assert(): A macro that tests a given condition, and if the condition is false, the program terminates.
    • Maloc(): A function that allocates a block of memory dynamically.
    • LD_PRELOAD: An environment variable that specifies shared libraries to load before any others.
    • RC4 (Rivest Cipher 4): A stream cipher widely used in software applications and protocols.
    • Keystream: A sequence of pseudo-random bytes used to encrypt or decrypt data.
    • Whitewashing: The process of discarding initial keystream bytes in RC4 to mitigate certain statistical weaknesses.
    • Entropy: A measure of the randomness or unpredictability of data.
    • getrandom(): A system call that retrieves random bytes from the kernel’s entropy pool.
    • DL_SIM: A flag in some C compilers, like GCC, that is used to link a dynamically loaded library, and tells the linker that all symbols in the library should be considered defined, even if they are not explicitly used.
    • LD_PRELOAD: An environment variable used to specify shared libraries that should be loaded before others.
    • Change Mod: (chmod) the command for altering permissions on a Unix and Linux system.
    • Change Own (chown) the command which changes the owner of a specific file in Unix and Linux system.

    Tor Tunneling Tool: Development and Security Briefing

    Okay, here’s a detailed briefing document summarizing the key themes and ideas from the provided source material.

    Briefing Document: Tor Proxy Tool Development & Related Concepts

    Overview:

    The sources document the development process of a tool (“talize”) designed to tunnel network connections through the Tor network. The materials also touch on foundational concepts related to networking (system calls, library calls, TCP connections), security (encryption with XOR, file permissions in Linux), and C programming (dynamic linking, shared libraries, memory management).

    Main Themes & Important Ideas:

    1. System Call Interception for Tor Tunneling:
    • The core idea is to intercept system calls (specifically, connect) made by other applications and redirect the connections through a Tor proxy. This allows any application to utilize the Tor network without explicit configuration within the application itself.
    • The tool uses LD_PRELOAD to inject a shared library that overrides the standard connect function.
    • “You remember I want to be able to do something like talize and then run any [Music] command like curve against some IP address and then I want to in intercept the connection I want to run this command as is but I want to intercept the con the connection that the actual program does and run my code instead so it tunnels through the tour Network any program that we want to run…”
    1. SOCKS4 Proxy Implementation:
    • The tool establishes a TCP connection to a SOCKS4 proxy server (typically running on localhost at port 9050 when using Tor).
    • The source code shows the creation of a socket, setting the socket address family to AF_INET, specifying the proxy port, and using the connect system call to connect to the proxy.
    • “So now we have successfully created our TCP connection towards the proxy server and the next step is to create the uh proxy request packet according to this structure that we created before.”
    • The source code shows the creation of a socket using socket(SOCK_INET, SOCK_STREAM, 0).
    1. C Programming Techniques & Challenges:
    • The source code demonstrates various C programming techniques, including:
    • System calls (e.g., socket, connect, close, open, read, write, getrandom).
    • Library calls (e.g., htons, inet_addr, strlen, malloc, free, perror, sprintf, snprintf, memset).
    • Pointers, structures, type definitions (typedef).
    • Dynamic memory allocation (malloc, free).
    • String manipulation.
    • Function pointers (for intercepting system calls).
    • Shared libraries (.so files).
    • Bitwise operations.
    • Challenges encountered during development include:
    • Compiler errors and warnings (due to type mismatches, incorrect syntax, missing include files, etc.).
    • Memory management issues (leaks, segmentation faults).
    • Debugging dynamic linking issues.
    • Getting terminal settings correct for password input (disabling echo).
    • Troubleshooting network connectivity problems.
    1. Security Considerations:
    • The material briefly mentions the importance of using cryptographically secure random number generators (getrandom) for security-sensitive tasks.
    • The use of XOR encryption is described as a simple demonstration and not suitable for real-world security.
    • The need to “whitewash” the initial state of RC4 is also mentioned to mitigate potential weaknesses.
    • File permissions and ownership within a Linux environment were mentioned.
    • “This is a very basic form of encryption that uh is only for demonstrational purposes it’s quite easy to crack with today’s Technologies and computer power however it’s a good example on how to use exor…”
    1. Dynamic Linking and LD_PRELOAD:
    • The tool relies heavily on dynamic linking, using LD_PRELOAD to inject a custom shared library that overrides the standard connect system call. This allows the tool to transparently intercept and redirect connections made by other applications.
    • The source contains instructions on setting the LD_PRELOAD environment variable.
    • “So we need to send everything that’s on the right of this toriz and there is a way to access all the arguments at the same time and I I think it is done like this okay so first we export the LD preload and point it towards our shared library then we do the dollar and I think it’s the at sign which will run all the arguments to this uh script…”
    1. Practical Implementation of RC4 Encryption:
    • A significant portion of the material details the implementation of the RC4 encryption algorithm.
    • The code includes functions for:
    • Initialization (Arc4Init).
    • Key stream generation (Arc4Byte).
    • Encryption/Decryption (Arc4Encrypt).
    1. Safe String Handling:
    • The need for safe string handling is emphasized to prevent buffer overflows and other security vulnerabilities.
    • The material describes a custom string library that provides functions for:
    • Initialization.
    • Concatenation (automatically reallocating memory as needed).
    • The source shows implementations of custom length and copy functions for increased control over string manipulation.
    1. File Permissions in Linux:
    • The sources include an explanation of file permissions in Linux using chmod.
    • This includes the meaning of the numeric representation (e.g., 755) and its relationship to read, write, and execute permissions for the owner, group, and others.
    • “What does this 755 mean in the detail this and more we’re going to talk about today when we are discussing Linux file system [Music] security…”

    Quotes from Original Sources:

    • “is a system call that’s why how do you know if it’s a system call or a library call try a library call first three if you don’t get a hit or if you get a hit that doesn’t seem right try the uh the two okay so we need sis socket.”
    • “…our program works fine this far but at the moment it’s just a proxy server client it’s not doing what we intended it to do from the beginning…that is what I want to do and that is the next step in this process…”
    • “If you like this episode and want to see the continuation or other stuff in this Channel please uh subscribe to this Channel and hit the like button if you think I deserve it…”
    • “Today you have learned about Linux file system security that there are three parts to it the file permissions targets and the change mode command…”

    In Summary:

    The sources provide a comprehensive look at the development of a Tor tunneling tool, highlighting both the network programming aspects (SOCKS4 proxy, system call interception) and the C programming techniques required to build such a tool. The material also emphasizes the importance of secure coding practices, including proper memory management, random number generation, and safe string handling. Furthermore, background context for other core security topics such as encryption and file permissions are provided.

    C System Calls, Sockets, Encryption, and LD_PRELOAD

    ### What is a system call, and how do you identify one compared to a library call?

    A system call is a request to the operating system’s kernel to perform a privileged operation. To differentiate: first, try a library call using `man 3 <function_name>`. If that doesn’t yield relevant information, try `man 2 <function_name>` as system calls are documented in section 2 of the manual pages.

    ### What are the essential steps to create a TCP connection to a proxy server using C?

    1. **Create a Socket:** Use the `socket()` function to obtain a socket file descriptor. Specify the address family (e.g., `AF_INET`), socket type (`SOCK_STREAM` for TCP), and protocol (0 for the default).

    2. **Prepare the Socket Address:** Create a `sockaddr_in` structure. Set the address family (`sin_family` to `AF_INET`), the port number (`sin_port` using `htons()` to convert to network byte order), and the IP address (`sin_addr.s_addr` using `inet_addr()`).

    3. **Connect:** Call the `connect()` function, passing the socket file descriptor, a pointer to the `sockaddr_in` structure (cast to `sockaddr*`), and the size of the structure. Check the return value; 0 indicates success, and -1 indicates an error.

    ### Explain the purpose of function declarations in C, and why they might be used.

    Function declarations (or prototypes) tell the compiler about the existence, return type, and arguments of a function before it’s actually defined. They allow you to call a function that’s defined later in the same file or in a different file. While not strictly required if a function is defined before it’s called, they improve code organization and readability.

    ### What is a predicate and how are they used within the given context?

    A predicate is a function or operation that returns a boolean value (true or false). In C, this is typically represented by an integer, where 0 is false and any non-zero value is true. In the context of proxy traversal, a predicate might check the value of a response code (like the CD value) to determine if the proxy connection was successful.

    ### How does the XOR operation work, and why is it useful for simple encryption?

    The XOR (exclusive OR) operation compares two bits. If the bits are different (one is 0 and the other is 1), the result is 1. If the bits are the same (both 0 or both 1), the result is 0. XOR is used for simple encryption because applying the same XOR key twice decrypts the data. `(A XOR Key) XOR Key = A`.

    ### How does the RC4 encryption algorithm work?

    The RC4 algorithm involves three main steps:

    1. **Initialization:** An array ‘S’ of 256 bytes is filled with values 0 to 255. Then, using a key (typically 8 to 2048 bits), ‘S’ is scrambled based on the key, using two index variables ‘i’ and ‘j’.

    2. **Key-stream Generation:** The algorithm then enters a loop where ‘i’ and ‘j’ are continuously updated, and two bytes in ‘S’ are swapped. The value of `S[S[i] + S[j]]` is XORed with the plaintext to produce the ciphertext.

    3. **Encryption/Decryption:** The keystream is XORed with the plaintext to encrypt, and the same keystream is XORed with the ciphertext to decrypt.

    ### What security concern is addressed by “whitewashing” the RC4 algorithm, and how is it implemented in the code?

    A known weakness of RC4 is that the initial bytes of the keystream can be statistically biased. “Whitewashing” involves discarding the first several million bytes of keystream after the initialization to mitigate this bias. It is implemented by calling the `Arc4Byte()` function many times (e.g., 500 million times) after the initialization.

    ### How can `LD_PRELOAD` be used to intercept function calls and redirect network traffic through Tor?

    `LD_PRELOAD` is an environment variable that lists shared libraries to be loaded before others when a program is started. By creating a shared library that intercepts network-related functions like `connect()`, you can replace the original functions with your own. This allows you to modify the behavior of network calls, redirecting traffic through the Tor network, while the original program remains unchanged.

    Socket Programming Essentials

    The sources provide the following information regarding sockets:

    • A socket is initialized using the socket command. The syntax includes sock_eynut and sock_stream for a TCP connection. If the socket initialization fails (less than zero), an error message is printed using the perror command.
    • A structure called sock address in is needed to specify IP addresses. The s family needs to be set to AF IET, the Sin port using H ton s for network byte order, and the sin address using inut address.
    • The connect command is used to initialize the actual connection. It references the socket and the structure and requires an explicit type casting to Sock address struct. The connect command should return a zero if the connection/binding succeeds. Otherwise, it returns a -1.
    • The close command is used to close down the connection.
    • When creating TCP client, functions such as sockets to initialize the sockets, connect, close AG tone s, and in address are needed. The include files required are sys/socket.h, netinet/in.h, and arpa/inet.h.
    • The dup2 system call can create a new file descriptor that duplicates an existing one, allowing for piping data between sockets.

    C Library Calls: System Calls, Shared Libraries, and Interception

    The sources mention library calls in the context of C programming, particularly in relation to system calls and shared libraries. Here’s a breakdown:

    • Distinction from System Calls: The source draws a distinction between library calls and system calls, noting that to determine whether a function is a system call or a library call, one should first check the manual pages section 3 (man 3) and if it does not seem right, try section 2 (man 2).
    • Wrappers for System Calls: Libraries can contain wrappers for system calls, such as the connect function.
    • Shared Libraries: The source explains the concept of shared libraries, which contain code that can be used by multiple programs, avoiding duplication. Instead of every program containing its own copy of functions like printf, these functions are stored in a central repository and accessed when needed.
    • Function Hooking/Interception: The source describes a technique to intercept library calls by creating a shared library with a function of the same name and signature as the library call you want to intercept. By preloading this library, you can ensure that your version of the function is called instead of the original. The original function can still be accessed using dlsym.
    • Creating a Shared Library: To create a shared library, specific compiler flags are required. In the makefile example, the flags -fPIC, -shared, and -Wl,-soname are used.
    • Using a Shared Library: To use a created shared library, it can be preloaded using the LD_PRELOAD environment variable. This can be done by creating a bash script that exports LD_PRELOAD to the path of the shared library. After setting the environment variable, the script executes the desired command, and then unsets the LD_PRELOAD variable.
    • Safe String Library: The source discusses the creation of a safe string library to prevent buffer overflows and other security issues related to string manipulation in C.

    Type Casting: Uses and Applications

    Type casting is mentioned in the sources in several contexts, particularly in C programming. Here’s a breakdown:

    • General Use: Type casting is used to convert a variable or expression from one data type to another. This is often necessary when a function expects a specific type, but the provided argument is of a different type.
    • Explicit Type Casting: The source demonstrates explicit type casting using the syntax (type)variable. For example, (Sock address struct*) is used to cast a pointer to a sockaddr_in structure to a Sock address struct* when calling the connect function. Another example is (int8*) to cast a string to a specific type for a function argument.
    • Socket Programming: In socket programming, type casting is essential when dealing with network addresses. The connect function, for instance, requires a Sock address struct* argument, so you may need to cast your address structure to this type.
    • Pointer Conversions: Type casting is often used when converting between different pointer types. For instance, a void* pointer, which is a generic pointer type, might need to be cast to a specific type like char* before being dereferenced.
    • Addressing Compiler Warnings: Type casting can be used to suppress compiler warnings related to incompatible pointer types or different signedness. For example, casting a char* to int8*. However, the source notes that it may be better to change the variable types to regular strings.
    • Volatile Type Cast: When using memory locations, you can use type casting to tell the compiler to not optimize a segment of code. This is done using the syntax: (volatile int8*).

    C Memory Allocation: Dynamic, Safe, and Networked

    Memory allocation is discussed in the sources in the context of C programming, particularly when working with strings, structures, and network operations. Here’s a breakdown:

    • Dynamic Memory Allocation: The source highlights the use of malloc to dynamically allocate memory on the heap. This is essential when the size of the memory required is not known at compile time or when you need memory that persists beyond the scope of a function. For example, when creating strings or structures, malloc is used to allocate the necessary space in memory.
    • Memory Allocation Size: When using malloc, it’s crucial to allocate the correct amount of memory. This often involves using the sizeof operator to determine the size of a data type or structure. For strings, you need to allocate enough space for the characters plus a null terminator. The source uses size of stct proxy request and size of stct s AR for to allocate memory appropriate to the size of the structure.
    • Checking for Allocation Errors: After calling malloc, it’s important to check if the allocation was successful. If malloc fails, it returns NULL. The code includes assert statements or if clauses to check for NULL pointers and handle allocation errors.
    • realloc for Resizing Memory: The source mentions realloc, which is used to resize a previously allocated block of memory. This is useful when you need to increase or decrease the amount of memory allocated to a string or other data structure.
    • calloc: You can also use calloc, but it wasn’t explicitly in the sources. calloc differs from malloc because it initializes the allocated memory to zero.
    • memcpy for copying memory: memcpy can be used to copy a block of memory from one location to another.
    • memset for initializing memory: memset is used to fill a block of memory with a specific value, often zero. This is useful for initializing buffers or structures before use.
    • free for Deallocating Memory: When you’re finished with dynamically allocated memory, it’s essential to release it using free. This prevents memory leaks and allows the memory to be reused by other parts of the program or the operating system. The source includes examples of freeing allocated memory using free(request) and defining a macro un init of free X.
    • Safe String Library: In the context of creating a safe string library, memory allocation and deallocation are crucial. The source describes how to allocate memory for strings using malloc and realloc, and how to manage the size of the allocated memory to prevent buffer overflows.
    • Variable Length Arrays: The source touches on variable length arrays within structures, where the size of the array is determined at runtime. This allows for flexible memory allocation based on the actual data being stored.
    • Stack vs Heap: The source implicitly refers to the stack when discussing buffer overflows, noting that variables on the stack have limited space, and overflowing them can lead to program crashes. Dynamic memory allocation with malloc occurs on the heap, which is a larger, more flexible memory area.
    • Memory Layout: In network programming, understanding memory layout and byte order is important. The source mentions the need to convert port numbers and IP addresses to network byte order using functions like H ton s and inet_addr. This ensures that the data is interpreted correctly regardless of the system’s architecture.
    • Potential Issues: If memory cannot be allocated, assert P error can be used to handle any potential issues.

    C Encryption Libraries: RC4, XOR, and Secure String Handling

    The sources discuss the creation of encryption libraries in C, touching upon various aspects from basic encryption principles to more advanced cipher implementations.

    Key Concepts and Techniques:

    • XOR Encryption: A basic form of encryption using the XOR operation is explained. The XOR operation is applied to each bit of the data with a key; applying the same operation again with the same key decrypts the data. This method is presented for demonstration purposes and is noted to be easily cracked with modern computing power.
    • RC4 Cipher Implementation: The sources detail the development of an encryption library based on the RC4 algorithm. RC4 is noted as relatively easy to implement but requires careful handling to be secure.
    • The implementation involves creating initialization, encryption, and decryption functions.
    • The library is designed to be used by other C projects, so the core code (arc4.c) doesn’t have a main function, but an example program (example.c) is used for testing.
    • Initialization: The RC4 algorithm’s initialization involves preparing the internal state of the encryption engine based on a key. This includes setting up an array and using a loop to iterate through it.
    • Key Stream Generation: The core of RC4 involves generating a key stream, which is then XORed with the plaintext to produce the ciphertext. The Arc for byte function produces a single byte of the key stream.
    • Encryption and Decryption: In RC4, encryption and decryption are performed using the same operation (XOR with the key stream). Therefore, a single function can be used for both, simplifying the code.
    • Security Considerations:
    • The sources mention concerns about RC4’s security, noting that its output can be distinguishable from random data, potentially allowing attacks.
    • To mitigate these concerns, the implementation includes a “white washing” mechanism that discards the first several million bytes of output to avoid known cracking techniques. This involves generating many bytes using Arc for B and performing a volatile type cast to tell GCC not to optimize it.
    • The importance of using a strong, randomly generated key is emphasized.
    • Library Structure:
    • The encryption library consists of multiple files:
    • arc4.c: Contains the actual code for the RC4 algorithm.
    • arc4.h: Contains the structure definitions, includes, definitions, and macros.
    • example.c: A temporary file with a main function that serves as an example program to try things out.
    • makefile: Contains the instructions to compile the whole thing.
    • The header file (arc4.h) includes necessary definitions and structures, such as the structure representing the internal state of the RC4 encryption engine. This structure typically contains variables like I, J, and an array S.
    • Exporting functions: The keyword export can be defined to ensure that certain functions, like Arc for in it and Arc for encrypt, are accessible from outside the library.
    • Installation: The source outlines how to install a created library, including copying the .so file to the appropriate library directory (e.g. /usr/lib/x86_64-linux-gnu/) and the .h file to the include directory (e.g. /usr/include), and running ldconfig to update the system’s library cache.
    • Safe String Library: The source also discusses the creation of a safe string library to prevent buffer overflows, and a concat function is presented. The length is checked and if needed memory reallocated with realloc, and an M copy function is defined and used.
    • File Encryption: The source describes the structure of an encrypted file including padding bytes, password hashes, and encrypted content.
    • Random Number Generation: For cryptographic operations, it’s crucial to use a secure random number generator. The source mentions using the get random system call with the GRND_RANDOM flag to obtain cryptographically secure random numbers from the entropy pool. The code handles the possibility of the entropy pool being empty and includes a warning message for the user.
    • Key Retrieval: When coding an encryption program, you will need a way to read the encryption key from the command line, and you don’t want to echo the key on the screen. This can be done using functions from the termal.h header.
    8 hours of C coding projects: Cyber Security
    C Language Full Course in 50 HOURS with Practical (Beginners to Advanced) | 2025 Edition

    The Original Text

    what’s up guys today we’ll code something really exciting we’re going to be H creating a tool called talyer it’s a command line client for connecting to the tour privacy Network when you run a CLI command for doing a network call for example curl the following thing has happens the connect function is invoked and the uh program establishes a TCP connection to the remote server and then the communication begins but with this tool you’ll be able to put the word talize in front of any command which does a network call taly Will intercept any calls to the connect function and execute our function instead the traffic will be redirected to a local proxy server which is a part of the tour software it will connect to the tour Network and then to the destination server effectively masking your identity and helping you to stay private on the internet and the best thing is coding this is easier than than you might think let’s get on with it okay guys welcome to this episode the first thing we need to do today is we’re going to create our own uh Pro server client so this uh Proxes it uses a protocol named Socks s o ckss and there are two different uh protocol versions version four and version five and the the tour Network and the software supports both these versions version five is a little bit more complicated but version 4 should be very easy to implement and it will be perfect to do it in C so that’s the task of today creating our own client for that sock proxy and use it to connect to the tour Network so how do we start I’m going to start by logging into my code Planet server like this and prepare my screen as I usually do uh today I’m not going to be coding in Naro or VI like I usually do this is a little bigger project a little bit more ambitious could do it in VI even though it’s a big project but uh I’m going to be using um vs code today actually [Music] I’m going to do my wild true command so I don’t accidentally close down my screen window like this um and since I am using a remote server I need to somehow either upload my uh C files and stuff to that server or code remotely in V code somehow and I’m going to be using a tool which is called the sociopath SCP client like this if you want to download sociopath SCP client it’s a tool that uses the SCP protocol which is basically installed on on every server uh to uh upload and download files and subdirectories and there’s also a remote file editing feature that we’re going to use today okay so let’s begin there I have started up the program which looks like this so I connect to my code Planet server and I go to my code folder so on the left side is my local hard disk drive and on the right is uh the files and directories on the server so I’m going to right click and create a new directory which I’m going to call talize this and now I’m going to select the toriz I’m going to right click and I’m going to click open in editor then it’s going to download uh everything in that uh folder which is currently empty but if it were any code files in that folder it would download it to Temporary directory and open it in this code and each time you save or create a file or a directory inside of V code it automatically updates on the server okay so now I have this emptied here so I right click and create a new file which I will be calling talize C and I will also create a tor lies. H like this and I will Begin by putting a small header so talize Doc and I will include SD iio create a main and this time I will type out the longer signature for this uh main function that is the argument counter and the actual argument pointer like this because I’m not going to be using that in the final version but the client that we’re going to code today uh that will be you it will be used like this so if we run it by doing slash toiz we’re going to enter an IP address like 1 2 3 4 and a port so this uh tool will uh connect to a predefined uh proxy server we’re going to put that in our H file let’s do it right away toal light. and let’s put the include in here instead and in this file we’re going to include our local file so when the file is in your directory you use quotes around it like this and I save this file now if we go into the sociopath window we can see in this status bar down here at the bottom T.C has changed successfully updated to server and if we go into our terminal and go into the directory and check the contents of this file we see that it has uh updated the H is not here yet because I haven’t saved it it uploads on save so let’s do that and with regard to the proxy server I will be using the default values for uh the tour package and that will be using the IP address of one 27 0 0 1 that’s the IP address of Local Host uh and let’s call this proxy and I will also make a constant definition for the proxy port which is 9050 as a default setting save and just to verify now we should have both of these files here right so both the C file and the H file great [Music] so let’s just create the most basic things first I will create a CH pointer for the host name that is the host name that we want to connect to at the end so to speak the server that we want to uh connect [Music] to and we also need to have the port number let’s just do an in for that yes okay so first I want just check that Arc if that is less than three which means that we don’t have two arguments specified on the command line then I want to print to a file descriptor which is called standard error which is uh used for error messages it’s like printing to the screen basically and then we want to do like this usage Post Port like that and as an argument we’re going to give arv Z so arv Z if we on the command line specify do/ talize 1 2 3 four and Port 80 then this is AR v0 this is arv1 and this is arv2 and this is an error so we will return minus one and if we have our arguments we will point the post toward towards arv1 and we’re going to set the port to and we can’t just do it like this because the port is an INT and this is a string so we need to use a function which converts a number in a string form to a regular number a2i let me just check if that requires an include file and we do that by doing Man 3 a2i and we need SD libh which I will put in our header file include STD libh and I will also put in [Music] string.h and uni std. H these are the four that I always put in every C program that I do let’s line up this a little bit better like this okay so how will this work we need to figure out how the proxy protocols socks version 4 uh how does it work so let’s go to Google and if we want to have the technical specification of a network protocol we do like this we search for the uh protocol name socks 4 in this case and we add RFC that stands for request for comments and is a the standard way of describing an official uh Pro so that way you will always get the right one and I’ll take the first one here and increase the font size a little bit this is not a huge file some of these rfcs are very big but this is quite a simple protocol so there’s a two step process first you make a TCP connection towards the proxy server like like any other server like exactly as you did in my web server video and in the uh TCP client video then when we are connected we need to create a network packet which looks like this so from left to right there is a one byte field that is 8 Bits for the VN number and as we can read here that’s a socks protocol version number and it should be four then we have something called CD and CD is the socks command it’s a code for the command and should be one for Connect so there are two different uh types of operations that you can do through so 4 it’s a connect operation and a bind operation so basically a connect operation is when you connect the outwards and a bind is when you uh prepare for an inbound connection towards you uh we are going to do a connect so we will put a one in that field uh then we put the destination port number and we need to format that port number in uh Network bite order which is basically that we switch we we cut off cut up the 16 bytes in two parts and we swap them and same with this destination IP but this is a 4bit 4 by field so 32 bits uh regular in size and that’s where where we put the IP address of the uh remote server that we want to connect to and then we need to put a user ID and I will just put talize there doesn’t matter and then we need to end that uh string with a zero byte as usual and that’s basically it we send send that the packet we get a reply which looks like this and the only interesting field is this CD field if that is 90 then the connection has been established and then you can just send whatever you want if we get another number than 90 then something went wrong and we need to deal with that um and then we will send some data just to see that it works so that is what we need to do okay so I will do like this I will copy this and inside our header file I will create a comment block and paste in this this [Music] one I want the last line as well so I see the number of bytes think I need to change the size here okay this way we see enough but in order to be able to create a structure that corresponds to this design we need to be able to create fields that has the 8 bit size the 16bit size and the 32bit size so let’s start there we will use the typ def command to create our own variable types which will be called int 8 int 16 and so on so if we begin with the in8 that’s basically an on sign Char in see that’s 8bit size so we’ll type type def unsigned Char and then our name for it in 8 then we need the 16 bit size and that is an unsigned short in we call it in 16 and then we need a regular 32bit int so that’s an unsigned int I’m going to call it int 32 okay so now we have the different parts that we need now we’re going to create the actual structure for this packet so we’ll create a struct which I will call proxy request and the first is VM so in8 VM and the next is CD which is also an 8bit then we have the destination Port which is 16 is port and then we have the 32bit destination IP field and then we have the user ID which has a variable uh size but I’m going to create a username of seven characters because that way we can have uh an 8 a 64bit Str variable here which ends in a zerobyte so that’s why seven and not eight so basically I will do unsigned J user ID 8 and this is all we need for the first uh structure let’s create the other one at the same time this one is a little bit smaller so struct [Music] proxy response and we’re not going to be using all these fields so if we look at this one the VN is always zero and the CD will have the code so the CD is the only interesting field here because the remaining fields are ignored so destination port and destination IP are ignored but we still need to have them defined because we need to have the right size of this package so I will do do it like this I will start by creating an 8bit integer for the VN and 8 bit CD then I will just do in 16 and an underscore character and then int 32 and two under score characters we could name these according to this but U I think this show clearly shows that they are not important okay so now we have our two structures we can remove those comments and make this a little bit bigger again and I want to create a type def for these structures so we don’t have to type the whole proxy request every time and I will just call this wreck with a Big R and same here type def stct proxy response and this will be rest with a Big R okay so now I have now we have prepared everything we need basically in this file and we do need a couple of includes though because we are going to use the following functions we will have uh sockets to initialize the sockets we’re going to have connect and we also need close AG tone s and in address so remember what I told you about the network bite order so if we have a port number for example like something like this in U binary so this is a 32 bit no sorry 48 this is a bite so if we do like this let’s say this is a port number and I don’t know exactly what it corresponds to but let’s say for instance that it’s 9050 because it’s a 16 bit field so it looks something like this then we need to copy this right part and put it to the left that is Network bite order that we have the most important bits first and that is what these two functions are for HT s does it for the U the port number and the init address takes a string and creates a big so basically it first take this IP address and translates it to a big number and then it makes this network by order so these are the functions we need uh perhaps I have forgotten any uh other ones but that will be clear when we get to that point so let’s find out what um include files we need let’s begin by socket we do man to socket and why two because this is a system call that’s why how do you know if it’s a system call or a library call try a library call first three if you don’t get a hit or if you get a hit that doesn’t seem right try the uh the two okay so we need sis socket. [Music] I’ll just copy it right [Music] on this and then we need the connect that’s also a system call so Man 3 no man to connect and that’s the same we don’t need it again and what else did we need uh closeth I think that’s un SD that we already have but let’s see so the close that is also a system call and we use it to uh close down uh the connection can also be used to close down a file yeah un SD we had that already and then we need the hton s and IET address so man this is three so h t s this one and finally inet address also a library call so three here we need a couple of include CIS socket we do have already ARA inet we do also have but not netet okay so let’s see if this compiles since we are using a couple of files I think I’m going to create a make file as well so I will create new file and I will name it make file with a big M and then I will just put in [Music] all JCC talc doraliz we’re going to be adding a lot of stuff here later on but for now now this how to do it so let’s uh save and when we have a make file like this then we don’t need to issue the GCC command every time we can just do make and then it will try to compile okay in okay typo so so let’s go into the toor realize. C and this should be an if not an in let’s save and we’ll run make e this time it compiled our tool okay so the next step is connecting to the proxy server because we’re not going to create a TCP connection directly to this host and Port that we specify on the command line we are going to connect towards [Music] the the proxy IP address from the h file and the proxy port 9050 so that we have done before creating ATP client and it’s exactly the same as before so I’m going to make it quite fast if you need to learn how to do that you can watch either my TCP client episode or my creating your own web server series I will explain by haste though okay so we need a couple of um variables first of all we need an INT which is called s for the socket file descriptor return value we also need a structure which is called sock address sock address in and I’ll call this sock that’s where we spe ify all the IP addresses and stuff um okay so let’s start by creating our our socket so s equals socket and this is pretty standardized we always put in sock ey nut and second argument is sock stream for a TCP connection and then a zero for the third argument and if this s is less than [Music] zero then I will use the P error command to easily print an error and we will specify which function that produced that error and then I will just return minus one when we uh create the final version of this I’m going to use more accurate error codes but for now we’ll just do minus one for everything then we will create we will prepare our structure and that’s three things we need to add in order to make atcp connection first of all we need to put the S family to AF IET we need to put in the Sin port and use the H ton s so we get it in network by order and then we will just put in our Port variable here and finally we will put in our sock sin address s address and that will be equal to inut address and our no not our Port it should be our proxy port and it should be a our proxy IP address nothing else okay so these are the three things now we need to initialize the actual connection with the connect command so we do connect and we reference the socket uh the second argument is our structure and we need to create an explicit type casting because we need to change it to Sock address struct a pointer to a sock struct and we also need to send the reference so let’s put an % there and the sock and then we need a size and I will just do size of suck that thought to do it okay so this line will connect to the server but I will also need to do an if statement so we see if it succeeded and this should return a zero if it works if we wouldn’t remember that we can go into the command line and do man to connect and go towards the bottom and here we will find a section for the return values if the connection or binding succeeds zero is returned otherwise minus one so I will just do a simple if statement there’s no need to save this to a variable so if this is not zero something went wrong and then we do p error connect and return minus one otherwise we are connected to the proxy server so I will just Echo that to the screen so we know what’s happening then I will close the connection because I want to see if it works so close s return zero okay let’s see if we did something wrong make it compile on the first run that’s not every time and let’s run it and see what happens right we need to put some something here we’re not going to be using that information at the moment connected to proxy great so it works so now we have successfully created our TCP connection towards the proxy server and the next step is to create the uh proxy request packet according to this structure that we created before we haven’t created any function declarations so let’s do that as well so we have a main function takes in an in and an arv pointer and when I create those signatures sorry chart of course so if we look at our regular main function we use this format right here so H Char array of pointers but when I create the type signature I usually use this format doesn’t really matter okay so that’s the only function that we have this far our other function is going to return a pointer to a request and let’s name this function request and as argument we’re going to take in a sh pointer which is our destination IP and just a regular in for the destination port and let’s make both of these counts as well the count keyword means that we cannot change these variables inside of the function so it’s just input values so this is the signature I’ll copy this and then I will strip it down so it looks like our main one because we don’t need to have the names of the variables when we do a function declaration and why do we do this function declarations do we have to no we don’t we don’t have to but imagine that we put our main function in our C file at the Top If we then and try to reference the request function it’s not going to find it because it has hasn’t been Define yet but if we put our request function on top of the function declarations then it will work so that’s one reason but I think a more important reason is so you can have like a um a better look you can just watch the H file and you see the entire structure in a very good way so always do this if you have a multiple files or a Big C file uh okay that was a small parentheses sorry I copied over this [Music] one there we go and then we go into here and we will create this request so what do we need in order to do that well we need to allocate the memory for this uh request uh structure that we’re going to uh turn and we are going to reference the length of the structure a lot of times so I’m going to create an alias that or a macro and you do that using the Define and then you give it a name I will call this [Music] Rec size and uh what is Rec size it is the size of stct proxy request and let’s create one for the other one as well though Define uh rest size response size and that is size of stct proxy bon in that way we don’t have to manually type out this as soon as we need to reference the the size of the structure and um semicolon at the end oh I misspelled there we go okay so back to the C file again and I’m going to create a request pointer I’ll just call it recre sorry and I’m going to start by uh allocating the memory for this structure so request equals Malo re size like this and now we’re going to fill this structure with the correct data so let’s bring up [Music] the RFC again so the first thing is the VN and the VN should be four so w VM equals 4 and if you’re not familiar with this Arrow that’s basically the same as the dot format but when you’re using a pointer to a structure you use this um Arrow to to indicate that we need to grab into the the reference in order to get the value or set the value in this case okay so VN is four then we have the CD and it should be one because we’re making a connect request so Rec CD = 1 then we have the destination port and we need to put it in the correct format so wck this Port equals and now we use this Hon s function that I talked about before to switch it to network by order and uh is the destination Port then we take the destination IP so w destination IP equals in address destination IP and then we need to have a null terminated string with our variable and I want it to be eight characters so let’s create a definition for that find username toiz cuz we need to remove this e 1 2 3 4 five 6 7 and then a ZTE at the end so so we will use I will use string copy to copy into the W username the usern name and the maximum size is seven and then it will uh add the zabte let’s do it okay so now we have prepared this structure and now we will simply return it like so and now it will be very easy to to hand handle this because we have a function which just creates the entire data that we want to send and we know the size of this structure so we can just use the right system call in order to send it okay so now that we have our function which creates the packet that initializes the proxy connection now we’re going to use it so let’s go into our main function and let’s create a pointer of our structure request type so we can use it when we want to send the data and instead of just closing the connection like we have done here we’re going to set our request variable and use our function and our request function takes two arguments it is the destination IP and destination port and we do already have variables for that it’s the host and and Port variables so we’ll just use some so host and Port like this so now the wreck variable is pointing to a toour packet and we just need to send it using the right system call the first argument is our socket file descriptor which we named s uh the second argument is [Music] the is buffer and I think we only need to do wreck perhaps we need to do yeah we probably need to do a type definition type cast I mean but let’s put put it like this to begin with and watch the warnings and errors if when we compile it that’s usually the best workflow uh and we need the size of the packet and since we know that we we always want to use a 8 by an 8 byte buffer for the username we have a constant size of our uh request packet so we will just use that uh definition that we put in here somewhere it is I think we created a macro yes Rec size that’s the one that is the size in by for how big this packet is so now we send that packet and the next step in the process if we look at our RFC it is accepting this structure back so we can look inside of the CD property and uh look for the 90 code so how do we receive this one well we did use write in order to send the data and will use read to receive the data uh and for that we need a buffer so let’s I think the easiest way will be to just create a variable on the stack for that so buff and then we’ll put the response size as the number of bites and before I use read I always want to make sure that the buffer is empty so I will M set the buffer with zeros and uh use the rest size number of zeros so now we have a clean buffer that we can read data into um yes so let’s do read and the first argument is the socket file descriptor second argument is the buffer and the third is the size like this and if this read operation returns something less than one because the number of bytes should be [Music] returned then we know it the operation has failed and we need to show an error sorry I’m a little bit used to the JavaScript strings there we go and let’s uh free [Music] the the the buffer uh no not the buff free the uh request packet so we don’t have things line around on the Heap and let’s close down the socket file scriptor and return minus one for now so this is if the read operation fails if it has succeeded we should have a packet that looks like this in our buffer but we can’t easily access the values inside of it if we only have a string pointer so we need to create another pointer of the correct type which is our uh structure for the procure response so we will create a rest as well as the wreck and we should just be able to point this towards the buffer and that’s what we’ll do so rest equals buffer I think this should be enough and now we should be able to grab this value the CD value and I like doing it like this I will create a an INT which I will call succeed success and this will be a bullan variable but as you know we use ins as booleans we can use Char and other types as well but usually it’s in and uh this will be used as a predicate I’m not sure if you are familiar with the term but a predicate is basically a a a function or an operation that returns true or false and uh this is American English I think in the British World they use the word property for this but since we already use the property term when we describe other things I think the predicate is a better term anyhow then we can do something like this so we set success equal and we go into this structure and we check for this CD value now we’ll put this in parentheses and we do like this so what does this mean this means that if the CD is equal to 90 then success will be equal to true if it’s not 90 success will be false which means we can do like this to see if it has worked or not and then I want to print out a an error message of my own so I use the fprint F to the standard error way and I want to say something like unable to Traverse the proxy error code and then the error code I need to divide this a little bit I’m not sure you know it but if you have a large string you can always divide it by lesser by smaller strings uh and put them on different lines make sure to encapsulate them in quotes on both instances and then we will show the rest do c the rest to CD value like this and we can also do yeah let’s close the S and let’s free the w return minus one and unless this if Clause happens we have successfully traversed proxy so let’s inform that with a print F at least for now perhaps we will remove these messages when we are done okay so [Music] successfully connected through through the proxy to we will have a percent s colon percent [Music] D and then I will use host and Port like this and now I will close down the connection when we do the when we finish this uh program off we will not be closing down the connection but since we are only checking right now if it works if we are able to connect through the proxy we can close down everything and terminate when we are done so this code will be removed in the final version and we will free the W and return zero like this H the indentation seems to be a little bit off well we’ll see if we get an error okay so let’s compile this and see what happens okay uh and when we are troubleshooting code especially when we have coded quite a lot of lines of code since we last uh compiled always look at the first error because sometimes if you fix the first error all the other errors goes away so don’t get discouraged when you see a full screen of error messages like this just focus on the one at the top uh so what does it say w has no member named username interesting so let’s go into our H file and see what we’ve got user ID okay yes of course so where were was that that’s probably inside our request function right yes here it is so user [Music] ID like this okay and before I run make again I press enter a couple of times so we get a barrier that way it is much easier to see where the last couple of error messages stops and the new batch starts okay so assignment to rest star from incompatible pointer type rest equals buff okay that’s the one I was a little bit unsure about remember and I said let’s uh compile this and see what it says because in some of these cases the C compiler will perform an implicit type cast in this case and uh work it out anyway but not this time so okay so rest is a struct pointer and buff is a string pointer so what if we were to just [Music] do res like this let’s try that first seems like it worked okay so close s data definition has no type or storage class that’s an interesting error message data definition has no type or storage class close s in close in FD uni SD do we have all our include files I have never seen that error message before you SD yes didn’t I call that variable s yes and that’s an INT in in it was only a warning but very weird warning perhaps something else is wrong in its proximity if success F print F and the parentheses then we have the string and then the end parentheses close s what line did it complain about 94 okay it’s not it’s not this one it’s complaining about this one well uh there is okay so let’s [Music] see if success do and then we have this close s close yeah this shouldn’t be here okay let’s do this again okay it compiled let’s see if it works so what shall we connect to I will just do one of my web browsers and you might have noticed that we didn’t put any DNS related stuff in this one so I can’t just put in www Network technology.org or something like that that’s something that you probably can add by yourself see that as an extra task and but for aove of concept it’s not really necessary okay so I will take the IP address of my web server and let’s run talize against that on Port 80 and if this works we should see a message that we have successfully connected to the proxy and we should also see a message that we have successfully connected to the end host through the proxy connected to proxy successfully connected through the proxy to blah blah blah blah blah blah okay very nice so this has accessed the web server through through the tour Network and let’s add uh let’s add some functionality so it can send some data and read some data so we can see that it can communicate with the end host as well that is also stuff that will be removed in the end in the end result so let’s create another buffer let’s call this temp and let’s do [Music] 52 since it’s only temporary I will not think much of it so here we are successfully connected and now I want to send something so since I’m connecting to a web server I can use the head command just to grab the information about the web server versions and stuff like that that’s quite easy to do so I’m going to use the SM print F in order to create the buffer but first I want to use the M set in order to zero the entire buffer so no not I need to remember I call it temp and zero and the number is 512 and then I will do SN print F and we are going to put the result into the string variable the buffer that we call temp and we won’t be writing more than 511 characters and what do we want to put there so let’s do head [Music] HTTP like this and we’ll end by r [Music] n and on the next line I will put in host Network tech.org and and if you wonder what this RN is sorry that is the Windows standard for new l so this R thing is a carriage return which jumps down and goes to the left uh or it goes all the way to the left and the N is as usual the Line Feed Okay so now the buffer is now the buffer contains this [Applause] data and then we will just simply send it so write s temp and I’ll do string length of temp like this and then I want to zero out the buffer again or not the buffer the temp and then we want to read the results so we read from s into temp and no more than 511 bytes and then we’ll just print that to the screen with a regular print s like this let’s put it in single quotes as well so we see if there’s something weird going on that’s a good tip by the way like if there’s a line feed before the the data or something like that then we will see it like this so this will be on one line and this will be on the next sline okay save and now we will compile and let’s run it again and this is the response from the web server as you can see it works we can we are able to communicate through the tour Network and if I connect to my web server we should be able to check the logs and see what IP address the requests came from more log P here we are and let’s do tail D3 access access. look okay so here is our head and if we grab this IP address we see that it’s it’s some kind of German uh address and we can also do if we restart the tour server so we do Etc in tour restart as root [Music] restart like this then we issue the same command again we did get the output like before and if I check the logs once again we get another another IP address this time and if we do a host on that IP address we see that this time it’s in the Netherlands so our program works fine this far but at the moment it’s just a proxy server client it’s not doing what we intended it to do from the beginning you remember I want to be able to do something like talize and then run any [Music] command like curve against some IP address and then I want to in intercept the connection I want to run this command as is but I want to intercept the con the connection that the actual program does and run my code instead so it tunnels through the tour Network any program that we want to run so we can do talize and put anything here we could do like if we have a Firefox installed in the same directory we could start Firefox with toiz and then it will be tunneling through the Tor net work and we could do tell net or SSH that is what I want to do and that is the next step in this process it seems really Advanced but you will see that it’s quite quite a bit easier than one might think so what have we learned today today you have learned how to create a Sox version 4 client and use it in order to connect to the tour Network and next time you’re going to learn how to create this Nifty little tool that I called toy if you like this episode and want to see the continuation or other stuff in this Channel please uh subscribe to this Channel and hit the like button if you think I deserve it and uh thanks for watching thanks for today welcome back everyone to today’s class today we’re going to talk a little bit about something called exor so exor is an operation you like you can do PL plus and you can do minus and then you can do xor but exor uses two streams of bits and it produces different output bits depending on the input so if we have two zeros then the result is zero if you we have a zero and a one then the result is one no matter which it is which but if both are one then there it is zero so why is this useful well this means that if we use this technique in order to encrypt something then we can decrypt it if we Supply the cipher text with the same key as when it was encrypted this is a very basic form of encryption that uh is only for demonstrational purposes it’s quite easy to crack with today’s Technologies and computer power however it’s a good example on how to use exor and in this example I will only make it so that you encrypt one one single character and when you know how to encrypt one single character there shouldn’t be a problem for you to modify the code so it can be able to encrypt any length but only one character in this example all right so let’s begin by creating an exor doc file and we will also have a couple of definitions we will Define the key which also will be one character and we will Define what we want to encrypt so let’s define the key as the character X let’s do big X and and then we will Define the clear text as the letter A so we want to encrypt the letter letter A using the key X and we don’t need a whole lot of includes I will just put the standard input output age Library and in order for us to be able to see what what is happening I will create my own function called print Char which will print the character and the heximal value and it will also print a text string describing what we are printing and this will just be a single print F line something like this so we will take the [Music] character and show its asy character code and uh we could do hexad decimal but I think yeah let’s do hexad deal and it will take three arguments the text describing what we are doing and then the character twice so we’ll print the actual character and its heximal representation and I will put a0 X in front of it to show that it’s hexadecimal and that’s all okay then we go to our main function where we will do the magic so to speak we will click create a couple of Shar one for the clear text one for the key one for the cyer cipher text hard to write write that word and one for the new clear text because we will decrypt it into a new variable okay first we Define the clear text as our clear text definition this one and we will use our print Char to print the clear text before we do anything with it then we will Define the key as our constant key and do the same we will print that on the screen and then we will do the actual encryption so the cipher Cipher text should be equal to clear clear text xor key so this little Char uh carrot character here it’s is is not uh uh what you might think it is uh sometimes we use this carrot character to do when we do like x to the power of five or something like that but in C the carot character is equal to the exor operation okay so now we have created the cipher text variable containing the encrypt text using the key now we want to print the result Cipher text and cyer text and finally we’ll try to decrypt the text into another variable and this time we will take the cipher text and xor the key so as you can see the exact way that it goes forward when we take the clear text uh X or the key producing the cipher text we now take the cipher text xort the key to produce the clear text and then we we will use our print Char function to print our new clear text and that should just about be it so let’s compile this one oh I did something wrong I main that’s not right there we go okay now what line 47 ah I added a parenthesis too much so let’s jump to 47 okay it’s outside of the text but I did see it on the message where is it ah right here that shouldn’t be there all right now it works so let’s run it okay so from the beginning we have the letter A as a clear text and that is 41 in HEX and we have the key X which is 58 when we combine them together with with an exor operation we get a cipher text with a hex representation of 19 and no asky representation and then we exort the text backwards using the cipher text and the key and then get we get a new clear text with the letter a 41 so our code works just fine should be cat not CL car okay so we do two definitions we create a simple function in order to print out the results we set the clear text and print it we set the key we print the key then we do the encryption algorithm so to speak using clear text xor the key and printing that out then we do it backwards we the cipher text exort the key and get the new clear text and press print that out so today you have learned all the race to the exor operation in C thanks for watching and thanks for today what’s up guys in this episode we are going to code our own uh encryption Library it is uh Loosely based on the arc4 cipher but with some improvements which makes it more secure we’re going to expose a couple of uh functions from our library and it’s an initialization function which takes a key as an argument there’s a encrypt function and there’s a decrypt function and finally an un initialization function so it’s very easy to use and U let’s get [Music] started hello everyone and welcome to Today’s Show today we’re going to code our very own encryption Library using the arc for uh algorithm when talking about encryption that is uh one of the more easy encryption ciphers to implement but it’s a little bit bigger pro project than we usually do so I will not be coding inside of the terminal today I will do most of the work through the is code so let’s begin by launching the sociopath SCP client so we will be able to code live against the server I will just go into my I will put it in my temporary directory and I will create a new directory and I will call this Arc for spelled like this so the algorithm is written like this rc4 but it’s pronounced arc4 so I think that’s a good name for the library so I’ll simply create an empty folder and I’ll right click and open an editor then I will have access to the entire folder ins side of vs code like so and I will minimize my sociopath and close down this and I will also log into my server and attach to my screen or uh I will create a new screen instead and I will configure it and as you WR V of and as usual I will write a simple bash script like this just so I don’t accidentally close down this window and terminate the screen so let’s go into my temp directory and go into my arc for and here we are an empty folder so what do we need I will create a two files or three actually first I will have the actual code the ark4 doc like so and as I save we can see here it’s successfully updated to the server and we will also need a Arc for. H for our structures and includes and definitions and macros and such and to make our life a little bit easier I will also create the make file which is going to compile the whole thing and actually I will create a fourth file as well this is just an temporary file we won’t need this file when the project is completed but as we are implementing this encryption it will be easier if we have an example program which we can use to try things out and I will call this example. C because we are creating a shared Library so this Library will be used by different uh c pro projects and that means that the arc for. C file will not have a main function so this example. c will provide our temporary main function so we can run it all right so in the make file I will simply Define the stuff that needs to be compiled so the first thing we will be Ark for. o and you write it like this so the file that you that’s the Target and then a colon and then you write the dependencies so this file will depend on Arc for. C like so and then you Tab and you write the command so I will do GCC d c AR for DOT C like this and I will also turn [Music] on optimizations at the highest level as well as log messages and when that file has compiled successfully we will have an arc for. and then we will create the actual Arc for Library so this depends on Arc for. o and I can’t really remember how [Music] to let’s see all the flags necessary to create the shared Library so I will check how I did it in my toiz make file and I will simply copy this part right here so I will do GCC and we are compiling Arc for. o or linking actually and the output will be called Arc 4.so that’s the extension for a shared library and we want the uh optimizations and the log and then this additional Flags necessary for a well for a share Library [Music] okay there we go so after those two steps our library is compiled but I will also have the example do o dependent on example. C GCC d c except exle let’s see and I will turn on op and well and when we have the object file we can compile example which will need example. [Music] o and then we simply do GCC example. o Dash o example wall two and I will also create a clean which simp removes everything besides the source files so all o files allo files as well as the example binary executable and then I will just tell the make file what we should do as a default when we run the command and I want to compile Arc for and example so this is our make file if I didn’t miss anything I think we should be able to let’s just go into the temp and the AR for and I will set this to my home so the prompt won’t be so big like this and I didn’t save the H file I think and the example and make file there we go Arc for make file Arc for. Ag and example so I should be able to run the make now and we get a reference error for the main but the do all files should have been created yes they did so everything seems to be working even Theo file did be created even though everything is just empty source files and if we do make clean we’re back to where we started okay that’s a little bit of administrative work but it will pay off when we need to recompile and debug our code I’ll close down the make file because we don’t need to do much with that and I will actually start with the example file because if if we create the example first then we have a kind of a road map to the different functions that we need to create later on so I think that’s a rather good way to start I’m going to include the arc for H oops or for H and inside that I will have my regular definitions so I usually start by putting in the STD iio that will be removed later on because we’re not going to use any of these libraries but during development I think it’s easier to have all the usual standard libraries ready to go like so okay so how will this example file work um I’m going to start by just creating function definitions so we do everything in the order that you should even though this is a small file so we’ll have an in main with no arguments and that that’ll be all for now so I’ll create the actual all M and I never seem to learn where to find my curly braces on my Mac all right here they are so I’ll will create I will make this file a little sloppy and easy to work with because this will not be a part of our production code so to speak so I will just do it as easy as it can be for myself so I’m going to create a couple of pointers I will have one for the key and I’ll have one for [Music] the uh Source text that we want to encrypt I will have one for the destination text [Music] and I will have one additional pointer for when we decrypt the encrypted text so let’s call this encrypted instead and this decrypted that’s a little bit more obvious and I think I need to make this a little bit smaller I hope that won’t be a problem for you okay and I will just Define this statically so I will set the key to let’s [Music] see something easy like tomatoes when you run this code for real you should always create a a real encryption key so this can really be anywhere from 8 Bits to 2048 bits according to the standard but this will do as an example and the text I want to encrypt is a part part of a Shakespeare poem shall I compare the to a summmer day okay we will also need to before we do that I need to define a couple of type definitions because I’ll be using eight bits in Gears and I will use 32 bits and possibly 16 so I’m going to define those first so let’s define [Music] um we will do unsigned char that is an 8bit value and I will call this inate and not defined by the way this should be a type definition so a type definition is when you create your own type everything you write is what the source name is and the last one is the destination okay so the next type definition will be a 16 bit int and that is defined in C as an unsigned short int and I will call it int 60 and finally we need an 8bit uh variable as well and I will type this as an unsigned chart in8 [Music] um oh sorry I have done that already the only thing we have left is a regular a 32bit integer and uh that will be well a regular unsign in like this okay so now we have our type definitions and let’s continue with the example main function so we have the string that we want to encrypt we have the key we will also have a um a pointer to a structure which I will call Ark for and I will call this pointer Ark for like this so this will contain the internal state of the encryption engine so to speak and I will Define this as a let’s do it here I will do struct s I usually prefix my structures with an S that’s a stylistic choice though uh so s Arc for and what will this contain well we will we will actually use the Wikipedia page it’s a very good Wikipedia page which tells exactly how to implement this encryption not in a specific language like C but with like pseudo code okay so we have this and now that we have the key by the way we also need to size variables so let’s [Music] do in 16 and what do we need we need two size variables so let’s call those size key and size text and I will just use this string length to define those so SK equals S L key and S text equals s l f okay so now I have all that that I need in order to call the first Arc for function and that is called let me do the T function declaration it will it will be called Arc for in it because it initializes the arc for structure so this will be of type Arc for pointer and it will take two arguments it will take a key let’s do it like this unsign CH no let’s use the orate it it’s not really an integer because this is a string but every every character is an integer so it will be okay I think so in8 key in because if I don’t do it like this if I do sometimes Char and sometimes in eight and then I will probably get this signedness wrong and I don’t want that and we will have an in 16 for the size of the key and I don’t need those in poter in 16 right then we go back here here and we will set our ark4 equal to Ark for in it and we send our key and our s key like so and this is a function that might fail but that’s very unusual so I won’t care for that during this example program but if you write a real production grade program check if this Arc for returns zero because in that case The maloc Returned error otherwise we will get one of these structures back and then we are ready to encrypt let’s add some prints as well so in initializing encryption and I want to have a way of putting this to the screen instantly so I will create a definition which show which call F and I’m not putting this into the arc for. because this is not something I need in the in the actual uh end res in code this is just for convenience so F will be F flash SD out and that basically flashes the standard output buffer so that if I do a print F like this which not which is not ending in a new line it will and if this takes a couple of seconds to initialize then this text will not be printed before this delay which is which kind of defeats the purpose so I will put the F right after like this and then down new line okay and then we will let print out the input first so I will put it in single quotes [Music] and let’s do it like this a new line and then an AR an arrow and this is the front text like so then we do the actual encryption so we will use our encrypted variable so encrypted equals Arc for let’s define this first so this will return a string pointer but I will call it an int8 pointer and it would be called Arc for encrypt and it will take two arguments one which will will be an in8 pointer so the string that we want to encrypt and a size in the form of an 16bit integer like so pretty similar to the initialized function and the arc for uh encryption works like this you you don’t need a specific decryption function because if you try to encrypt the encrypted text it will be decrypted so then it goes backwards so with that in mind we can just create a macro which will be called Arc for decrypt with two arguments X and Y and this will just call Arc for encrypt with X and Y so it’s not really necessary but [Music] it makes it a little easier to use and in order to make this encryption function work we need another function called Arc for bite which produces one single character of encrypted text so this will be an INT 8 and not a pointer just a value now that we have our data types and our function declarations done we can continue with the example. C file so the encrypted variable will be equal to Arc for encrypt and we will send in the uh from text and we will also send in the size of the text like so and this is a function which shouldn’t be able to fail which means that the encrypted variable will now contain the cipher text the next thing we need to do is create a function which can will make it possible to Output the encrypted text in some format because the um the encrypted text will not be printable characters it will be any number of different integer values and I’m thinking about putting using an output like this so one B will be represented by two heximal characters like this like this so this is one b and then two byes per group and each group will be separated by a space okay so this this function uh will uh will not be a part of the library itself only this example file so it shouldn’t return anything and let’s call it print bin because it’s binary data and it will take in an INT 8 array pointer let’s call this text it’s not really text but whatever and then we will have an in 16 for the size like this and all we need to do is iterate through the text and print those bites two at a time so how do we do that in the easiest possible way there are several approaches but I’ll I think I will just I will just create an in32 as an iterator and I will have an in 8 pointer as well and I need to assert that size is bigger than zero and what is assert assert is a function which checks if this predicate function is is true and if this is not through the whole program halts so it’s quite good to use in situations like this both in this example file because it’s easy and it doesn’t matter really if the program exits and we can also use it in our production code in some places because we are coding a library and the programmer should s the ra right arguments if not the program should hold I think all right so we need to go into this Arc for and include what’s its name it’s assert Ag and in order to get all the functionality we also need to include our number. H like this now we jump down a little bit same here okay so we know that we have an input which is let’s call it input instead that we have an input which is a well which contains something length is bigger than zero okay so let’s do a loop then so four and we will [Music] do let’s make this an in 16 instead that will work better together with this 16bit size so let’s and I want to make this const as well here okay so let’s set I to size and P2 input we’re going to continue the loop as long as I is positive so I’ll just put I here because it will decrease every iteration and it will after a while go to zero and the loop ends and the PO pointer will instead increase every iteration okay so if let’s see I need to check something out so the first iteration then let’s say we have a string which is 32 bytes so I will be I will be equal to 32 and we will output to one B of data then it will be equal to 31 and we will output two more so let’s see I think we could write it like this so if I + one let’s see if I + 1 modulus 2 if that’s the statement is negative so it’s equal to zero in that case I want to print f space and in any case I will print out a head ex a decimal value with two two digits and this is what we want to print out I think this will be correct um so this basically means that if we are even so if I I + 1 is even then we will put the space and we will also use our macro F so it will uh uh print this no we don’t need that by the way because we will end this with a new line anyway so that will flush the buffer this should be all I think and let I have forgotten something but let’s try it out so what can we try it out on we don’t have all these functions [Music] yet so let’s comment this out and this as well and this is okay and what shall we print as an example we can print the key so print bin that’s actually not binary data but it will work the same so we will print the key and S key is the size turn something like that let’s see if this compiles or if we need to remove something else make a lot of warnings type Def unsigned sure expected before unsigned before unsigned uh I have an empty struct that’s probably it let’s just put something temporary here then [Music] maybe it is because of the position sometimes you you need to do one thing before the other Etc uh forgot to end the struct with the semicolon is it still complaining type ofure in if we add our type def [Music] for for struct does that error as well type of struct is ar ar for uh it’s not uploading okay I got disconnected one good thing with the sociopath is that if you reconnect like this you don’t have to do anything else it remembers and continues to serve all of your files so that’s good okay let’s save this again and this one and let’s jump down a bit clear the screen and let’s make it again okay finally pointer Targets in passing argument one of print pin differ in signedness uh uh okay so this is what happens if if I don’t use my in a eight everywhere so where did I not uh here let’s just change this to int 8 and everything should be okay okay we’re down to one screen of errors and warnings [Music] almost does it still uh seems like it needs a type cast because the strings are generally not like these static strings in side of the code they are generally not un so let’s do a typ cast in a poter and same here in poter key ah so SD L needs it as well I could just make these strings signed but then I would have the same problem in the other end instead because the encryption uh standard requires them to be unsigned so let’s just type cast this as well in 8 like so do we use them anywhere else except our own [Music] functions print F shouldn’t care right let’s do it just for the sake of like [Music] this okay let’s try it again at least we have very clear and precise error messages in see did I go to far make clean make S key equals didn’t I save [Music] save why does it okay it’s higher up in the code right in eight star and there we have it okay that should be all right make clean jump down make what does it say this time point or Targets in passing orent one of string length di in different ah I did it in the wrong direction okay that’s kind of funny so instead of in 18er let’s see there there there and there we should just have Char because we have them as int8 but the functions we’re calling requires them to be regular strings so a sign CH pointer okay this time it should look a little bit better I think make clean jump down a bit and make warning pointer Target in assignment from sh to 8 AKA unsigned different sign do so it doesn’t seem to be enough by doing this it this way okay let’s do it the other way then I will undo until I see this change like so so now all of these key and this this will probably not be but here we can do a conversion in the other direction instead and that should be all make clean jump down make okay now we’re talking warning unused variable that’s an annoying message if I don’t want to use my variables I don’t use my variables but okay so let’s do something like key equals from equals encrypted equals decrypted equal key = Z is that enough maybe I should end it with a semicolon operational key may be undefined variable s text set but not used right so it wasn’t enough to mention the key twice this is only set and all of these are used so we need a key [Music] what [Music] about from equals key okay now what s text but that’s an INT right yeah I haven’t used that yet because we haven’t gotten that far these are only warnings by the way but I when I try out my code and I want to remove everything of the sort uh so which is this this is [Music] the text so we will change the key later on let’s just [Music] do s key equals s text equals zero now it should be completely Warning free I believe no one more warning unused variable Arc for okay I haven’t used that I can just let’s comment that out for now make clean make okay finally let’s see if this works as intended example okay so shall I compare the to sumers day and then I am showing some of the key but I am showing half a group here and half a group here what will happen if where is it if I just do I here okay now it looks good it prints out in heximal characters in nice formatted group very nice that means we can begin with the actual encryption code now finally so let’s go over to the arc for uh H and begin working on our structure this will contain the internal state of the uh of the encryption engine so to speak so let’s go to that wonderful Wikipedia article so Arc for wikii and I want the English speaking Wikipedia let’s hide this and make it a little bit bigger for you guys and let’s do something like this let’s use the whole screen I will probably be looking at this anyway so there’s a lot of text here and some of it are warnings that this uh encryption standard isn’t secure but I have read through all of that and I’m not sure if I agree actually well this the thing is they claim that the out put of the encryption is distinguishable to when compared to purely random byes of data and that could be potentially be used to backtrack and crack the encryption and it has indeed been used for example the wifi encryption standard web used exactly this encryption with very small keys and a spe special kind of U seeding algorithm which they were be they were able to crack it in the wild in a couple of seconds but that’s only in combination with a web technology and there has been some talk that in combination with the TLs the encryption standard on the web it’s also not safe and it’s not safe the first couple of bytes which it produces is not safe so since we are using this encryption firsthand in our own code not together with anything else and I will also create a mechanism which will disregard the first like 500 million output bites which will stop all the other cracking techniques so I think with a big enough key which is um randomized in a secure manner I think ark4 is still secure Okay so I don’t you don’t need to read through the whole shebang but those gray information boxes are very good so there there’s two steps Step One is what I call the initialization of the crypto that’s when you only take the key and you prepare the internal state of the encryption engine and this is what you do and then the next stage which happens every time you need to encrypt one bite or more exactly produce one bite of the keystream data so then you do this so let’s start writing now let’s begin by creating our Arc for struct I will zoom in here a little bit not that much temporarily so we can have both on the same page um so if we look through this what do we [Music] need we need an 32bit or we need an 8bit INT which will go go from 0 to 255 we will need a an array called s which will be consisted of 8 bit values and 256 of them then we have the J value same as I one in8 and then we have the [Music] key and that’s basically it so let’s summarize we [Music] need int uh I in 8 I J and later on we will need a k so I’ll put it here and then we will need the array so in 8 s and 256 of them so we have I with J we have the K and we have the S do we need anything more down here we need temporary variables as well but then I won’t put them in the struct so okay this is this is all we need for our own structure so let’s begin writing on our let’s begin writing on our initialization function and this will let’s copy this whole thing let’s include our let’s include our Arc 4. h there’s something weird going on with the Caps look include r4h I wonder if you can disable the caps lock I never use it anyway I use shift okay let’s see include AR for. H and then we will do the visualization function so it will return an arc for structure pointer and the first argument is the key the second is the size of the key like so and the first thing we need to do is allocate space for the uh for the actual structure so I will create um point a point pointer for that I’ll just call it P because we’re going to reference it quite a lot and P should be equal to Malo and it should be the size of stct s AR for so the size our stct that many bytes of memory we shall we shall allocate and here I will do an if clause [Music] so let me just check the return values for my Look Man 2 No Man 3 Meo so I know it Returns the memory address but if it fails [Music] return [Music] value they return null and they set arome okay so let’s just do something like a ser insert P [Applause] error I remember then it will check if this has errored out and if so display an error message and quit because if you can’t allocate memory for our structure there’s no point in continuing show okay so now that we have allocated our structure now I will just do this and I will work in the following manner let’s close this down and change up the size a little bit and then I will paste this in and make block comments out of it I think it’s command this or control this let’s do something like this instead oh annoying I never seem to learn vs code for Mac I know all of these different things on my PC but it’s not the same on my Mac well well this works too okay so now I have in the comments what needs to be done and then I will just do it but before we begin I want to zero out all the state variables so let’s do something like no let’s just do a simple simple thing in eight X and 4 x = z x less than 256 x++ and we want to take the PS so that is the this array I want to zero that out so PS of x equals zero and then I’ll just do p i equals P J equals p k equal zero I like starting from zero instead of random randomness okay so the first thing is this Loop right here we will iterate through 0 to 255 with this I variable and we will set s of I to I pretty simple stuff the code will look kind of difficult though but it really isn’t why is this not oh never mind okay so for p i = z and p i less than 256 p i++ and p s of I equals I okay this is done so if we do one thing at a time it’s quite simple to do this actually can’t say that for every crypto and then we will set J to zero but we have done that already so we will jump into this Loop and we will let the the I variable do another uh ENT identical for Loop so let’s just copy this line like this and what will happen then we need to Temporary variables as well by the way so we need int 8 I will call them temp one and temp two and I want to zero them as well from the beginning so let’s just do temp one equals tempure = z like so okay so what will happen inside of this Loop let’s remove the things we have done already okay so this is a rather difficult line I want to break them down so what’s the first thing that happens right here well the parenthesis is evaluated first so let’s set let me see key I mod key actually let’s evaluate this first I mode key length so temp one will be equal to key so it will be key of I key of I no where am I we are here right so I mode key length so p Arrow I modulus key length so that’s the size okay so this part is okay now we can take the rest of this parentheses one at a time so P J [Music] no temp 2 = PJ plus p s of I plus key of and then the stuff we evaluated right here so key temp one and then we will set P J so now we are doing this part so PJ should be equal to everything in this parentheses which was temp two and mod 256 modulus 256 like this and finally we should swap the values of s of I and S of J so let’s set temp one to p s of I no not just I we need to change those occurrences to [Music] Pi and p i there’s a lot that can go wrong here as you can see you need to be very precise so Temp and that is why I I could do everything in one line if I wanted to but it’s very error prone and that’s why I break it down with these temporary variables so temp one is equal to p ps pi and temp 2 is equal to PS PJ and then we will just swap them so [Music] p s of p i equals and here we see that temp 2 equals this no temp one equals this that I’m working with now which means it should be equal to Temp 2 instead and then we have PS of [Music] PJ which is currently equal to which is currently equal to Temp 2 and it should be equal to Temp one and that’s it the code is very difficult to read but it’s quite simple and it’s quite easy to follow it step by step if you break it down into smaller steps and that is basically it I’m going to do one more thing though because if we go back to the Wikipedia page and we go to the next step we see that they zero out IJ and then they have an endless loop which happens every time you encrypt a character so we have a function which encrypts a character which means we only have to worry about this but this part we should put here in the initialization function because then we can just do several consecutive calls to our Arc for bite function so P of I equals P of J equals zero like so and then we just return P I think we did it right if we go back here and we remove this line and put this line back then we can print instead of printing the key let’s print [Music] let’s print Arc for S so the initial state of [Music] the the initial state of the encryption engine and I will put a one of these on top as well so we may see the difference no sorry can’t do that we haven’t initialized it yet but okay let’s see what happens clear jump down a bit make clean and make okay couple of Errors if we go to the very beginning warning suggest parentheses around assignment used as truth value well I want to use it as a truth value I I don’t really care for warnings like this I I if I want to code it this way I will code it that way implicit Declaration of function assert P error okay and here I forgot got something and Arc for has no member named s okay so a couple of more small typos uh if we begin in the H file I guess this is the problem is this a big S or small s it is a small s so why doesn’t it remember called s did I perhaps Arc for p that’s weird maybe it’s something because of this we should check if x is less than 256 so that was an easy one and what else assert peror where is that Lo okay at the Man 3 assert [Music] P okay I need this G Source [Music] thingy let’s try it again rank clear jump down a bit clear and make boom okay in 8 i j k unknown type name unknown type name in8 uh I put this before these let’s move them so I don’t like you have to break this up but what can you do this this just a warning error I UND declared okay I missed one line [Music] 18 WR 8 so this should be p i and this should also be p i okay what no error Arc for Undeclared now the problem must be higher than that Arc for Undeclared in example and pointer Targets in passing Arc for init key sh star that’s weird didn’t I use my in 8 for that function declaration let’s check it out so in8 [Music] key and in8 S let’s put this back right away [Music] and okay it’s this function in 8 [Music] inut 16 well where is it let’s check it out again so expected [Music] in8 Arc for a nit key pointer Targets in passing argument one of AR for in it differ in sness because this is a char inate [Music] key so key is a [Music] Char okay let’s type cast it [Music] down where do we have it’s right here okay so it’s currently a let’s see it should be an in 8 so okay let’s see what we have still a warning about this one but that’s nothing we can do anything about un reference to Arc for init uh we need to link that [Music] one let’s just no so go into the make file and then we will do let’s make it easy I will just do uh Arc for.so as one of the input arguments so clear jump down a bit make and now it still doesn’t compile undefined reference to Arc for init what did it draw GCC AR 4.so [Music] do do I include it in the header file include Arc for. H include Arc for. H Arc for init and if find reference okay for the time being let’s cheat a little bit I will fix this later around I don’t have the patience right now so I’m going to go [Music] and when we compile final program we do AR for. instead like so okay this time it worked we probably need to explicitly export uh the functions when we use the the share Library I will dig into that in a little bit but now we do have ourselves a binary so let’s try it out that doesn’t look very good let’s do M TR DF M look I don’t know look let’s try the S right initializing encryption H how did I write that if Clause by the way maybe I reverse the conditions let’s see if be my look okay this should [Music] be the other way around so if P all right make clean clear and we run example did it remove everything when I did make clean Arc for CH HC yes so how come it freezes there Malo size of struct s AR four if that is zero assert P error for X = 0 x less than oh 256 I think that zero means that it’s some weird number format okay no errors at all no warnings even but the same outcome what is this do we have an endless loop on our hands that’s probably the only possible thing right so p i = z while Pi I is less than 256 maybe we should do this with a little bit bigger structure um this could be in6 since then we are probably overflowing that 8bit variable so that was is n the case 4 x = z and what is X x is also an in8 so that should be the same problem though right there we go finally okay so this is part of the internal state of the of the encryption okay so the next thing we need to do that is creating the arc for bite function which will create one single bite of the key stream and the key stream is what we will use to encrypt and to decrypt stuff so let’s begin I will have in 16s with temp one and temp two just like before and we do need an argument by the way we need to attach the the structure so let’s alter this and put in the arc for Star so we can have access to the internal state of the encryption and just like before I will go to the Wikipedia page and this time I will copy this part so in this code studo code right here they use a wi Loop and they loop as long as it’s generating output but will not do it like that instead this function will be called each time we will produce one bite so we don’t need this Loop that will be handled in the encryption function so let’s do it like before and take one line at a time so we will do p i [Music] equals and then p i + + one and we mode it with 256 first one is done then we do similar with the J part so PJ equals PJ plus PS of p i so we just replace the variables with our variables inside of the structure and we mode this with two five6 just like before okay then we will swap the values so this is like we did previously with the um the initialization function so I will let temp one equal p s of p i and temp 2 will equal PS of P J like so and then I will just I missed the S right here and then I will just do PS of p i equals something and PS of P J of p i PS of PJ equals something okay so temp 2 equals the J part which means it should equal the I part now this equals temp 2 and the PJ should equal temp like this and then this one is done as well why did it mess up the indentation never mind okay and then we have this T variable that is their version of our temporary variables so we’ll just continue as before so temp one equals in the parentheses p s of p i so this is not really a spectator SP Sport I hope you don’t find this too boring but we’re almost done plus [Music] p s of [Music] P J and then we mode it with two 5 six and then we use the K variable for the first time so p. k equals p s of ter one and this is the first final output bite as we can see right here so let’s take care of these indentations and then at the end we just return PK like this and then we have our Arc for by function which is the most important in this entire project so so the next step will be to implement the arc for encrypt and this is quite straightforward to do now that we have a um Arc for bite function so let’s see we need one more argument we need to include the Arc for structure so AR or do we yes we do Arc for star and we go here and do Arc for p and in 8 this will be the what shall we call it the thing we need to encrypt the clear text let’s call it CT for Clear text and in 16 this is the size size of the clear text that we want to create and we’ll return this as a um well as a Char buffer a regular string actually so let’s create a in6 which will hold the amount of memory we need to allocate so let’s call this mem size and we will need exactly as much memory as this size + one okay so we don’t really need to because when you encrypt something if we encrypt ABC the resulting Cipher text will be something like this it will be the same number of characters which makes it quite convenient for us we don’t need this variable instead we’ll just do um let’s create a variable first so let’s call this cyer text and let’s call this clear text because both will abbreviate to CT and we can’t mix those so in8 Cipher text and Cipher text will be equal to8 look and we [Music] want size + one size should be enough really but I like allocating one more just in case we will also need something we can use as a counter let’s call this in 16 x we do a for Loop where we set X = to [Music] Zero and we’re going to loop as long as X is less than the size and x++ and what are we going to do at each iteration let’s create a let me see we need this and that okay let’s do it like this so the cipher text of X will be equal to the clear text of X and then we take this symbol and some people usually mix this up with the power of but this little symbol in c means exor so exor is a binary function like do you have if you have two zeros the result will be zero if you have one one Z and one one and a one the result will be one if you have a z and a one so the other way around it will also be one and finally if you have two zeros it will be zero so that is what xor is it’s usually used in conjunction with uh the key stream that a stream Cipher like Ark for produces so here we will just call Arc for bite with our p and that will return one BTE of key stream which we will exert with a clear textt and that will produce the cipher text and let’s do a an error check here as well so if Cipher text is zero then we want to um [Music] assert P error R number like so and if everything goes well we will simply return our new buffer Cipher text quite simple straightforward encryption function and we need a decryption as well but that we have already defined because it’s the same function just that we give it the the cipher text instead of the clear text and the key is the same so basically this part is the same okay so that is done as well and before I forget let’s see encrypted equals R [Music] for so we can take this back now and we encrypt the de clear text and we print out the the encrypted Sor this should be the size of the text this should be the encrypted because this time we don’t want to check the S variable in the structure we want to see the actual encrypted text yes okay so after we have printed the text what do we do do we just use the decryption function no we can’t do that because in order for everything to be the same we must uninitialize the uh the arc for and we need to reinitialize it with the key again so we start everything from scratch and then we can start to decrypt otherwise it won’t work so let’s create [Music] our uninit function as well and that can be avoid Arc for let’s make it easy for us for the time being because there’s only one thing we need to do at the moment when we when we uninitialize and that is to free the um memory allocation so let’s Define arc for un liit of X as fre X I will also need to find let me just do a fast Googling after export C shared Library function because there’s a special string we need to use to export the functions let’s [Music] see this one so let’s make a definition we Define a keyword named export and it will be the same as this so all the functions that we want to export like the arc forb function we don’t need to export that because the end user will only use the encrypt and decrypt functions and the init so we put export before this and before this say and we need to do the same here so export and not this one but this one export like so okay so that that is done as well now we may continue our example so we have printed the the encrypted strings now we’re going to uninitialize so we do Arc for un init on the ark for pointer then we repeat some of the steps like before so let’s copy this part there we go [Music] go and let’s create another one of these CED so I will copy this part for okay something like this and let’s put the arrow one two one two like this instead okay so we initialize [Music] and we need to change the order of these because we need to decrypt this first so it’s initialized now we will create our decrypted so decrypted equals and we will use the decrypt function but but as you know it’s the same the only thing we’re going to change is the from here we have the cleare text before now we will do the cipher text which we get from this encrypted call so where were we decrypted equals and this should be encrypted and everything else is the same and this should be decrypted as [Music] well and then we don’t need to print the binary okay so if we have done everything correct then [Music] the encrypted the decrypted text should be the exactly the same as what we had from the beginning so we take the text we encrypt it and we decrypt it back to the start so let’s see okay let’s save and we make clean jump down we clear and we do make okay not a lot of errors and warnings let’s start from the beginning error T undefined size plus T text 54 in Arc for. [Music] C 54 Cypher text size + t + 1 should be plus one okay we got more errors let’s do make clean first make okay warning this four clause does not guard 4 x = z while X is less than size x ++ x = z x is less than size X ++ which shouldn’t be a problem this St doesn’t guard this statement return CER but the ladder is misleadingly indented okay so it even checks my indentation thing but sometimes that’s good actually I have corrected errors in the past because of that so let’s see what it [Music] says okay it’s this part let’s move it here we make clean we go down and we clear and we make again okay passing argument one of Crypt from incompatible pointer type Arc for encrypt from okay let’s see Arc for encrypt from encrypted equals Arc for encrypt from and from is set to this okay we probably need to type cast this down but it worked before right never mind in int 8 star let’s do it like that do we have any more occurrences so the same decrypted no okay let’s try again make clean and make all for encrypt from incompatible pointer type encrypted equals uh wait a second I forgot to attach the structure right we did change the signature of that function so where were we look cryp the first argument should be the arc for like this and same with the decrypt so Arc 4 and we need to add a variable to the macro as well so XY [Music] Z XY Z like so let’s try again make clean clear and we make and we have this sness problem again so encrypted equals AR for encrypt AR for encryp so let’s see encrypted how did we declare encrypted okay let’s move this to its own instead decrypted decrypted as well I think so in eight encrypted decrypted we make clean and we clear and we make okay almost there another okay that’s our temporary assignment we don’t even need that anymore so let’s just remove this part and this as well save make clean clear and we make okay it compiled let’s see what happens okay initializing encryption done and then then it shows the string that we want to encrypt and it shows the hexad desmal version of the encrypted text then we reinitialize we feed it with the cipher text and we end up with the same string as we had from the beginning so everything works the only thing we should add to this that is the remember when I talked about the that some people think that the arc for encryption is not safe one of the biggest concerns was that the first like thousands of or millions of uh bites is um not good enough so to speak so we need when we initialize we need to like I call it to White Wash we need to whitewash away the first like 50 or 500 million [Music] um of these yeah so let’s go into our encryption function no our initialization function this one and I want to create an M32 which I’m going to use as a well I’m going to use it for a for Loop basically I don’t really want to call it I because that makes it interchangeable with this Pi so let’s just call this C for count n for number and is good and let’s go into the let’s see Arc for and we create a macro for this so we Define arc for white wash and we need a we don’t need an argument actually and what we’re going to do if by the way we do need an argument let’s take the variable for the loop as an argument so the only thing this will do is a for Loop where we go from X = Z while X is less than um let’s call it white wash Cod or what was let’s call it m so this these are millions of iterations so X is less than Ms * 1 1 2 3 1 2 3 and i++ and the only thing we need to do is okay we need one argument more the only thing we’re going to do let’s do it on the next slide uh we will call Arc for B f with the structure or pointer of the structure as an argument so basically that we will call this which it will generate a a bite and each time it Loops it will do that but we’re not going to do anything with that bite because all we need to do is get it had in the well in the state so to speak but if we do it like this then GCC will recognize that it’s redundant and it will as part of the optimization it will just remove this so we will need to typ cast this to something called volatile in8 like so and that basically means in this context that GCC should not uh optimize it okay so let’s put this as part of our initialization so when we are done with the rest of the initialization steps at the end here we will simply call The Ark for white wash and specify our variable for the iterations and the name of our structure which is p like this okay and if this works we should see that it takes uh longer when we run this initialization a couple of seconds uh we also need to define the M’s so how many million iterations should we have and I want five 100 million think that ought to do it if you think it takes too long when you run this try changing this to 250 or 100 because I have a quite fast CPU so this should go quite fast and we save everything and hopefully we haven’t introduced any additional errors make clean and we clear and we make yes we did okay what does it say okay i++ that’s [Music] wrong where were we here so it should say x++ right all right let’s try it again clean down bit and we clear and we make it compile let’s run it initializing and as you can see it takes a couple of steps and then it does the same as it did before only this time it’s probably safe as long as we have a really good uh encryption key which we don’t at the moment at the moment we only have in this example at least we only have the the word Tomatoes we should randomize a 20 48 bits key if we were to use this in the wild but everything works exactly as we intended it to so we have successfully implemented the arc for uh crypto and we have turned it into our own our very own uh Library which can be shared between different applications and when I create um a project for transferring and encrypting files I will use this library for that so then I will show you how to how to use this like library in your code but I hope you enjoyed this and don’t forget to subscribe if you like this and want to see more there is a lot of uh Advanced to see videos coming forward so don’t miss out and stay tuned thanks for watching and thanks for today [Music] the first thing I would want to do before we start with actual encryption tool is we need to install the uh the library so how do we install our own Library well let’s go into our uh directory and let’s alter our make file a little bit so if you remember the ultimate Target of this make file is to create this Arc for.so however I’m going to rename it to lib Arc for so because it will be easier to uh use it if it has the correct naming standard I will also have to check what the correct Library directory is before it was always user lib but now at least on my 64bit Linux system it is this one so you need to add this x86 Etc so let’s grab this and um we also need the include directory but that’s just user include as usual I think us include yeah so let’s create two variables one which is going to be the ink deer and I will put user include that’s where we put the H files and then lib D that’s where we put the library file so when we have compiled lib Arc for.so then we will copy lib Arc for.so to the let’s see the uh lib deer and we’re going to copy The Arc for. to our ink there like so and then we’re going to run the command LD config which will update all the configuration files necessary for the library to work okay let’s try it and we need to run this as rout because we don’t have right permission to that directory so let’s begin by doing make clean and okay by the way it will be better if we create a new Target which we’ll call install and let’s grab these three lines and put them here instead so in this Arc for we compile the actual library and then we do make install as its own command to install it uh so make clean let me just clear so make clean and then make and finally Soo make install okay no errors so let’s go to the directory for today’s program I’m going to call it um f see and I’m not going to tell what the fs stands for but the E stands for encrypt and that’s because I don’t want to spoil what the ultimate end with this project is and I’m going to tell that in a later episode so let’s create a test file test. C and we will include just the standard iio and we’re going to [Music] include we going to include our own arc for. H and we use these angle brackets because now it is installed globally on the system and then I’m going to just create an empty main which return zero so basically I just want to see if it compiles um okay we need to let let’s run one of the functions in that Library so what do we have we have AR let me just let check so more youer include AR four [Music] so let’s do Arc for init it takes [Music] the the key and the size of the key that’s right so Arc no Arc for init and a key and the size of the key invitees so five this should work and let’s cast this to a volatile so let’s cast this to volatile uh Arc for pointer and that’s basically just so the compiler won’t simply ignore this line because we don’t do anything with return value okay so then then we first compile it with the dash C so test. C and we get the object file and now when we’re going to link we do GCC test. o o text and we uh if we don’t add anything else we get the error that it doesn’t find Arc for in it but this is globally installed on the system so all we need to do is add- L Arc 4 and it compiles and run great so so now we have installed our uh Library okay guys uh let’s end there for today and we will continue this uh project uh another day don’t forget to like And subscribe and thanks for watching and thanks for today sup guys welcome to Today’s Show today we are going to answer this question y 755 you have probably sometime used the command change modk 755 and the name of a file or directory but what does this 755 mean in the detail this and more we’re going to talk about today when we are discussing Linux file system [Music] security and this topic will be divided into the following different things we are going to talk about file permissions uh and that also is applicative to uh directories uh and it’s a huge part of the Linux and Unix security we will also discuss the different targets that you can set these permissions for and uh we will also discuss the change mode command in detail how to use it and if we have time left I will also mention the change own uh command plus I will be teaching how to view permissions as well so let’s start with the different permissions that are available on a Unix and Linux system so first and foremost we have read and read is what it sounds like if you have the read permission on the file you can open the file and read its file contents if you have read permission on a directory you may list the contents of that directory all the file names so read has the character flag of R and that is important when it comes to the configuring of permissions using the change mod command and also while viewing the permissions but there is also a numeric representation of that uh R flag so for the read permission that is number four and there is also a binary representation but I’ll get back to that in a little while then we have the right permissions and that is a w as a flag and number two in the numeric representation so what is the right permission well if you have the right permissions on a file you may edit the file alter the file contents and save the file you may also delete the file and uh if you have the right permission on a directory you can do basically anything almost you may uh delete files you may create files rename files but there is also a third very important permission which is called AIS and that has an X in the flag representation and a number one in the numeric representation so what does access mean read and write permissions are quite similar for directories and for files but access differs quite a lot so if you have the access permission for a directory you may enter that directory you may access the directory so basically it means you can CD into the directory uh if you only have the access and not the read you may not do LS and show the contents of that directory but you may access it and you may go to sub folders if you know the name of them and if you have the access permission on a file on the other hand that means that you may execute that file so executing a file that’s basically when you run a script or when you start a program so for example the LS command is a program if you have the X flag you can you may run the ls command otherwise you will get a error message saying permission denied so that is basically it when it comes to permissions but I also want to talk a little bit about their binary representation so let me just scroll a little bit okay so why are we talking about binary that is because I want you to understand how this system is constructed it’s a very very intelligent system which are based on those flags so this kind of flag system is not only used for permissions it’s used for a lot of different things in the Linux operating system but also in a lot of lowlevel code like C programming and stuff and you will soon understand why okay so if we convert the number uh one to Binary with four digits we will get 0 0 0 1 okay if we convert the two we will get 0 0 1 0 and notice that we don’t have a three we have a one we have a two and we have a four why is that well if we convert the four to Binary then we get 0 1 0 0 so a pattern emerges what we can do is we dra draw a line right here and right here and then we see that all those ones are in different columns uh which means that we can combine them as we would like so let’s say we we want to combine the read and the write permission that would be the number four plus the number two = 6 so if we give the number six when we configure uh the permissions it will set both these two flags and if uh you use the ls command to check the permissions then it only needs this six because if you look at these three numbers 1 2 and four the only way to produce a six is by using the four and the two and that is true for all possible combinations of these values as we can see here the ones are in their own column so if we set this or if we set this or this it won’t alter these ones and what is it that mean well it means that with one single integer we can basically store as many flags as we would like at least up to 4.3 billion or whatever and we can store all possible combinations of these flags as well in one single integer and that is a very very powerful way of storing data okay the next thing we’re going to talk about is the targets and the output of the ls command and let’s start by talking a little bit about the targets because we have these permissions read write access but who do we give the permissions what do we set it on well we have for every file and every directory we have three different Alternatives we have the owner and that is also called the user we have something that is called group and we have other and these are kind of self-explanatory the user or the owner that is the owner of the file basically so if you have created a file in your home directory for example then you are the user or the owner and uh that means that you’re allowed to change the permissions if remove all the permissions then you cannot open the file but you may give yourself read write access and then open the file can also delete the file and stuff like that so for you you need to decide for every file in every directory if the owner should have read or write or access or any combination of the three and same goes along for this group so every user on a Linux system is a member of at least one group but possibly several so basically the administrator the root on the system May create the those uh groups and you can be a part of one group or you can be a part of uh thousands and you can be part of named groups or simply a numeric representation if you set permissions for a specific group then you have endless possibilities because if you just have these three different levels the owner the group and other other is just applicative to those who are not the owner and not the member of any group so it’s a very simple uh system with small building blocks but you can create really powerful things with it and we are going to talk a little bit about the flags of these targets as well so let me just put them down here again so the user is the official name for this owner of the file so I will call it user from now on but sometimes it it’s being called the owner as well and then then we have group and we have other so it’s very easy to remember those flags because the user has a u the group has a g and the other has an o so when you set the permissions you have the possibility of using these Flags to specify the target but there is also a combination of all these which is the a flag and that basically stands for all so it Alters all these three targets and sets the permiss permissions you specify okay what else well you may also use combinations of these so if you want to set for the user and the group you just do U or other group OG so AC a system but kind of simple to use anyway uh another thing I’m going to do is I’m going to color these different uh targets so the user will be yellow in this example the group will be green and the other will be purple or possibly pink and and then I’m going to zoom out a little bit so we may see everything here okay so if you do the regular LS command then you will uh only see the names of the file by default unless you have changed the default settings by an alias or similar but if you do like it’s shown here ls- A L and this is an L A small L not one so ls- a then you get one line per file or direct directory and you get some additional information like the day it was altered and the the the size of the file uh and stuff like that and then we have the names to the right but the thing that is interesting in this example are these right here so perhaps you have seen this before but haven’t given it much thought these are the different permissions and it might if you look if if you’re not familiar with this it might be difficult to make sense of this because it’s just a lot of different characters and you may not see any pattern here but let me do this if I take my Jello pencil and I highlight this part and I’ll take my green and I’ll highlight this and finally I will take my purple or pink and highlight this and then I will zoom out a little bit again do you see now so in this example if we look at the first uh the first uh file or directory the ETC then in yellow we see the users permissions that’s always displayed first so the user has read right access and uh the next one is the group and as you can see there is read and there is access but there’s only a dash in the place of the right so this means read access but not right and same for the other at the end here and if we look at the next line there is the same uh format but this time there is read write for the user and read for the other two then additionally we have this lone lonely d right here uh and that only means that this is a directory and often you will uh be able to identify that because there’s a either a zero on the size or a or the same number for every directory plus you can see this slash at the end in some implementations and configurations of the ls command okay and about targets now we’re coming to the last part of this uh episode change mode change mode is the command for altering permissions on a Unix and Linux system and you do change mode and then something and then the file name like test.txt but what do you type in the middle right here well let’s say we want to give those permissions for the files that we see right here so read write for the owner and read for the other two then we have uh a couple of options we may construct a string which looks like this U equals read write group other equals read so if you put this string in the middle here then you will get those permissions that’s one way another way is to give all the read permission and then the user will add the right permission so this is a plus u+ W so there is the a lot of possible ways to define those groups if you just do if you leave out the A and the U Etc and just do plus read right then it applies to all three groups and you can also do a equals nothing to remove all the permissions I do that sometimes so I run this command and then I specify like group plus r or something like this okay that is one way which is good to use when you are setting permissions that is not very common but if you are changing similar permissions like often there are there is an easier way and that is using numbers so now we come to this 7 five five stuff what does 755 mean well the first number is user this is the group and this is other and if we go back to the first is slide right here if we combine the four and the two and the one then we get a seven which means that seven is read right Axis and the five well there’s only one way to construct the five and that is one and four of course so read and access that is five so this command means that the user will have read write group other will have no the user will have read write access and the group and other will have read and access that’s correct so 755 is something you use a lot because you want to give access to directories and er run permissions for scripts and uh programs and another one which is very common is the 644 that means us sir read right group other read that is usually what a regular file will have will have by default the directories most commonly have the 755 by default and finally another number which I use often on home directories is 700 which means I am the only one with any permissions to even access my home directory what have we learned to today you have learned about Linux file system security that there are three parts to it the file permissions targets and the change mode command let me say a couple of words about the change own by the way as you might have guessed the change own command changes the owner of a specific file so let’s say there is a user called user 5 and you want to give them the ownership of a directory then you do change own us Sur five and then the directory like Etc or whatever if if you want to give a specific group as well then you add a colon and then you type the name of the group so if you have a group called users you will type user five colon users today you have also learned about the read and write and access permissions and uh they flag and numeric and binary representation and what how you can make use of all of these combine them in infinite ways you have learned how to use the ls command to check the permissions and what these different characters mean you have also learned about the three targets the user the group and the other which uh you are able to set permissions for for any file or directory in the system and finally you have learned the change mod and the change own commands which changes the file and directory permissions and the owner respectively okay guys this was a new format using my I P to draw those things I think this is a good format for these kind of videos uh let me know what you think in the comments and uh more c videos are coming up so please subscribe by clicking the little little red button on the bottom right on your screen if you want to Subs subscribe and uh thanks for watching and thanks for today okay so how will our file uh encryptor work well we’re going to create an out file which consists of the first two bytes is a random number between 1 and 65,536 then we will have some padding so if we have the random number 500 then 500 bytes of random bites will follow then we have a 100 a 256bit hash value which will be our hashed uh password or or hashed encryption key that’s so we have an ability to check if we have supplied the correct password or not and then after that all the contents of the file and all of this will also be encrypted using the same key as is hidden in the Sha hash and if you want to know how this works and why I need to do all of this and I have recorded a special episode just for that which I will also link to in the description okay so let’s start [Music] coding as usual I’m going to start by defining the main so I know what functions I need and where when to do them Etc and then I will start filling out the those empty shells with real functions I call it a function signature driven software design okay so let’s include SD IO and all the other ones that I let’s put that in the H by the way so we’ll simply include FS e do H and inside of here we I will put all my regular include files perhaps we won’t be needing all of them and then we can remove them later on but this way we don’t need to pause all the time by looking at and finding these include files string.h and finally we also need our very own arc for. H and let’s create a sign signature for our main in and Char double star like so so how do we want to structure this well we’re obvious is obviously going to need a an arc for instance and we are going to need a key an in file and an out file so sh or let’s use our our own integers so int [Music] 8 let’s make it easy we can convert to our own when we need it so Char and what did I [Music] need in file and out f and we’re also going to need an INF FD and an out FD so that’s a file descriptor that we get from the open Cisco and we’re going to need an int8 for our [Music] key and then we need a couple of sizes at least we need the size of the key so let’s do an in 16 key size like that okay so if r c is less than how many do we need one two is less than three then we’re going to print to standard error and tell that the usage of our binary file is in out and the first is arv and that’s all there we go I hope it the text size isn’t too too small for you and then we’re simply going to return mine as well and now that we have enough arguments we can assign our in file to rv1 and now out file to RV two little bit easier to handle so we don’t have to remember which these are next step is asking for the key or or let’s open the file in file first because because we want to abor early if we don’t if we’re not able to do that so in FD equals open and we’re going to supply the INF file and we’re going to do read [Music] only like this and if infile is less than one F print f stt unable to no let’s not let’s just do print error open and return minus one okay so now the in file is open let’s do the same with the out file by the way so out FD equals open because the file may already exist with the wrong permissions or be badly formatted Etc so let’s open both out file and this is O right only and we also need all create so we create uh the file if it’s not there already and we also need permissions for the file and that’ll be 0 0 600 so only our user will be able to read and write that file and if this open operation fails then FD will be the less than one and in that case we want to close our [Music] NFD and then we’ll do the same as before let this okay so now both our files are open let’s read the key so [Music] key Let’s see we need to have a function which reads both the key and the size of the key right but since we are reading the input from the keyboard we can just do a string length on it we need to improve this when we do our much more secure version in the future sometime okay so key equals read key and uh maybe we’ll Supply some kind of a [Music] prompt key like so and in this case I will do an insert so we also need to include all the sech stuff and that is basically two things we need to [Music] include insert. H and we need to Define G Source if we don’t Define the new source course the assert uh function will still work but another function which is assert P error will not but if we have that definition at the top of our H file everything will work perfectly fine okay let’s see in 6 no the it should be an int8 pointer which we called read key [Music] and in8 here as [Music] well so we need to basically read the key from the keyboard and um uh don’t Echo the characters to the screen so let’s see we’ll wait a little bit with that we’re going to set our what did we call the [Music] key key size key size will be equal to the int [Music] 16 of string length key well let’s do Char like so and then we can change our key to in8 okay so we have read the key next step is to start reading from the uh standard no the next thing is to start writing to the file and the first thing is those two byes of the padding length which will be completely random using a secure Rand function so we need that secure Rand function so let [Music] us let’s create an in8 Let’s see we need to have let’s do in6 and we will call it [Music] the padding length pad size and the actual padding will be stored inside of that in 16 right yes and we need an INT 8 array for the um actual padding bites like so so basically we will do something like pad size or pad size equals [Music] secure round and we need two btes something like that P size [Music] I’m not sure if that’s the best way though it’s a little tricky to store these kinds of data well how do we store it because we’re going to need it for an in6 like this but also for a long string of characters I think we’ll do two different variables this must be the easiest way so let’s say we have an INT 16 called pad size 16 and we also have an INT 8 which is the pad size [Music] eight that should be it so pad size 8 will be equal to this and pad size 16 will be able will be equal to let’s see we need pad size eight D referenced so let’s have um it’s a lot of variables for the same thing this can probably be done much better but I don’t care right now I just need something that works works so pad SI 16 equals the in 16 version of pad size 8 and the actual pad size will be pad size 16 the referenced that should be it right think we need to print this out to see if it really works P size perent [Music] d and this will be the in of pad size this is a lot of different conversions well let’s see if that works um right okay so the only thing is we have the opening of files this is commented out and then we have this so then we can start with this a secure run thing yeah let’s do that close [Music] NFD close alt FD free pad size eight return zero like so okay so how do we create a secure a cryptographically secure function for generating random random numbers there is actually a system call which is [Music] called if we go into the U random I think there should be yeah get random and that is a system Co so basically it returns the size of a buffer of a specific size so if we say that we need eight bytes of random data we get that perhaps or we get less that depends on the entropy pool so basically the the this function uses a lot of different signals like what has occurred since the computer booted up all of different things it puts in a a big pool which is called the Anri pool so you can only create a finite uh amount of these random bites between all all the the whole system and when you run out of entropy you have we just have to wait so you can call this function with two different flags first we’re going to call it with give us all that you have and exit if you don’t have enough and uh if we don’t get all the BS then we will call it again but we will put a message to the user that this may take longer than usual and then we’ll call it without flag well the alternative is that we don’t use a cryptographically a secure version of this and I want it to be un Hackle so this is the stuff we’re going to use this random which means that it doesn’t use a pseudo random function which is not good enough for cryptography so we need to supply the random and then it relies on the ENT trippy pool and basically we will let it be nonblock the first time around and uh the second time without the non block is says Pi so uh size return value and we have the buff and the [Music] size and I think we can supply a Nole buffer to get it on the Heap or perhaps not never mind let’s allocate that ourselves and where is this CIS random. so let’s go into our H file and include sis random. and let’s see this will return in 8 array and we called it secure round and we just need to send number of bytes let’s do in 16 and let’s create this function so int8 array and secure round we will have an n16 size and we need to have an in8 pointer let’s start by checking the size length so we need to assert that size is bigger [Music] than zero [Music] and yeah that’s basically it P will be equal to and in 8 my of size byes we will assert [Music] P or by the way let’s not assert P if yeah let’s a SE p if we run out of memory so Malu will start to fail everything will fail anyway so okay so now we have our buffer we need something that catches the return [Music] value size [Music] and will be equal to get Rand get random and it will be P perhaps we need to no we probably don’t need to type test that and and then the number of bites that size maybe we need to type cast this to a size T and we need the flags right so this and then we have the same but non block so we need it to be random and we need to be non blow so this may return let’s do if n equals size then everything is okay and we can return p and if n is less than zero something has gone wrong and we need to return zero else it means that we did not get enough bytes which means we have to run this again so we do F print F STD L warning pool is empty this may take longer than usual something like that and then we call it again n equal get random and this time we need to Incas incase pointer p+ = n so we will supply p and this time this value will be size minus the N bytes that we have already gotten right and we need to supply the gr R [Music] ND uh random but not non block there we go and if n equals sides [Music] return we need to D allocate by the way and yeah then we need to save a copy we can’t free it if we have jumped it around well we can just jump it back that’s better actually no we don’t need no how many B okay let’s do it this way no hesitation so if n equals size then we return start if n is less than zero then we will free start and return zero and in all other cases it has failed again so we can simply do else here instead and this should be our function so if we call it with two bytes like this and everything is okay we should get different result each time let’s see if this even compiles nope but when does it ever first time in main second argument of main should be sh star star what did I do ah forgot one star we can’t make the main a single star there we go one G couple more to go right open did you mean pop po p open no I did not me me P open that’s a library called for nbes let’s see open what do we need man two open what do we need Okay so let’s include this FC and whatever if INF file is less than one comparison between pointer and integer in file uh where is it if in file if in [Music] FD in [Music] FD alt FD this one was right inate padding unus us variable key size set but not used warning unused variable but it’s compiled so let’s see what happens [Music] F yeah we need to mock these files let’s just touch in file and let’s do FC in file out file 45 938 40 950 yeah this works perfectly well great okay guys let’s create the read key function which will be a quite simple function it’s going to read the key from the keyboard and uh the only thing we have to make sure is that we don’t Echo the characters to the screen so the only thing we’re going to have right here is a prompt and what do we need we need a buffer represented by a pointer so so let’s see we’re going to return an int8 so let’s make this an int8 pointer and we’re going to Let’s see we need a temporary buffer on the stack because we don’t really know how many characters to allocate so let’s let’s say let’s do unsigned Char no let’s do Char and let’s say we have a Max limit of 20 48 bytes or that’s a bit much perhaps because the biggest size uh in a 24 the 8bit encryption system is 256 okay so let’s make it 25 five no 256 because as you know this isn’t the index this is the number of um chars that we want to allocate so counting the zero it’s 256 okay so let’s begin by write writing the naive version of it that Echoes to the screen and then we will simply uh fix that after words so how do we do with this we don’t have to make it so difficult let’s just begin mem setting shouldn’t call this AR buff we’re going to M set the buffer with 0 256 of those then we are going to to read from standard in standard out standard from standard input into our buffer and we have to no we don’t have to cast that and we’re going to read a maximum of 255 so we have room for the ending zero as well okay so now we have read one line we need to remove the ending new line from the input as well and we’re going to need an in for our Let’s do let’s do an in32 for our length know why should we do as big as that an in h right so size and we’ll simply just call string length on the input and then we will let’s see if we have AB b c d that’s the length of four and the indices will be 0 1 2 three and if we have a new line at the end this would be index 4 and the size will be five so let’s do an index as well and index will be the size minus one so let’s do let’s Point our pointer towards uh buff plus uh index and let’s zero that out like [Music] so and then we will allocate our buffer so this will be an in Mal size and if my look fails everything will [Music] fail and if it works we will simply copy our [Music] string to p and from buff and the size will [Music] be size right or maybe minus one by the way just to make room for everything um okay let’s remove this and did I forget anything yes we need to type cast a little bit so the size is an in8 so we need to make this in8 no right an in8 like this and we need to send the bu we can send the buffer as he is read buff no set buff take my look going to string copy to P from buff I think this will work right perhaps we need to cast this one and then we’ll simply return P we also want to print our um prompt let’s not forget about that so let’s do um print F and then our prompt and the space and we get the prompt right here and then we need to flush the buffer because we are not ending the printf line with the new line so we need to flush it manually standard out like so and here is our first version of that code did we create our uh yes but we didn’t make this an int8 this should be a Char okay so let’s let’s try it out without the echo with the Echo and where are we key equals read key thir key yeah let’s try it so [Music] make okay what is it differ in signedness P = buff plus index so it’s this line so P equals buff which is a Char so we need to do in a star plus index don’t think that will be a problem and PS let’s try it out okay we got a got a binary yeah okay so let’s try it out infile out file key AB c d uh we still have that pad size thing we can remove that but it seems to work okay guys uh let’s end there for today and we will continue this uh project another day don’t forget to like And subscribe and thanks for watching and thanks for today [Music] let’s that so print the PAD size let’s just delete that okay okay guys so now that we have our key retrieval function we will need to improve it a little bit and remove the echo of the keyboard characters from the screen so in order to do do that we need to use a function and that is located in an in a header file which is called the termal uh dot h and let me see if there are any examples let’s see okay so there doesn’t seem to be any examples but what we need to do is first because they’re in a terminal there are a couple of options that defines how the terminal should work so we need to do two function calls we need to retrieve the uh current options of your terminal uh then we need to alter one of the flags to remove the Echo and then we will uh do another call to change the flags so that’s how we talk hle the Echo and then we will just call our own function twice once for removing the Echo and once for uh getting the echo back so let’s see let’s begin by importing that H [Music] file it is called termal Doh we also need to create a function let it be a void function that we can call toggle Echo and we don’t really need [Music] any parameters like so so if the echo is enabled we remove it and if it is disabled we put it back uh perhaps we [Music] should yeah this will be easier let’s do a change Echo instead and then we will take a [Music] bull which will say if the echo should be enabled or disabled so we need to include the stdb as well like so so let’s write the function and this will be a void function that we call change Echo and we’ll have a bull enabled like this okay so the next step is we need to create a structure an instance of a structure uh for this kind of stuff and let let me see which one it is uh we’re going to use these two functions which means we need a struct terminals [Music] so let’s see and I closed the window let’s go into our directory it is called FS right no it’s inside temp FSE there we go okay so first I need to reset the home directory like that and we need a stct terminals T and let’s allocate some memory for it t equals stct [Music] terminal size of stct terminals like so let’s copy both of these function signatures to make it a little bit easier to to use them so first we call this get attribute so TC get attribute and the FD follows the same logic as standard in standard out standard error so this should be zero get attribute and then we have the T and that’s basically it perhaps we need to send a reference to the T let’s see if it works or not and let’s see what flag we need to alter I think it’s called Echo there’s a couple of them I think we just do the the echo okay so we need to do a binary operation so basically T is equal to no T the reference is equal to Let’s see we need to do um we need to remove a flag so we will do a logical and operation and that might seem a little bit in nonintuitive but basically if we have X and Y and we let one of them be zero then this will be zero as well if we use the uh or it would still be one so we remove Echo and now now way to we need to do an if first so if enabled then we’re going to add the flag no if it is enabled we’re going to remove it like we did and if it’s if it is disabled we want to enable it or what is most intuitive perhaps we should treat this enabl as if it should be enabled or not so if it should be enabled then we should do the or operation and remove the echo else we do the and operation and then we basically do the other one TC set attribute and we give the file descriptor in optional actions I think we can do the zero there and and then we need to give the structure construct terminals terminals yeah and that’s it so let’s see if this works in our not this one in our read key we will send the prompt then we going to do change Echo and we want to remove the Echo and then we will do it again change Echo and this time we want it to be enabled are true should be false up there right okay let’s see what [Music] happens make okay invalid upun to Binary or yes of course we don’t do it on the the whole structure we need to do it on one of the uh Fields inside that structure so let’s see which it is uh input modes output modes control modes so should either be the could be any one of these let’s see if we search for Echo and we go upwards to the headline C flag flag constraint constants okay so the same flags are for all of these or what did it say C flag okay let’s try it on the C flag it’s tough to remember all of these different functions that you only use once every couple of years let’s see where were we here so this looks right but we’re going to do T C flag and T C flag like so oh not TC flag it should be C flag only so right c c flag all a pointer we need the arrow not the dots let’s try it again TC UND declared T C flag okay now what invalid type argument un star have TC flag F AKA unsigned [Music] in well we should should probably not do reference that word where are we let’s do it like this okay so now we only have one error left has no member named C flag uh it’s tough to get this right huh it should be C FL see FL right let’s double check this time c i flag CC flag let’s copy this instead so remove the whole thing paste this in remove the whole thing paste this in this time I’m feeling lucky okay let’s try out we have infile we’ll have out okay didn’t really work Why didn’t it work perhaps it’s because of this zero or maybe they want us to do this on the standard out because logically it could really be either one right [Music] so make let me try it [Music] again nope Let’s do an S Trace it runs the command so let’s see the first time where is the first time here we get the flags and it has the echo then then we set the flags and do we have the echo no well yes it’s still there what is that let’s see [Music] so oh I forgot to free that one as well but that’s not the cause of the error let’s see so we get the flags if enabl and it’s should be [Music] false the first time read key change Echo false yes so so T see oh I mixed them didn’t I if it should be enabled we or if it should be disabled we end okay so let’s put this this way instead and let’s go back to the [Music] zero let’s try it again in file out file no let’s try it on standard out then so [Music] one one [Music] perhaps we shouldn’t do it on the C flag the other one what what did it say one has to do with input and one has to do with output input modes output mode is this an input mode or an output mode an echo well it’s both well let’s try it with an i input mode on the standard input so I flag and I flag if it should be enabled we add no we had this right the first time and we want to do it on the standard input the standard input okay something happened I can’t press enter anymore that’s pretty weird so we did change it somehow but not really the way I intended so let’s do the let’s just try one thing if we do one here and we do it on the I [Music] flag same thing so let’s do the I flag on [Music] the [Music] zero no for okay so get attributes file standard input okay so now I looked it up we should do it on the standard input as we thought but we should do it on the L flag so let’s try it [Music] again in file out file okay that’s bit weird no that’s not right either okay guys uh let’s end there for today and we will continue this uh project uh another day don’t forget to like And subscribe and thanks for watching and thanks for today [Music] sup guys welcome to Today’s Show today we are going to code a a safe string library and what is a safe string library and what why is it needed well if we let me show you an example so let’s say we have a main and I’m not going to do any error checking now so I will simply take the argument If This Were production code I would of course do a check so we don’t oh so we so we don’t access U parameters and command line arguments that’s not there uh let’s create a string let’s call it St uh and let it be eight in size and then we will create let’s do just a Char pointer and I will let it be equal to hello like this and I will include two files standard IO and the string Library like so okay so I want to put this uh P string into the Str Str variable so then I use string copy and the target is s Str and the source is p so this will copy the contents of P IE this hello and put it into our Str Str and then I will simply print F this Str Str like so and return zero okay let’s compile this and we run it no problem there [Music] right let’s oh sorry I’m going to use Nal today so you get a syntax highlighting uh okay so let’s instead well let me do like this if RC is less than two return minus one just a simple check and we’re going to take one argument from the standard input so instead of doing P equal hello I’m going to do p equal rv1 so we take the first command line uh argument we compile again and if we run it without any AR nothing happens what if we were to do the hello string again then it chose but what if we were to do something bigger than eight like this segmentation fault the program crashes why does this happen well these variables are placed on a stack if we and we don’t we only have room for eight characters in this variable so if we copy a lot of those with a string copy it will start to overflow the stack so basically it may over write variables in this case though the S strr is on the top of the stack so it will start uh overwriting other things like return addresses and saved stack pointers and other important stuff which basically means that the program will will not know how to how to return from this function and it will jump into some memory address which is not right and it will crash so a lot of when you’re dealing with strings a lot of the work is to make sure this doesn’t happen one possible solution to this is that instead of using the string copy like this you add an n in the middle so string n copy because then you can add a third argument which is uh the biggest number of characters to copy so if I put seven in here it can never copy more than seven characters so let’s try this again hello still works and if we do this now it will only do the first couple of characters and then exit without an error so if it’s this easy to fix this problem why bother with it why make a video about save string Library well this is only one example A lot of the times you don’t use functions like this you edit the strings yourself or what if you need to read all the lines in a file for example and put it inside of a string variable how would you do that you need to allocate and reallocate memory so you have the correct amount of memory all the time so it’s it’s not that straightforward to create a safe library for this okay so my plan is to make something that will work like this so let’s let’s remove stuff in here so I want to do something like this I want to create a string so this is my own uh variable and I will initialize Str Str with some initialization function like let’s call it in it and and it will take what will it take it will take a string to begin with so the first first string to put inside of this Str Str variable let’s say hello like so and I will not use any uh numbers so nothing like this that will only need five characters Etc I want to make this a library as easy to use as possible and what we wanted to add like hello the word there so it’s hello there then we can use a concatenation function so we just provide the string a variable name and then what we want to add to that uh string so let’s say uh there and then it will automatically take care of allocating the memory necessary in order to add this to the string and and if we want to print this string to the screen we can do this by just referencing uh let’s say well let’s call it fold and then we just give Str Str and it will will print the contents to the screen and then we only need some kind of um un initialization function so let’s say un init Str Str so we can easily use this conat inside of a loop and read an entire file it can be a very big file gigabytes or even larger and it will put it inside of this string construction that is the plan anyhow let’s see if we manage to do this I’m going to clean up a little bit here and create a simple make file so what do we need we’re going to have a file called Save St str. o which depends on Save S.C and we want to compile it using let’s see dollar roof or carrot or I’m not sure what how to pronounce it this means the source the C file in this case and this means the target the O and we’re going to do d c and yeah let’s not over complicate stuff that’s good and then we will have the safe string s o which depends on safe stram do o and then we will run CC and the source d o and this will be the [Music] Target and now we need a couple of options and I don’t have them in my head right now so I will use a variable which I call options which I will put some content into later on and when we do all I want to First clean and then make a safe St Str doso and finally I will put in the clean which will remove all the dot o files and the dot s f so something like this so if I just do touch and um let’s [Music] see save S.C I should be able to do make and it creates the we do get an error here but that’s only because we we have empty files this far make clean and it’s gone we also need a save st. H and I’m going to create a new window I’m going to go into code and save string I’m going to create set my home directory to this directory and then here I’m going to open the H file and in V save s str. h Save St Ag and then here I’m just going to open the cile so save s str. CC and we going to include our save s str. h like so and as usual I will Begin by defining my main so we’ll see what I want this to do so let’s create a string which we’ll call Str we’re going to initialize it like before using an init function which we hasn’t made yet and we will put in hello and then we want to concatenate yes are with the word there and yeah let’s do something like that to begin with anyway and then we want to un it St Str and in between we want to print it so print F perc s [Music] and fold St Str turn Z okay so this is basically what we want to achieve okay the first thing I’m going to do is include a couple of libraries just the standard ones so [Music] un htd H [Music] and this STD lib Ed include s. this is quite new by the way you might have to install the latest part of GCC if you want this so This adds native support for booleans [Music] H and I usually include string. H but I’m going to wait a little bit my hope is that I don’t need that and I can re write my own functions for that instead however I do need assert because I don’t want to worry too much with it error handling when I’m doing a video and I also need to do a definition for g source and that is so I get the function assert P error so basically this one function is inside of this file but it won’t be defined unless you define this one and it’s basically a combination of theed function and the P error the print error function which is quite nice I think but then you also need to include the r no number that H like so okay so let’s define our structure our string structure so I’ll call it s string and what do we need inside of this well we need some kind of a counter with so we know how many bytes of contents we have in our structure so let’s make this in unide in and we can call it count and we do also need the buffer the the actual string and this can be done a couple of different ways I could Define it as a Char pointer like this and then I allocate memory to this one but an even cooler way I think is to use a new function in later C versions that you can create a you can create a sh array basically string like uh what we going to call it data and usually you do something like this so you put like 64 so it will have 64 byes in it but if you put a zero in there then you define the variable but you don’t create any space for it which means that you can only do this at the end of the structure so this entire structure will be variable length and we can just increase and decrease the entire structure when we need to handle uh the strings which is kind of nifty I think okay and I will type def this instruct s string to string with capital S I will also create a couple of function definitions we have a main with an I’m not sure if I going to take any arguments but let’s put them here to begin with anyway and what else did we say we want an init function and that in it function will take a string an initial string and we want to return the pointer to a string so our own structure like so and then we want a concatenate function which will take a string pointer and another string and this will return a bull if it was successful or not and we also need an un initialization function but for the time being I think I’m going to do a Mac perhaps I need more intricate uh functionality later on so I’ll change that but for now I will just do this unit X will be 3 x like so so let’s start by creating our init function so it will return a string pointer and it’s called init and it takes a initial string like so and we need a size variable sign in size and size will be equal to length of Str Str so we do also need to Define that uh length function and that will basically be um let’s [Music] see that will basically [Music] be well it will be pretty much the same as the regular Str L right so unsigned in length and it takes a Char array we need an n and and a pointer let’s do the constate here and we create a pointer 4 m is equal to zero and P is equal to Sr we’re going to loop as long as let’s see as long as the thing that P points to is not zero and in each iteration we’re going to increase p and we’re going to increase n and we don’t need anything else no body of this one so I’ll add a semicolon at the end and then I’ll just return n and I want to create a function declaration for that as well so unsigned in length and it’ll take a Char star like so okay so now we have the length of the of the string and since this is the initialization function this will be the first uh string so we don’t have to think too much about it uh I do have however one one additional bite allocated and let’s allocate no so it will be this is how much we need for our string but then we also need the size of our structure which will be struct what did I name it s something s string okay that should be enough memory right so let’s create a string [Music] p p will be equal to string size like so and we do also need to zero this structure so one way of one new way of doing that wait first we need to assert that we p is not zero then we’re going to do a let’s [Music] see p I think it’s something like this P equals this I think you do it like that maybe we need to do reference let’s see if that works okay so we have the empty structure now we want to copy the actual string into there so name copy and into P data we want to copy the string [Music] and um let’s see we need a variable for the length so let’s do an n as well so n and size and we let N be equal to the length of this stram and we start substitute this by L which means we can copy n into the string and then we’ll just return P Okay so so let’s comment these out because we’re not done with them and not this one either with the initialization should be okay and let’s do a printf so we see that it it’s working so percent s and this will be St Str data like so okay let’s see what happens oh assignment discards con qualifier okay so let’s [Music] do I think it should be okay to add the con right here did I have the const here no I didn’t [Music] in we need a constant as well so cons basically means that we cannot write to the to that [Music] argument same here okay so con and maybe we don’t need it there [Music] okay discard con qualifier P equals s r okay we have a typo in the header file let’s see main that should be just in and what did we do wrong here let’s see it’s in the length function I [Music] think n = z p = s r p p++ n++ turn [Music] and let’s see what it’s let’s see what it [Music] said okay it didn’t look like this construct perhaps I need to add some options so it uses the new standard let’s see if we add Das s d [Music] equals m let me see c 2 x and let’s add it here as well SD = C2 X still doesn’t like it perhaps it needs the the space [Music] there expected expression plus [Music] P what if we do the slightly older standard and put a zero in there no still is not like that uh I think I need to type cast that’s probably it so let’s make it so and then I do string like so okay now it works M Copy okay what do we need for that M [Music] CP okay inside of the string. [Music] H let’s create our [Music] own [Music] no safe string let’s see so we have a void pointer and or let’s do Bo instead and we can name it copy it’s going to take [Music] a a void pointer to a destination going to take make a const vo source and the con sign in [Music] n and this function will basically be like this but not exactly but let’s start there anyway so cons Char [Music] P Let’s do let’s do like this so const sh [Music] p uh P source and just char No not Char void and right here we just do void T destination and we do a four [Music] where in X and inside here we set X = to n we set P Source equal to Source P destination equal to destination we’re going to iterate until X is z and and each direction we will increase P Source P source and [Music] p p destination and what are we going to do we’re going to take whatever P destination points to and set it to what P Source Point we can make this a void because not much can go wrong and if anything goes wrong then this program will crash so like so save and we need a function declaration so void copy and we have a void pointer for the destination we have a const void pointer for the source and we have a const [Music] unsigned in like so also we need to change so we use our own function where is our M Copy right here so let’s just do copy okay it’s getting better the referencing okay it doesn’t like the referencing void that’s right okay so let’s go into that file again and let’s let’s change the those pointers to char [Music] instead and let’s typ cast a little bit so so p c is equal to the Char version sour or the Cod Char version and this will be equal to the to the Char version of pest like so okay in main conflicting types that’s right we need to add our arguments in RC Char r or see like so and it compiles it does however compile into a library which is a little bit easy a little bit difficult to um to debug or to try out so let’s alter our make file a little bit and let’s change this this I don’t think we need to change anything else actually okay let’s see what happens segmentation fold okay let’s Trace s didn’t say much and L Trace didn’t say anything let’s double check the code let’s [Music] see save string. c s Str data so n equals length of the string I think we need to try out our two utility functions so we know that they work so we have our length and we have our M Copy let’s start with the length we check the length of a b c d e that should be five right okay no problem with that one so how do we check our mem copy in an easy enough way let’s create two Char buffers so buff one 16 and buff 2 16 and I’m going to string copy into buff [Music] one L and I’m going to then copy into F two from bu one and let’s see 2 three four five six n and then I’m going to print the content of um bu two I’m also going to memet both of them to zero them out like that and I need to add temporarily add [Music] the string Library [Music] set Oh wrong punctuation M there we go hello [Music] you okay so both of these function seem to work so how come my stuff doesn’t s Str equals index and print F St Str [Music] perhaps it’s about null termination yeah that’s probably it so where’s the NIT function how much am I alloc the m + 1 plus size of this so there’s room for the null [Music] Terminator let’s see if I if I create a regular sh pointer [Music] CH pointer Shar pointer should be equal to P data plus [Music] n then that should be a zero it should work I think still [Music] thanful hello take this string and equal length [Music] string size = n + one plus the size of this P equals [Music] string size [Music] P = [Music] stre [Music] zero copy P data the string and what happens if I remove this [Applause] slide okay so that’s where it seg FS down even though the copy function actually works so P data string n and n is the length of the string uh okay I forgot [Music] to I set the x to n and my idea was to decrease it and when it reaches zero we’re done but I only did half of that thought so we should add x- minus here as well all righty then then we probably don’t need this stuff since everything already should be zeroed out there we go yeah now it works as intended good sometimes it’s those small little things that makes you need have to trouble shoot forever okay where were we save string. C the only thing we have left actually is [Music] to is to create the concatenation function right which basically merges one of my strings with a regular string so let’s do this [Applause] and that is a [Music] bull and what did we call it we called it concat and it takes a string pointer as an argument and a const Char Source okay so first we need to calculate the memory consumption and we do need an unsigned in M which would be equal to the length of [Music] source so the size we we can make it in three steps let’s do a current sized as [Music] well so the current size is equal [Music] to the destination strings um count + one plus size of stct s string so the size of the structure and the contents that is a current size and the new size should be equal to the current size plus n the number of bytes we need to concatenate so then we have the new size we also need a pointer string p and let’s see no do really need that yes I think we do so p is equal to string and this time we use re look re look and the old memory segment is the destination yeah it’s a destination and the new memory requirements is the size that will be our p and if P fails we simply return false and if it doesn’t fail then we have the memory we need so now we just need to copy the new string so let’s do it basic like we did before I will create an let’s see I will create a regular CH pointer and that chart pointer should be equal to P data plus [Music] P count so basically it should be equal to the old count we need to increase by the with that so we come to the end of the old segment and that’s where we will uh put the new new date and then we will simply copy to P data no to CP and and what should we copy we should copy the source and how much of it it should be n like so and then we will simply do p count plus equals l so we increase the count and we return true that should basically be it right so let’s go down here I will remove this temporary print F and we’ll add back our concat and right we need this fold as well the fold should simply return the value let’s do it quick H Char Fone and it should take a string as an argument and it should simply return string data easy peasy let’s create the function definition as well so CH fold string star and we do have our only knit as well so maybe this compiles let’s see okay what does it say [Music] St St uh it should be S Str right where is it here concat s Str [Music] there uh we should add the serum but at the end when we [Music] conat so let’s [Music] see so CP should then be equal to P data plus the new P count and let’s zero that one like so compiles hold your breath almost it’s it’s showed the there but it didn’t it overwrote our old data I think I know why if we go to the emit function we don’t really increase the initial length so P count should be equal to l that’s right n + [Music] one yeah okay let’s try this again hello there okay so what have we learn today we have learned how to successfully create a a safe string library with a concatenation feature and uh some other stuff and I will leave as an exercise to you to create an equal function that you can use in order to check if two strings are equal and it should work with our string data type and regular strings in any combination if you like this content please like And subscribe there will be a lot of more uh see videos both beginner level and very Advanced I have a lot of interesting stuff in the pipeline so thanks for watching and thanks for [Music] today okay guys welcome back last week we began creating this taly tool which uh tunnels any Linux application through the tour Network we wrote the first part of it which is a socks version for client so this is what we have this far we can supply the destination host and Port so let’s take my web server as an example so we run talize and let’s do this IP with a port of 80 and we connect to the proxy maybe it’s a okay there there we go sometimes when you use the T Network it’s quite slow but more often than not it’s quite fast but as you can see we connected to the proxy we successfully connected through the proxy to the destination and we communicated with the web server on the other end so the biggest part is done what we need to do now is the following we need to turn the client into a library so instead of using an as an application we want to have it as a library and that is a shared library to be specifico files when we have done that we’re going to turn main into our own connect replace regular connect and we’re also going to save a reference to to the original connect so that we can use it ourselves because our current tool is using connect if we look right here so we connect to the proxy server using that uh system call and that’s why we need to save a reference to it so we can use it ourselves um we also need to grab the IP and Port from original connect so we will take care of the arguments that the uh application sends to its connect and and uh we need to take the IP and Port from there instead of reading it from the command arguments like we do now uh and then we can proceed by doing what we do now and then we will just uh leave it to the original application to take care of the uh the rest of the communication so we do our thing and then we exit our fun and let the program take over um okay so how does this technique work well when you compile your code you have two options you can compile it statically so it’s statically linked uh and that means that if you use any Library calls or system calls too for that matter like uh print F or anything that will be that code the print F code will be saved in your program’s uh executable file but that’s not very optimized because if every tool on the on the whole drive would be statically linked then there will be a lot of duplications because almost every application uses some form of Library calls or system calls so that’s why we have the shared libraries so instead of and that’s what’s usually in use so we have like a database with a lot of with a print F code and with a scan F code and even wrappers for system calls like connect and uh when an end application needs to use any of that code it will collect it from the central repository on the on the disk so that’s how it works the thing is there is a kind of um prioritization order so which we can influence so if there are two functions with the same name which one that’s going to execute is decided by a a list basically and a prioritization order so if we name our own function connect and uh we have compiled this as a shared library then we can make any application use our code AS PRI Priority One and in that way we can intercept and hijack the library call and system because all system calls have wrappers in the libraries okay this will probably be um a little more clear when we have written the actual code tested it and this is not my own invention this technique I am following a website let me just find it C shared Library function hook here it is at our Jordan a so it’s pretty simple actually so put s is a function which basically works like print F but not as it prints a single string on the screen so that’s the one that he uses in his example so as you can see he creates a function with the same name and same signature he creates a function pointer also with the same signature and that is for saving the original put s in this case and then he gets the reference from this dsim uh function so basically you give the rtld next and put and the name of the function and it gives back the memory address where that function is originally uh located in memory and uh then he just does like this so he checks if you send the argument hello world and in that case he hijacks the original pest call and changes the message in other case he just runs the uh original puts with the same arguments so this is basically what we’re going to do we’re not going to have a condition because we are always going to hijack the orig original one we are however going to use the original uh connect function to make our connection to the proxy server and uh then we compile it as a shared Library so there’s a couple of additional switches we use and then we get AO file and then we basically tell the system to use our uh Library instead by this LD preload environment variable so we’re going to create a small uh bash script in our case three lines big and um that’s what we’re going to name talize and uh then we’re going to use that to set the environment variable and run the command and uh yeah that should basically be it so let’s begin let’s start by Gra grabbing the um signature so we do man to connect and just copy this exactly as it is and then we go up to our main and just paste it right here like so and sock FD address l t and we remove this [Music] and so we basically turn our main function into this uh connect function like so and we create a function pointer and if you have watched my episode about function pointers you know that that is done like this I will paste the signature for this original original function once again and instead of connect I will just name this P for pointer I’ll put it inside parentheses and add the star and then then we remove this part so it should be basically like a like a signature function uh declaration and we use this to point to this DL Sims function and let me just see where it’s located so Man 3 DL Sims and if we don’t find it in page three we do page two weum perhaps it’s without the S yeah okay so it’s inside of this DL F cn. so let’s add that to our list of includes and let’s see if if he included anything else only the string so and I need to grab the first argument rtld Dore next and you might ask why um I don’t copy paste and I try to avoid that when possible because if I type this a couple of times I will will probably remember it ring next and the name of the function is connect like this and we initialize the socket but we don’t really or let’s do it like this by the way the the curl application or whichever we use have um already initialized their uh socket but I think it will be easier just to uh pipe those two sockets together okay so let me update the signature here as well so I don’t forget that by the way because we we don’t have any main anymore we just have in Connect it’s in right yes did I do in here yes okay so int connect int construct sock address star Su t uh so we don’t have a main anymore because that’s only for applications and this is not an application this is just a couple of functions which are free Okay so the application runs connect and we don’t need anything any of this and we save this we initialize our socket and uh here we make the connection to the proxy server nothing will change about that but we’re not going to call connect because we would be calling ourselves we will be calling this P the function pointer like so connected to proxy and we need we also need to change our request function uh instead of sending host and Port like we did before let me remove that so we have int s and we don’t have this host instead we need to grab the IP and the P Port from the arguments so this is what how what the application provides we have the socket file descriptor we have the length of this structure and we have the actual structure so I think the easiest way would be to I don’t want to name this address let’s call this let’s call it sock to and S2 instead so s and sock that’s ours and S2 and sock 2 are the the provided by the application so we need to look inside of this and get the data that we need so let’s pass the whole structure of that instead uh as host and Port so we’ll just do so two right here and we need to change the signature for our request function um and that is of type stru sock address [Music] in and star stct sock address in Star and I think we need to do a type cast and send the reference so where were we right here so struct sock address stct sock address [Music] in so to I think we need to do it like this if we get a warning or error we will change it but it should be all right struct address in sock 2 so we send that whole structure to this function and we need to change this as well so that will be struck sock address in let’s call it so no let’s call it sock to so we know what’s what okay so the destination Port we don’t need to do hton s and inet address because it’s already in the network bite order so the only thing we need to do is reference talk [Music] to sin port and for the destination IP so [Music] to S address Source address like so perhaps we need to do some type casting but I don’t think so in this case okay so now we have the correct packet and then we save that then we send that [Music] packet unable Traverse proxy we can keep this for now successfully connected through and this we will not have though so as soon as we are connected we are basically done we don’t want to close the socket we do however want to to pipe our socket with the end applications socket so what does it mean piping well we need to do so everything that’s being sent to S will also be sent to S2 and everything that’s being sent to S2 is being s to us and same with the receives so we basically become the man in the middle and there is a good system call which is called dup two which does exactly that um so it creates a new file descriptor and it will be the the same value as the second argument which means that this will be pretty seamless if we give S2 so D to S S2 and then we return the we forget anything I think we did most of it let’s copy the compilation flags from this [Music] one so we’ll go into our make file and this will be [Music] to.so F pictured LDL okay and I will Begin by removing the talize binary executable because that won’t be necessary okay let’s see what it says if we try to compile this one okay DL Sims it should be DL Sim right here and I enter down a little bit and it runs make again and host UND declared okay that’s the message don’t think we actually need that one where is it uh unable to Traverse the proxy successfully connected through the proxy let’s just say through the proxy enter otherwise we need to convert between Network by order and stuff like that perhaps we can change this later on instead if we want to okay it compiled so how are we going to test this we haven’t really created our bash script we can do that now by the way let’s begin by checking what directory we’re we’re in and the name of this so I’ll just do a copy paste of this directory and I will add thiso file to it so this is the whole path to our library and I will log in as the root user I will go to user bin and I will open up Tora lies and this will be a bash [Music] file so we need to have this interpreter at the top or the hashbang uh okay so let’s export LD pre load to this one and then we want to run the commands because we’re going to run this as talize and then curl or whatever so we need to send everything that’s on the right of this toriz and there is a way to access all the arguments at the same time and I I think it is done like this okay so first we export the LD preload and point it towards our shared library then we do the dollar and I think it’s the at sign which will run all the arguments to this uh script and finally we unset the LD preload like this it’s probably not necessary to unset it because it’s the end of the script but I think it’s looks a little better all right so we save this and give it running permissions toiz and then we test it out and hope that it works so Network technology.org we will try to do talize curl and an HTTP request against this IP address connected to proxy uh couldn’t connect the server let’s try restarting the tour perhaps it’s a bad uh connection that happens sometimes so tour restart okay and then we try it again okay connected to proxy this time it didn’t even give an error message let’s see what this error code 91 is if we go back to the RFC so RFC socks 4 and we go down here request rejected or failed I will try once again to restart the service perhaps we are unlucky with the connection so let’s do like this and then we run toye again at least it’s able to intercept the connect function as we can see by this connected to proxy but it doesn’t really succeed in connecting let’s just see that this one is up and running yes and it’s lessening on Port a right let’s do just like this okay I don’t have tet here let’s run it from from this instead so and tet this 80 okay it’s the server that’s not responding that’s weird post let’s try something else let’s do I think we should be able to do a a regular host name this is a Swedish site that shows uh the IP if you if we do make this work though that’s not going through the tour Network the actual DNS request so the DNS request probably goes outside of the tour Network and then the actual IP uh connection goes through so current connect to server weird does anything work Google see yeah there’s nothing wrong with the routing but we need to try something else what if we do a host on this site and we talize a curl HTTP and this IP instead are we able to connect directly to this one okay that works let’s let look through the code perhaps we did miss something so what happens right here we set this to the regular connect function we initialize a new socket and we connect to the proxy with the proxy port using this connect the regular connect function and and we managed to get connected to the proxy everything is fine this far perhaps something perhaps there’s some problem with where we when we grab the IP address so R request stct sock address in perhaps we should not send the reference what if we were to do like this [Music] instead CD code and to and we need to run make and then we do [Music] host and we do talize H curl HTTP and this IP okay so now it works and we should be able to see the IP here I think somewhere okay it seems that we go through some kind of middle server it probably only works against Swedish IP addresses and we probably don’t come from the Swedish IP through the tour Network we need to try something else what if we were to do F we can test regular first so if we do [Music] host what is my ip.com [Music] we do a regular curl and we get an error code okay we need to send the host name and I don’t think that’ll work but let’s try it again uh so curent or it will work when you do right here but I don’t think we will get a response no let’s just do Google them so host Google go. I’m going do tour allies Cur HTTP and this IP okay that works what if we do a host name does it even try to resolve that yeah it works but as I said be careful by doing that because only the IP connection will be private not the DNS request but as you can see we are able to um Traverse the proxy and we are able to talize any command using this tool so that’s the end of this series I hope you want to sub subscribe and like if you think it’s it deserves it and uh there will be more interesting videos in the future thanks for watching and thanks for today

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • JavaScript Fundamentals: Console, Variables, Data Types, and Objects

    JavaScript Fundamentals: Console, Variables, Data Types, and Objects

    The provided text is a guide to understanding JavaScript programming concepts. It covers a range of topics, beginning with how to use the console for debugging. The text then explores fundamental concepts such as variables, data types (primitive and reference), type coercion, and operators. It discusses strings, numbers, arrays, and objects, including methods to manipulate them. Finally, it introduces functions, scope, DOM manipulation, and event handling, along with keyboard events.

    JavaScript Fundamentals Study Guide

    Quiz

    1. What are the three core technologies of the web?
    2. Explain the difference between interpreted and compiled code.
    3. Briefly describe the Document Object Model (DOM).
    4. What is an asynchronous request, and why is it useful in web development?
    5. What is the purpose of the parseFloat() function? How does it differ from parseInt()?
    6. Explain the concept of “truthy” and “falsy” values in JavaScript, and give one example of each.
    7. What does NaN represent in JavaScript, and list two operations that result in NaN.
    8. Describe what the modulus operator (%) does.
    9. Explain the difference between == and === comparison operators in JavaScript.
    10. What is type coercion in JavaScript, and how does it differ from type conversion?

    Quiz Answer Key

    1. HTML, CSS, and JavaScript. HTML structures web content, CSS styles the content, and JavaScript brings interactivity to the front-end.
    2. Interpreted code is executed line by line, while compiled code is first translated into machine code before execution. JavaScript is an interpreted language, making it a scripting language.
    3. The DOM is a tree-like structure of nodes representing everything on a web page, including HTML tags, attributes, and text. JavaScript can manipulate the DOM to dynamically change the content and styles of elements.
    4. An asynchronous request allows a web page to interact with a back-end server without requiring a page refresh. This is useful for dynamically loading and updating content, particularly in single-page applications.
    5. The parseFloat() function converts a string to a floating-point number. parseInt() converts a string to an integer, discarding any decimal portion.
    6. Truthy values are values that evaluate to true in a Boolean context (e.g., 1, “hello”), while falsy values evaluate to false (e.g., 0, null, undefined, “”).
    7. NaN stands for “Not a Number,” representing a value that is not a valid number. Operations such as parsing a non-numeric string with parseInt() or parseFloat(), or square root of a negative number result in NaN.
    8. The modulus operator (%) returns the remainder of a division operation. For example, 7 % 5 equals 2.
    9. The == operator compares two values for equality after type coercion, meaning JavaScript might try to convert the values to a common type before comparing them. The === operator compares two values for equality without type coercion, meaning the values must be of the same type to be considered equal.
    10. Type coercion is the implicit conversion of one data type to another by JavaScript, often when applying operators to values of different types. Type conversion is the explicit conversion of one data type to another by the developer, using functions like String(), Number(), and Boolean().

    Essay Questions

    1. Discuss the versatility of JavaScript and the reasons for its popularity in modern web development.
    2. Explain the differences between client-side and server-side JavaScript. Give examples of frameworks or environments associated with each.
    3. Describe the concept of scope in JavaScript, differentiating between global, function, and block scope. Use examples to illustrate how variable access changes in different scopes.
    4. Explain the execution context in JavaScript, including the memory creation phase and execution phase. How does the execution context differ when invoking a function?
    5. Describe the different types of keyboard events in JavaScript and how they are used. Include details about properties like key, keyCode and code and how to use modifier properties such as shiftKey, ctrlKey and altKey.

    Glossary of Key Terms

    • API (Application Programming Interface): A set of rules and specifications that software programs can follow to communicate with each other.
    • Asynchronous Request: A request that doesn’t block the execution of other code while waiting for a response.
    • Boolean: A data type with two possible values: true or false.
    • Client-Side JavaScript: JavaScript code that runs in the user’s web browser.
    • Compiled Code: Code that has been translated into machine code by a compiler before execution.
    • CSS (Cascading Style Sheets): A style sheet language used for describing the presentation of a document written in a markup language like HTML.
    • DOM (Document Object Model): A programming interface for HTML and XML documents. It represents the page so that programs can change the document structure, style, and content.
    • Event: An action or occurrence recognized by a software system, often originating asynchronously from the external environment, such as a mouse click or key press.
    • Expression: A combination of values, variables, operators, and function calls that evaluates to a single value.
    • Falsy Value: A value that evaluates to false in a Boolean context (e.g., 0, “”, null, undefined, NaN).
    • Function: A block of organized, reusable code that performs a specific task.
    • Global Scope: The scope that contains variables that are declared outside of any function or block.
    • Hoisting: The JavaScript mechanism where declarations of variables and functions are moved to the top of their scope before code execution.
    • HTML (HyperText Markup Language): The standard markup language for creating web pages.
    • HTTP Request: A request made by a client to a server to access resources or perform actions.
    • IIFE (Immediately Invoked Function Expression): A JavaScript function that runs as soon as it is defined.
    • Interpreted Code: Code that is executed line by line by an interpreter.
    • JavaScript: A high-level, interpreted programming language primarily used for creating interactive web pages.
    • Local Storage: A web storage API that allows web applications to store data locally within the user’s browser.
    • NaN (Not a Number): A value representing an undefined or unrepresentable value, typically resulting from invalid mathematical operations.
    • Node.js: A JavaScript runtime environment that allows JavaScript to be used on the server side.
    • Operator: A symbol that performs an operation on one or more operands (values or variables).
    • Scope: The context in which variables and functions are accessible.
    • Server-Side JavaScript: JavaScript code that runs on a server rather than in a client’s web browser.
    • Single-Page Application (SPA): A web application that loads a single HTML page and dynamically updates the content without requiring page reloads.
    • Truthy Value: A value that evaluates to true in a Boolean context (e.g., 1, “hello”, {}).
    • Type Coercion: The automatic or implicit conversion of values from one data type to another in JavaScript.

    Modern JavaScript Fundamentals

    Okay, I have reviewed the provided source and have created a briefing document summarizing its main themes and key ideas.

    Briefing Document: JavaScript Course Excerpts

    Overview:

    This document summarizes excerpts from the beginning of a “Modern JavaScript from the Beginning” course. The course aims to provide a comprehensive understanding of JavaScript fundamentals. The initial sections cover basic concepts, data types, operators, control flow, functions, scope, events and date objects as well as introduction to arrays and objects (object literals). The presenter emphasizes that even experienced developers might find value in revisiting these core principles.

    Main Themes and Key Ideas:

    1. What is JavaScript?
    • JavaScript is a core technology of the web, alongside HTML (structure) and CSS (styling).
    • It brings interactivity and dynamism to web pages.
    • It can be used server-side with Node.js to interact with databases and file systems.
    • It’s an interpreted (executed line by line), high-level scripting language.
    • “JavaScript is one of the core Technologies of the web alongside HTML which is a mock-up language and is used to structure web page content as well as CSS which is used to style that content so JavaScript is what brings life to the front end or the user interface of a website or a web app”
    1. Uses of JavaScript (Client-Side & Server-Side):
    • DOM Manipulation: Dynamically changing the structure, content, and styles of HTML elements. The DOM is viewed as a tree-like structure of nodes.
    • “JavaScript provides methods for dynamically changing that structure or changing the content or the styles of the elements in the Dom”
    • Event Handling: Responding to user actions like mouse clicks, keyboard input, and form submissions.
    • “…JavaScript gives us a way to handle events so we can respond to things like Mouse clicks or drags or hovers keyboard events form submissions and just about anything you can think of that you can do in the browser window”
    • Asynchronous Requests: Interacting with back-end servers and APIs to fetch or submit data without page reloads. Common in Single Page Applications (SPAs).
    • “making asynchronous request is one of the most powerful uses of JavaScript and it’s used to interact with back-end servers”
    • Animations & Effects: Creating visual effects using CSS transitions, JavaScript methods, and libraries.
    • Data Manipulation: Sorting, filtering, and transforming data using array methods (map, filter, reduce).
    • “…data manipulation which is the process of modifying or transforming data can be done with JavaScript because it’s a full-featured language with data structures like arrays”
    • Data Storage: Storing data in the browser using local storage, session storage, and cookies.
    • Single Page Applications (SPAs): Building applications that load a single HTML page and dynamically update content. Often used with front-end frameworks (React, Vue, Angular).
    • “JavaScript can also be used to store data on the client or in the browser using things like local storage session storage and cookies we can also create single page applications or spas and these are applications that load a single HTML page and dynamically update the content without having to reload the entire page”
    • Server-Side (Node.js/Deno): Creating APIs that interact with databases. Frameworks like Express.js are mentioned.
    1. Why Learn JavaScript?
    • Popularity: Widely used language with a large community, making it a valuable skill for job opportunities and collaboration.
    • “popularity JavaScript is one of the most widely used programming languages with millions of developers using it to build websites web applications browser-based games server-side apis and more”
    • Versatility: Can be used for a wide range of applications.
    1. Data Types and Type Conversion/Coercion:
    • JavaScript has data types like numbers, strings, and Booleans.
    • Type Conversion: Explicitly changing a data type using constructors (e.g., String(), Number(), Boolean()) or methods like parseInt() and parseFloat().
    • “…if you have a decimal right so if let’s say this is amount is 99.5 and you want to let’s say it’s a string of 99.5 and you want to convert it to a number of 99.5 which is a decimal there’s a method you can use called parse float”
    • Truthy and Falsy values: Discusses truthy and falsy values. Zero is a falsy value.
    • NaN (Not a Number): Results from operations that cannot produce a valid number (e.g., parsing a non-numeric string). It is a special number type.
    • “…we get a value of Nan or Nan and what this stands for is not a number okay it’s uh it’s actually a special number as you can see it does have the type of number but it’s a special number that represents not a number”
    • Type Coercion: Implicit conversion of data types during operations, often when using operators with different types.
    1. Operators:
    • Arithmetic Operators: +, -, *, /, % (modulus), ** (exponentiation).
    • Concatenation Operator: + (used to join strings).
    • “the concatenate operator is the plus sign so you can essentially think of the plus sign having two different functions in JavaScript one obviously is addition but one is to concatenate strings together”
    • Increment/Decrement Operators: ++, –.
    • Assignment Operators: =, +=, -=, *=, /=, %=, **=.
    • Comparison Operators: == (equal to), === (equal value and type), != (not equal to), !== (not equal value or type), >, <, >=, <=. The presenter recommends using === and !== to avoid potential issues.
    • “what I do and what I’ve what I see a lot of people do is pretty much always use the triple equals I think that that’s going to save you some headaches and save you some hours if you just always use triple equals”
    1. String Methods & Properties:
    • Strings are primitive, but JavaScript provides a wrapper object allowing the use of methods and properties.
    • length: Property to get the string’s length.
    • Accessing Characters: Using bracket notation (e.g., str[0]) or charAt().
    • “…if I say x equals and then S I can use this syntax and it starts at zero just like an array if I save that you’ll see I get H I get the first character if I do one I get e so I get the second character and so on”
    • toUpperCase(), toLowerCase(): Changing case.
    • indexOf(): Finding the index of a character or substring.
    • “if we want to know the index of a specific character so kind of the the inverse of this we could say s equal x equals s and we can use index of”
    • substring(), slice(): Extracting portions of a string. Slice can use negative indices to start from the end.
    • “substring which will search a string for a specified value so let me show you if we do s dot and then substring and then we can this will take in two indexes so let’s say we want to get from 0 to 4”
    • trim(): Removing whitespace from the beginning and end of a string.
    • “trim and what this does is it trims the white space”
    • replace(): Replacing a substring with another string.
    • includes(): Checking if a string contains a substring (returns true or false).
    • “…if I say s dot includes and we want to let’s say we want to find hello if I save that we’re going to get true because this is found within that s string”
    • valueOf(): Returns the primitive value of a String object.
    • split(): Splitting a string into an array based on a separator.
    • “split which you I use I’ve used quite a bit it’ll split a string into an array and it takes in a separator as an argument”
    • Prototype: Where the methods are stored.
    1. Number Methods and Properties
    • toString(): Returns a string representation of a number.
    • toFixed(digits): Formats a number using fixed-point notation, rounding to the specified number of digits after the decimal point. Returns a string.
    • toPrecision(precision): Formats a number to a specified length.
    • toExponential(fractionDigits): Returns a string representing the number in exponential notation.
    • toLocaleString(): Returns a language-sensitive representation of the number.
    • Number.MAX_VALUE: The maximum numeric value representable in JavaScript.
    • Number.MIN_VALUE: The smallest positive numeric value representable in JavaScript.
    1. Math Object:
    • Built-in object for mathematical operations.
    • Math.sqrt(): Square root.
    • “…we want to get the the um the square root of a number so we’ll do math Dot and then sqrt”
    • Math.abs(): Absolute value.
    • Math.round(): Rounds to the nearest integer.
    • Math.ceil(): Rounds up to the nearest integer.
    • Math.floor(): Rounds down to the nearest integer.
    • “…we can do the opposite and round down with the floor method so if I were to do math dot floor obviously that’s going to give me 4 but if I even if I do like 4.9 and I save that’s still going to give me 4”
    • Math.pow(): Raises a number to a power.
    • Math.min(), Math.max(): Finds the minimum or maximum of a set of numbers.
    • Math.random(): Generates a random decimal number between 0 (inclusive) and 1 (exclusive). Demonstrates how to generate random numbers within a specific range.
    • “a really common method is the random method so let’s say x equals math Dot random”
    1. Date Objects:
    • Creating date objects: using new Date().
    • Date formats: Demonstrates creating dates with arguments (year, month, day, hour, minute, second) and with date strings. Notes a potential time zone issue when using hyphens and year-first format.
    • “…if I do a string so quotes here 20 21 let’s say Dash zero seven and let’s say 10. if I save that then we’re going to get July”
    • Timestamps: Discusses Unix timestamps (milliseconds since January 1, 1970). Date.now() gets the current timestamp. getTime() or valueOf() gets the timestamp of a specific date.
    • “…what it is it’s an integer that represents the number of seconds that’s elapsed that’s passed since the date of January 1st 1970 which is an arbitrary date”
    • “…you can always get the time stamp by using let’s say d so by using date dot now like that so if I save that we’re going to get the milliseconds that have passed if I reload you’ll see it’ll just keep updating right so that that gives you a way to always be able to mark an exact you know millisecond in time”
    • Methods for getting parts of a date: getFullYear(), getMonth(), getDate(), getDay(), getHours(), getMinutes(), getSeconds(), getMilliseconds(). Month is zero-based.
    • “if you want to get specific parts of the date we can do that so let’s say we want to get the the year so we’ll do D dot and then there’s a get full year method and you can see it gives us 2022”
    • toLocaleDateString(), toLocaleString(): More modern and powerful ways to format dates in a locale-sensitive way.
    1. Arrays and Objects
    • Section introduction: Will cover creating, manipulating and nesting arrays and objects.
    1. Scope
    • Global Scope, Function Scope, Block Scope
    • Variable Shadowing – when a variable in a local scope has the same name as a variable in the outer scope.
    • VAR is function scoped, not block level scoped.
    • Variables declared with VAR are added to the window object. Variables declared with LET and CONST are not.
    • “…when we create a global variable with VAR if we look at the window object let’s take a look here you’ll see that it actually gets added to the window object when we use letter cons that does not get added to the window object so you can see here there’s no Foo”
    • Nested Functions – child functions can access parent variables.
    1. Functions
    • Function Declaration – start with the function keyword
    • Function Expression – function assigned to a variable
    • Arrow Functions – shorter syntax for writing functions
    • IIFE (Immediately Invoked Function Expression) – function that runs as soon as it is defined.
    1. Logic and Control Flow
    • IF statements
    • IF ELSE statements
    • Truthy and Falsy values
    • Logical Operators
    • SWITCH statements
    • TERNARY Operator
    1. Events
    • Adding event listeners
    • MOUSE Events
    • KEYBOARD Events
    • Different keyboard properties to detect key presses and states

    Challenges:

    • Capitalize Challenge: Capitalize the first letter of a single-word string.
    • Min Max Challenge: Create a function that takes an array of numbers and returns an object with the minimum and maximum values.
    • IIFE Challenge: Create an IIFE that takes in the length and width of a rectangle and logs its area to the console.
    • Random Number and Math Challenge: Create random numbers and calculate their sum, difference, product, quotient, and remainder, then log the results in a specific format.

    Overall Impression:

    The course excerpts promise a solid foundation in JavaScript, starting with fundamental concepts and progressing towards more practical applications. The instructor emphasizes understanding the “why” behind the code, not just the “how,” and provides a blend of explanations, examples, and challenges to reinforce learning.

    JavaScript Fundamentals and Usage Guide

    ### What is JavaScript and what is it used for?

    JavaScript is a high-level, interpreted programming language that is one of the core technologies of the web, alongside HTML and CSS. It is primarily used to add interactivity and dynamic behavior to websites. It can also be used on the server-side with Node.js and Deno to interact with databases and the file system. Some general uses include manipulating the DOM, handling events, making asynchronous requests, creating animations and effects, data manipulation, storing data, and building SPAs.

    ### What is the DOM (Document Object Model) and how does JavaScript interact with it?

    The DOM is a tree-like structure of nodes representing the HTML elements on a webpage. JavaScript allows developers to dynamically change the structure, content, and styles of elements in the DOM. This includes adding, removing, or modifying text, content, and styles (like color, font, and size). Manipulating the DOM is a fundamental aspect of creating dynamic and interactive web pages.

    ### How can I convert data types in Javascript?

    JavaScript has constructors that allow you to convert values to specific data types. The `String()` constructor converts a value to a string, `parseFloat()` converts a string to a decimal number, and `Boolean()` converts a number to a Boolean value (true or false). Zero is falsy, and one is truthy. Converting a non-numeric string using `parseFloat()` will result in “NaN” (Not a Number).

    ### What are operators in JavaScript and what are some common types?

    Operators are symbols that perform specific operations in JavaScript expressions. Common types include:

    * **Arithmetic Operators:** `+` (addition), `-` (subtraction), `*` (multiplication), `/` (division), `%` (modulus – remainder), `**` (exponentiation), `++` (increment), `–` (decrement).

    * **Assignment Operators:** `=`, `+=`, `-=`, `*=`, `/=`, `%=`, `**=`.

    * **Comparison Operators:** `==` (equal to), `===` (equal value and type), `!=` (not equal to), `!==` (not equal value or type), `>` (greater than), `<` (less than), `>=` (greater than or equal to), `<=` (less than or equal to).

    * **Logical Operators:** `&&` (AND), `||` (OR), `!` (NOT)

    ### What is type coercion in JavaScript?

    Type coercion is the automatic or implicit conversion of values from one data type to another in JavaScript. It typically occurs when operators are applied to values of different types. For example, when adding a number to a string, JavaScript might convert the number to a string before concatenating them.

    ### How do I find the length of a string?

    Strings have a length property. `string.length` will produce the length of the string.

    ### What are some methods available on strings in Javascript?

    Strings have a prototype where methods are stored. Strings have methods for changing case (`toUpperCase()`, `toLowerCase()`), finding characters by index (`charAt()`), finding the index of a character (`indexOf()`), extracting portions of a string (`substring()`, `slice()`), removing whitespace (`trim()`), replacing substrings (`replace()`), checking for inclusion (`includes()`), and splitting a string into an array (`split()`).

    ### How can I generate a random number in JavaScript?

    The `Math.random()` method returns a random decimal number between 0 (inclusive) and 1 (exclusive). To generate a random number within a specific range, you can multiply `Math.random()` by the range and then use `Math.floor()` to round down to the nearest whole number.

    “`javascript

    let randomNumber = Math.floor(Math.random() * 10) + 1; // Generates a random number between 1 and 10

    JavaScript Console: A Developer’s Tool

    The JavaScript console is a tool available in web browsers that allows developers to log information, debug code, and execute JavaScript commands.

    Key aspects of the JavaScript console:

    • Access: Accessed through browser’s developer tools (e.g., in Chrome, More Tools -> Developer Tools). Can be directly accessed using keyboard shortcuts such as Command + Option + J on Mac.
    • Functionality:
    • Displaying Warnings and Errors: Shows warnings and errors generated by front-end JavaScript code, indicating the line number and file of origin.
    • Logging Information: Allows logging of data and messages from a script using the console object.
    • Executing JavaScript: Enables running JavaScript code directly in the console.
    • The console Object: The console object in JavaScript contains methods for interacting with the console.

    Commonly used console object methods:

    • console.log(): Logs information to the console. It can output different data types like numbers (e.g., 100), strings (e.g., “Hello World”), and booleans (true or false). It is possible to log multiple values simultaneously by including them as arguments.
    • console.error(): Logs an error message to the console, often with a red background or border.
    • console.warn(): Logs a warning message to the console, typically with a yellow background.
    • console.table(): Displays data in a tabular format, useful for visualizing objects with key-value pairs.
    • console.group() / console.groupEnd(): Creates a collapsible group in the console to organize related log messages.
    • console.clear(): Clears the console. It can also be cleared using keyboard shortcuts such as command/control + L.

    Additional features:

    • Styling Console Logs: CSS styles can be applied to console logs using the %c specifier, followed by the desired CSS rules as a second argument to console.log().
    • Accessibility: The console is primarily a tool for developers and is not intended for end-users of a website.

    JavaScript Data Types: A Comprehensive Guide

    In JavaScript, data types define the kind of values that can be stored and manipulated within a program. JavaScript is a dynamically typed language, meaning that you do not have to explicitly define the data types of variables.

    There are two main categories of data types in JavaScript: primitive types and reference types (or objects).

    Primitive Data Types:

    • Primitive types are immutable, meaning their values cannot be changed after creation. When a primitive type is assigned to a variable, the variable is given a direct copy of the value. These values are stored directly in the memory location known as the stack.
    • JavaScript has seven primitive data types.
    • String: Represents textual data and is a sequence of characters enclosed in single or double quotes (e.g., “Hello, World!”).
    • Number: Represents numeric values, including integers and floating-point numbers (e.g., 30, 98.9). There is no distinct type for integers or decimals; all numbers are of the Number type.
    • Boolean: Represents a logical value that can be either true or false.
    • Null: Represents the intentional absence of any object value. It indicates that a variable has been intentionally set to “no value.” Confusingly, the typeof operator returns “object” for null, which is considered a historical artifact or mistake in JavaScript.
    • Undefined: Represents a variable that has been declared but has not been assigned a value. The type of such a variable is also undefined.
    • Symbol: Represents a unique and immutable value, often used as object properties.
    • BigInt: Represents integers of arbitrary precision, allowing for the storage and manipulation of numbers larger than the Number type can handle.

    Reference Data Types (Objects):

    • Reference types are mutable, and when a reference type is assigned to a variable, the variable is given a reference to that value. These values are stored in the heap.
    • Objects are collections of key-value pairs. Object literals, arrays, and functions are examples of reference types.
    • Object Literal: A basic object in JavaScript, containing properties defined as key-value pairs, enclosed in curly braces {}.
    • Array: An ordered list of values.
    • Function: A callable object that executes a block of code. Functions are also considered objects in JavaScript, with the type of operator returning “function”.

    Type Detection:

    • The typeof operator can be used to determine the type of a variable. For example, typeof firstName will return “string” if firstName holds a string value. However, typeof null returns “object” due to historical reasons.

    Dynamic Typing:

    • JavaScript is a dynamically typed language, meaning that variable types are not explicitly defined and can change during runtime.
    • Type Conversion: It is possible to explicitly convert a value from one type to another. For instance, converting a string to a number using parseInt() or the unary plus operator (+).
    • Type Coercion: JavaScript can also implicitly change types during operations. For example, when adding a number and a string, JavaScript may coerce the number into a string.

    Understanding data types is crucial for writing correct and efficient JavaScript code. Knowing the differences between primitive and reference types, how they are stored, and how type conversions occur helps in avoiding common pitfalls and writing robust applications.

    JavaScript Variable Declaration Guide

    In JavaScript, declaring a variable means creating a named storage location in memory that can hold a value. When declaring variables, there are three keywords that can be used: var, let, and const.

    Here’s a breakdown of variable declaration in JavaScript:

    • Keywords:
    • var: The original keyword for variable declaration.
    • let: Introduced in ECMAScript 2015 (ES6), it is used for block-scoped variable declarations.
    • const: Also introduced in ES6, it is used for declaring constants, which are variables whose values cannot be reassigned after initialization.
    • Scope:
    • Global Scope: Variables declared outside of any function or block have global scope.
    • Function Scope: Variables declared with var inside a function have function scope. They are accessible only within that function.
    • Block Scope: Variables declared with let or const inside a block (e.g., within an if statement or a loop) have block scope. They are accessible only within that block.
    • Basic Syntax:
    • To declare a variable, you use one of the keywords (var, let, or const) followed by the variable name. For example:
    • var firstName;
    • let age;
    • const PI = 3.14159;
    • Initialization:
    • Variables can be initialized at the time of declaration by assigning them an initial value using the assignment operator (=).
    • let firstName = “John”;
    • const age = 30;
    • Variables declared with let can be declared without immediate initialization.
    • Constants (const):
    • Variables declared with const must be initialized during declaration.
    • const GRAVITY = 9.8; // Correct
    • // const E; // Error: Missing initializer in const declaration
    • Constants cannot be reassigned after initialization.
    • const PI = 3.14;
    • // PI = 3.14159; // Error: Assignment to constant variable.
    • It is possible to modify the properties of an object or array declared with const, but it is not possible to reassign the variable itself.
    • const myArray =;
    • myArray.push(4); // Valid: myArray is now
    • const person = { name: “John” };
    • person.name = “Jane”; // Valid: person.name is now “Jane”
    • // myArray =; // Invalid: Reassignment of const variable
    • Naming Conventions:
    • Variable names can contain letters, numbers, underscores, and dollar signs.
    • Variable names cannot start with a number.
    • JavaScript uses camel case as a common convention for variable names (e.g., firstName, lastName).
    • Hoisting:
    • Variables declared with var are hoisted to the top of their scope, meaning they can be used before they are declared in the code. However, they are initialized with undefined until the line where they are assigned a value.
    • Variables declared with let and const are also hoisted, but they are not initialized. Using them before their declaration results in a ReferenceError.
    • Multiple Declarations:
    • It is possible to declare multiple variables in a single statement.
    • let a, b, c;
    • const x = 10, y = 20, z = 30;
    • However, it is generally recommended to declare each variable on a separate line for better readability.

    JavaScript Object Literals: Comprehensive Guide

    Object literals are a fundamental concept in JavaScript used to create objects, which are collections of key-value pairs. They are a primary way to define objects in JavaScript.

    Here’s a detailed discussion of object literals, drawing from the sources:

    • Definition: An object literal is a way to create a new object in JavaScript using a simple, concise notation. It involves defining properties (key-value pairs) within curly braces {}.
    • Syntax:
    • An object literal consists of key-value pairs, where keys are strings (or symbols) and values can be any data type, including primitive values, other objects, or functions.
    • Keys and values are separated by a colon :, and each key-value pair is separated by a comma ,.
    • Example:
    • const person = {
    • firstName: “Brad”,
    • age: 40
    • };
    • In this example, person is an object with two properties: firstName with the value “Brad”, and age with the value 40.
    • Properties and Methods:
    • Properties are the key-value pairs that store data within the object.
    • Methods are functions that are associated with an object and can be called using dot notation.
    • Accessing Properties:
    • Properties of an object can be accessed using dot notation (objectName.propertyName) or bracket notation (objectName[“propertyName”]).
    • console.log(person.firstName); // Output: Brad
    • console.log(person[“age”]); // Output: 40
    • Nesting Objects:
    • Objects can be nested within other objects, allowing for complex data structures.
    • const person = {
    • name: “Brad”,
    • address: {
    • street: “123 Main St”,
    • city: “Anytown”
    • }
    • };
    • console.log(person.address.city); // Output: Anytown
    • Adding or Changing Properties:
    • Properties can be added to an object or their values modified after the object has been created using dot or bracket notation.
    • person.email = “brad@example.com”; // Adding a new property
    • person.age = 41; // Modifying an existing property
    • Using Functions as Methods:
    • Functions can be added as methods to object literals. The this keyword can be used within a method to access other properties of the object.
    • const person = {
    • name: “Jane Doe”,
    • greet: function() {
    • console.log(`Hello, my name is ${this.name}`);
    • }
    • };
    • person.greet(); // Output: Hello, my name is Jane Doe
    • Object Constructor:
    • Another way (besides object literals) to create objects is to use the object constructor.
    • let todo = new object ();
    • This creates an empty object to which properties can be added with dot notation such as todo.id = 1;
    • Enhanced Object Literals (ES6):
    • ES6 introduced several enhancements to object literals, including shorthand property names and computed property names.
    • Shorthand Property Names: If the property name is the same as the variable name, you can use a shorthand notation.
    • const firstName = “John”;
    • const age = 30;
    • const person = {
    • firstName, // Shorthand for firstName: firstName
    • age // Shorthand for age: age
    • };
    • Spread Operator:
    • The spread operator (…) can be used to copy properties from one or more objects into another object.
    • const obj1 = { a: 1, b: 2 };
    • const obj2 = { c: 3, d: 4 };
    • const obj3 = { …obj1, …obj2 };
    • console.log(obj3); // Output: { a: 1, b: 2, c: 3, d: 4 }
    • Object.assign():
    • The Object.assign() method is another way to merge the properties of one or more source objects into a target object. The first argument is the target object, and subsequent arguments are the source objects.
    • const obj1 = { a: 1, b: 2 };
    • const obj2 = { c: 3, d: 4 };
    • const obj4 = Object.assign({ }, obj1, obj2);
    • console.log(obj4); // Output: { a: 1, b: 2, c: 3, d: 4 }
    • Object.keys(), Object.values(), and Object.entries():
    • Object.keys(): Returns an array of the object’s property names (keys).
    • Object.values(): Returns an array of the object’s property values.
    • Object.entries(): Returns an array of the object’s key-value pairs as arrays.
    • const person = { name: “John”, age: 30 };
    • console.log(Object.keys(person)); // Output: [“name”, “age”]
    • console.log(Object.values(person)); // Output: [“John”, 30]
    • console.log(Object.entries(person)); // Output: [[“name”, “John”], [“age”, 30]]
    • hasOwnProperty():
    • The hasOwnProperty() method returns a boolean indicating whether the object has the specified property as its own property (not inherited).
    • const person = { name: “John” };
    • console.log(person.hasOwnProperty(“name”)); // Output: true
    • console.log(person.hasOwnProperty(“age”)); // Output: false

    Understanding object literals and how to manipulate objects is crucial for effective JavaScript programming. Object literals provide a flexible and readable way to create and work with complex data structures.

    JavaScript Array Methods: A Comprehensive Guide

    Arrays in JavaScript are special types of objects that are a data structure used to store multiple values. Array methods are built-in functions that can be used to manipulate arrays. There are many different array methods, but some of the most common and useful ones include push, pop, shift, unshift, slice, splice, concat, forEach, filter, map, and reduce.

    Here’s a discussion of array methods, drawing from the sources:

    • Creating Arrays:
    • Array Literal: An array can be created using bracket notation with values inside the brackets, such as =.
    • Array Constructor: An array can also be created using the array constructor by calling new array().
    • Basic Array Methods:
    • push(): Adds one or more elements to the end of an array. Modifies the original array.
    • pop(): Removes the last element from an array and returns that element. Modifies the original array.
    • shift(): Removes the first element from an array and returns that element. Modifies the original array.
    • unshift(): Adds one or more elements to the beginning of an array. Modifies the original array.
    • reverse(): Reverses the order of the elements in an array. Modifies the original array.
    • Methods to get information from an array:
    • includes(): Determines whether an array includes a certain value among its elements, returning true or false as appropriate.
    • indexOf(): Returns the first index at which a given element can be found in the array, or -1 if it is not present.
    • Methods to extract a section of an array:
    • slice(): Returns a new array containing a portion of the original array. Takes two arguments: the starting index and the ending index (exclusive). The original array is not modified.
    • splice(): Changes the contents of an array by removing or replacing existing elements and/or adding new elements in place. Takes two arguments: the starting index and the number of elements to remove. The original array is modified.
    • Methods to combine arrays
    • concat(): Returns a new array that is the result of merging two or more arrays. The original arrays are not modified.
    • Spread Operator: The spread operator (…) can also be used to concatenate arrays.
    • It can extract the items from both arrays and combine them.
    • Methods for looping through arrays:
    • forEach(): Executes a provided function once for each array element.
    • It does not create a new array or modify the original array.
    • It’s used to simply iterate through the array and perform an operation on each element.
    • High Order Array Methods:
    • These methods take a function as an argument (a callback function) and can be used to iterate through arrays and perform specific operations on each element.
    • filter(): Creates a new array with all elements that pass the test implemented by the provided function.
    • It returns a new array containing only the elements that satisfy the provided condition.
    • map(): Creates a new array with the results of calling a provided function on every element in the calling array.
    • It transforms each element of the array according to the provided function.
    • reduce(): Executes a reducer function (that you provide) on each element of the array, resulting in single output value.
    • It reduces the array to a single value by applying a function that accumulates the result.
    • It takes two arguments: an accumulator (previous value) and a current value.
    • Methods to flatten arrays:
    • flat(): Creates a new array with all sub-array elements concatenated into it recursively up to the specified depth.
    • It flattens nested arrays into a single array.
    • Static Methods on Array Object:
    • Array.isArray(): Determines whether the passed value is an array.
    • Array.from(): Creates a new array from an array-like or iterable object.
    • Array.of(): Creates a new array from a set of arguments.

    It is worth noting that some array methods modify the original array, while others create and return a new array. It is important to be aware of this distinction when using array methods, as it can affect the behavior of your code.

    Modern JavaScript From The Beginning | First 12 Hours

    The Original Text

    hey what’s going on guys so I know you haven’t seen much of me lately I’ve been just really busy between my personal life and also working on courses and ideas for travestymedia.com which is my biggest Focus right now and I will be making videos soon but I wanted to give you guys kind of a little treat so this is the first 13 hours of my modern JavaScript from the beginning course which is a 37 hour course so it is only a portion but it’s packed with fundamentals and we go pretty deep into those fundamentals so things like data types control structures functions Loops the Dom so I really hope you enjoy it and if you do want to go further and you want to watch the other 20 plus hours I will have a link to the course in the description uh with a promo code so obviously this is geared more towards beginners but even if you’re already a JavaScript developer I can guarantee you that there’s there’s something you’ll learn all right so let’s get into it [Music] all right guys so I just want to quickly go over what JavaScript is and why you should use it so JavaScript is essentially the Java programming language as the name implies I’m kidding JavaScript has nothing to do with Java other than they share a similar name and they’re both programming languages so JavaScript is one of the core Technologies of the web alongside HTML which is a mock-up language and is used to structure web page content as well as CSS which is used to style that content so JavaScript is what brings life to the front end or the user interface of a website or a web app and it allows us to make web pages Dynamic not only that but it can also be used on the server side to do things like interact with databases and work with the file system and this is with the help of the node.js runtime so JavaScript is a high level interpreted programming language used to create interactive and dynamic website experiences and when I say interpreted what I mean is that it’s executed line by line rather than being compiled into machine code first so the code is executed on the Fly making it a scripting language hence the name JavaScript so as far as what JavaScript is used for I wouldn’t be able to fit everything on this page so I’m going to go over just the general things that JavaScript is used for so first off it’s used to manipulate the Dom or the document object model and I’ll be going over the Dom in depth but you can basically think of it as a tree-like structure of nodes and everything on the page is a node including every HTML tag every attribute every piece of text and so on so JavaScript provides methods for dynamically changing that structure or changing the content or the styles of the elements in the Dom for example you can use JavaScript to add remove or change text of a heading or the content of a div or the styles of an element such as its color font and size so this is an important aspect of JavaScript as it allows developers to create Dynamic and interactive web pages that can respond to user actions now those user actions are called events and JavaScript gives us a way to handle events so we can respond to things like Mouse clicks or drags or hovers keyboard events form submissions and just about anything you can think of that you can do in the browser window and again this allows us to create very Dynamic interfaces and things like modals or drop downs collapsible content and so on so making asynchronous request is one of the most powerful uses of JavaScript and it’s used to interact with back-end servers whether it’s your own server that you created or a public API such as the GitHub or YouTube API so we can make HTTP requests right from our code to fetch data or submit data and this happens all behind the scenes without having to refresh the page and this is often used in what are called single page applications or Spas to dynamically load and update content without having to reload the entire page so as far as animations and effects there’s many different ways that we can create these using JavaScript we can use CSS Transitions and animations with JavaScript there’s the request animation frame method there’s different libraries like animate.css and gsap so these methods allow developers to create a wide range a wide range of animations such as fading moving elements along a path scaling rotating and so on now data manipulation which is the process of modifying or transforming data can be done with JavaScript because it’s a full-featured language with data structures like arrays and this allows us to sort filter and aggregate data so there’s all kinds of powerful array methods that we can use such as map filter reduce and we’re going to get into all of these later on so JavaScript can also be used to store data on the client or in the browser using things like local storage session storage and cookies we can also create single page applications or spas and these are applications that load a single HTML page and dynamically update the content without having to reload the entire page and this provides a really seamless and responsive user experience so no page reloading we can create different routes and so on and usually you would use a front-end framework for building Spas so you’d use something like react or view or angular but you can also create them with vanilla JavaScript now everything that I’ve said up until this point is all client-side or front-end JavaScript and that’s where it is used the most I would say but you can also use it on the server side with the node.js runtime as well as Dino so in addition to consuming apis from the front end we can also create apis that interact with databases on the back end and there’s a ton of Frameworks that you can use to help you with this including Express which is extremely popular and we’ll actually be creating a backend API with Express later on so the last thing I want to go over are some reasons why you should learn JavaScript so one is popularity JavaScript is one of the most widely used programming languages with millions of developers using it to build websites web applications browser-based games server-side apis and more so it makes it a very valuable skill to have and it opens up many job opportunities and allows for collaboration with other Developers so it’s also very versatile um it’s used like I said on both on the front end and back end of web development making it a full stack language this versatility allows developers to build complete web applications using only JavaScript not only that but there’s Technologies like react native which allow you to build complex mobile applications and Technologies like electron which allow you to even create desktop applications some of the most popular desktop apps are actually built on JavaScript and electron including vs code which is the text editor that we’ll be using as well as Postman which is the HTTP client that we’ll be using so I would say that JavaScript is relatively easy relative being the key term so if you compare it to other languages especially more low-level compile languages like C and C plus plus it’s much easier to get into and I think anyone who has a passion for coding can learn JavaScript and you don’t have to be some genius you don’t have to be great at math or anything like that you just have to have some drive and the willingness to learn and put the effort in so JavaScript also has a very very large and active Community which provides a wealth of resources support tutorials and tools for Learning and improving your skills from websites like stack Overflow to social media JavaScript just has a huge reach and when it comes to tools like actual development tools there’s just there’s so much open source software so you have npm which is the node package manager with I think it’s like 1.3 million packages that you can just download install and use so there’s just there’s there’s no shortage of resources or tools when it comes to JavaScript all right guys so in this video I want to go over the tools we’ll be using as well as our environment which is going to be very simple we’re writing vanilla front-end JavaScript so essentially all you need is a text editor and a browser but I do want to show you some of the extensions that I’ll be using and so on so as far as a text editor you can use whatever you want you probably already have a preference I’m going to be using visual studio code that’s what I recommend it’s very easy to use it’s intuitive it has great extensions and it’s very popular I would say the most popular for web development especially front-end web development and then there’s some extensions I’ll be using as well so I would suggest using it but you don’t have to if you use Sublime Text or atom or something else you can still follow along just fine so the next thing I’d say to install is git if you don’t have that already and git is Version Control so basically we can create repositories with our code and we can also push to third-party services like GitHub or git lab or bitbucket so this is not a git course but I will show you just the basics and we will need to push to a a service so that we can host some of our applications some of our projects because I do want to do a couple simple deployments all right and you can install get many different ways if you’re on Mac you can use Homebrew you can also go to get Dash scm.com and you can download and install it as well and then I’d also say install node.js just to have it on your system node.js is a it’s a JavaScript runtime so it essentially allows you to run JavaScript on your machine or on a server rather than just in the browser so you can actually use node.js as your your backend technology now this of course is not a node.js course but there are some things that I’d like to talk about especially with npm which is the node package manager and that comes with node.js so I would suggest installing that and you can install either the long-term support or the cut the most recent the the current version really doesn’t matter for this course so what I want to do now is just go into vs code and just show you the extensions that I’m using now I have a ton installed but the there’s really only two that I would highly recommend that you use with this course so one is called live server so if we scroll down here see right here live server so we we are we’re writing front-end JavaScript so we don’t really need any kind of server you could have an HTML file right on your desktop and have a Javascript file linked to it or just create the script tag in the HTML file and just open it run it in a browser and it works however live server gives you like a mini Dev server that you can run your uh your files with and it’ll Auto reload in the browser whenever you make any changes and that that includes making changes in the JavaScript the HTML the CSS if you change any of that code it auto reloads so you don’t have to keep reloading the browser yourself so I would definitely recommend using this that’s what I’ll be using throughout the course and then the other thing that I would suggest is prettier which is a code formatter it just keeps your your code nice and clean in fact I’m going to bring over a file real quick and you guys of course don’t have to do this but I’m just going to open this up it’s a file from from the course and I’m going to show you my settings in a minute but basically you’ll see if I tab a line way over here and then I go when I save it’ll put it right back okay so it keeps your your code nice and clean and then you can also set like the the spacing you can set if you want to use semicolons or not because in JavaScript semicolons actually are not you know they’re not mandatory so you can set those to on or off as you can see I have them set to on so if I miss a semicolon and I save it adds it automatically and you can also set it the other way around where if you have a semicolon and you save it gets rid of it and then the other thing that I want to show you are quotes so you can see this string is wrapped in single quotes I prefer to use single quotes so I have it set so that if I do if I have double quotes in here and then I save it automatically gets set to single quotes all right now where you can configure this stuff once you install prettier is if you go to the settings so right here settings and then just search for prettier and then you’ll find all these these options here but the ones I want to show you are right here so semi you can see I have this checked so it’s going to add semicolons if I forget if I uncheck it it’ll do the opposite and then down here I have single quote checked which by default I believe this is not checked but I prefer a single quotes So I do have it selected and then here my tab width I believe the default is four but I have mine set to two which makes it a little more Compact and neater in my opinion all right so those are the settings now to make sure that your code formats when you save just search for a format in the settings and right here format on Save just make sure that that’s checked all right so we can close that up close that but that’s it as far as the tools that I’m using and our environment so let’s move on to the next video okay so most of the code that we write is going to be within a JavaScript sandbox which is just a bunch of files and folders that are going to pertain to each section of the course but before we do that I just want to show you the very basics of just creating an HTML and a Javascript file and running the JavaScript in the browser Etc and for those of you that you know aren’t are pure beginners just kind of bear with me because I do want this course to be for everybody even if they’re just just starting out with JavaScript so you can skip some of these videos if you want or just you know watch them as a refresher so I’m just going to create a folder so go ahead and create a folder wherever you want I’m going to create it on my desktop and I’m just going to call it I’ll call it my Dash website again I’m going to delete this after so it doesn’t matter now you want to open the folder with your text editor and there’s multiple ways to do that you can open the text editor and you can open the folder from there or you can usually on Windows you can usually right click and if you’re using vs code you’ll see an option to open with code so you can go ahead and do that if you’re using Sublime text you I think you also have a context item if you’re on a Mac what you can do is drag the folder down to the vs code icon or whatever you’re using and it will open it up and you can see on the side here is our my website site folder so from here I’m going to create a new file just click this icon and let’s say index.html so now we have an HTML file and with vs code we have a tool called emit which is really great for for writing quick HTML and CSS so for instance I could do H1 enter gives me an H1 tag if I want to add a class I could say like my class so dot my class enter or Tab and then if I wanted an ID I could do you know my ID enter our Tab and let’s say I wanted like five each ones I could do times five there’s all types of stuff you can do so I do have a YouTube video on Emmett if you’re interested but another thing emit allows us to do is just create a kind of a boilerplate for our HTML so I’m just going to hit exclamation enter and you can see it gives us our head body tags Etc and again if I know a lot of you guys already know this most of you probably do but just bear with me so if I just hit tab a couple times I can go to the title and just change it to let’s say my website and then in the body for now I’m just going to put in H1 and then hello world and save that okay now since this is an HTML file I can just open it like I can just click on it make sure it opens with a browser and we’ll be able to see the hello world so you can just develop like this if you want for this course like I’m just going to make this smaller so if we change something like let’s say we put an exclamation here and I save obviously since I just opened it on my file system not on any kind of server I go over here and I have to reload now I don’t want to have to do that for everything so that’s where live server comes in so what we can do as long as you have it installed just search for live server so right here and get that installed and then you’ll see this go live button down here you could click that or you could right click and just say open with live server and what it’ll do is open up another Tab and you can see in the URL bar it’s this is our Local Host this is one two seven zero zero one that’s called our loopback address and it runs on Port 5500 by default now if I were to change something like let’s say get rid of this exclamation and save you’ll see it auto updates or Auto reloads in the browser so I don’t have to keep reloading and that and that is with HTML CSS and JavaScript now I expect that you guys know HTML you should know at least the basics of CSS so I’m not going to really get into that to start to write JavaScript there’s a couple ways we can do it one it one way is not really recommended but I’m going to show you it anyway and that is to just write it directly in the HTML so to do that what you would do is go down right above the ending body tag and create a script tag which is an HTML tag and then anything we write in here is gonna is gonna run as our JavaScript so for instance we could do alert which is just it’s a function that’s on the window object and I’m going to talk about that in a little bit and we can pass in here let’s put a string so we need our quotes and again I’m going to talk about data types and all that very soon but I’m just going to do a Hello and save and you’ll see that that’s going to automatically run because we are using live server so since the file changed the website reloaded and now received seeing this alert of hello all right now typically you’re not going to do this you’re not going to write your JavaScript directly in your HTML it’s just bad practice you want to have your JavaScript separate okay this is called inline JavaScript just like with your CSS you normally wouldn’t write your CSS in your HTML you’d create a separate file so let’s create a new file and you can call it whatever I like to use script JS for just general JavaScript files and this will show us our alert again because the the page reloaded and then in here let’s write something else we’ll do an alert and let’s say hello from the JS file now if I save this we’re still just seeing the hello that’s in the index.html because we haven’t specified that we actually want this file to run so to do that we’ll come over here let’s get rid of the inline JavaScript but we’re going to keep the script tags now to load this script.js file we can just add a source attribute much like you would do with an image tag so let’s just say script.js it’s in the same folder you might have it in a JavaScript folder or JS folder like that but ours is right there so we’ll go ahead and save and now we’re going to see this hello from JS file okay so that Javascript file is now being loaded very very very simple stuff I know ninety percent of you probably already know this but of course I need to think of people of all skill levels okay so what I’m going to do now is stop live server and you can do that by hitting this button right here you can also right click and say stop live server and now if I reload this it’s not going to work anymore okay so I’m going to close vs code and I’m just going to delete this this uh my website folder and then in the next video we’re going to start to learn about the console in the browser which is extremely important and we’re going to start working on our Java in our JavaScript sandbox all right guys so before we start learning JavaScript I just want to quickly talk about the JavaScript sandbox when I do a course I don’t like to just type out the code and and that’s that I want you guys to have uh Resources with all the code in the course so what I do is create something called The Sandbox which has a folder for each section and in each section folder you have a folder for each video with that code okay so as you can see I’m just starting out here so I have my variables and data type section with the first video which is going to be about the console and then in that is just an index.html which right now is empty and a script JS which is empty okay now for the most part most of the learning modules that aren’t part of a project in the beginning are only going to need these two files so you don’t have to use the sandbox you can create your own files now in the downloads for this video you will have the finished version of the sandbox which of course is all the finished JavaScript and then you’ll have a starter version which is going to be pretty much everything but the JavaScript you’ll have all the files and folders you’ll have the HTML any CSS if we used any CSS but the JavaScript will be empty and if you want to use that starter package you can or like I said you can create your own so right now what I’m going to do in this this console folder is just create a boilerplate so I’ll just do exclamation and I’m just going to put console in the title and I’m not going to create this in every video I’m just showing you just just for the beginning and then since we’re not dealing with you know the Dom or anything yet I’ll just have an H1 in here that says oh we’ll put the name of the say console the name of the video and then we just want to add a script tag we can do script colon SRC and we want to link in our script JS okay so essentially at the beginning all of all the videos will start like this in the HTML and then we’ll proceed in our JavaScript now one thing I want to mention is if you’re creating folders like if you create a folder inside of an empty folder by default it’s going to be compact so it’s going to be like data type slash and then zero one console now I don’t like that because it can be kind of confusing which you know to know which folder you’re in so if you want to disable that you can just click on settings so we’ll go to settings microphones in my way and then just search for compact and then right here compact folders I have it unchecked but if I check it you’ll see it goes in this this horizontal fashion which I don’t like so you can just uncheck that if you want all right so now that we have this set up I’m just going to open this index.html with live server and we have our script connected so we don’t even need that HTML anymore and we’ll just make this a little smaller and now in the next video we’ll start to look at the JavaScript console all right guys in this video I want to go over the console in the browser because this is something that we’ll be using throughout the entire course and you’ll be using throughout your entire career as a front end or full stack web developer now every browser no matter which browser it is I’m using Chrome they all have what are called developer tools or Dev tools and in Chrome you can go to the menu and you can go to more tools and then developer tools or you can on Windows I believe it’s F12 you can toggle the dev tools and then on a Mac you can do command option I now you’ll see there’s a bunch of tabs here you’re probably familiar with the elements tab where you can you know highlight elements you can see the CSS you can even edit uh page elements of course this is only on my machine if I reload it goes back but you can do a lot with the elements tab but that’s for HTML CSS the console is where we’ll see all of our front-end JavaScript warnings and errors and we can log things to the console that’s what I want to get into in this video now you can also go directly to the console with command or control I think on Windows it’s can it’s Control Alt J I know on Mac it’s command option J and that will open it’ll go right to the console now as I mentioned this is where you’re going to see your your warnings and errors for example if I go into my script here and I just put in an A and I save that and it runs we’re going to see this reference error it says a is not defined shows me the line number and the file where it’s coming from all right so very helpful with con with uh warnings and errors and of course we can log to the console from our script which I’ll show you in a second but we can also type JavaScript right in here so if I wanted to do an alert I could execute that and you’ll see that well we get this alert with one now we’re going to see undefined on the next line because what this is is if there’s a result of the expression then it will be put here and there’s no result to alert we’re just running an alert function if I were to do let’s say one plus one then it’s going to show me two all right I can also set variables so let’s say I wanted to set x to the value of 100 and and we’ll go over variables and data types and all that but I can do that here as well I get undefined because nothing there’s no result to that if I were to do let’s say X plus 10 then we’re going to get 110 because X is equal to 100 okay I could use the date function if I wanted to to get the date so there’s there’s all types of stuff we can do here but you’re not going to do that very often maybe to do some testing and you know see if something is available on a Dom element or something like that but it’s not too often you’ll type JavaScript in here now to clear your console there’s a few things you can do you can use the clear function so clear with some parentheses and that’ll clear it also you can do command or control L that’ll clear it up as well or you can just reload the page all right so I’m gonna come over here into my script and I’m going to show you how we can log to the console uh in a couple different ways now we do this with the console object in fact if we go over here and we type console in the console and hit enter we’re going to see the console object now objects are common in in just about every programming language and you can think of them as they’re an entity that have properties and methods a property is like an attribute or a value where a method is a function something that does something and you can see that these are actually all methods they have an F next to them they’re functions and functions are executed with parentheses and don’t worry if you don’t understand that we’ll get into functions in a little bit now there’s quite a bit here but don’t let that overwhelm you because you’re only going to use maybe five percent of these most of the time you’re going to be using console log or console.log so let’s come over to to our script I’m actually going to reload the page just to clear that up and let’s look at console.log now what this is is console is is an object and remember an object has properties and methods a method is a function so log is the method that I’m using and to execute a function or a method you have to use parentheses so I’m executing the log method that’s on the console object and we use this dot syntax in JavaScript to access properties and methods okay now we want to log something so in here in the method or in the function we want to pass in an argument so I’m going to pass in a number let’s say 100 and if I save that and it runs you’ll see that now in the console we’re seeing 100. now any piece of data in JavaScript or really in any programming language has a type and this is the type of number and I’m going to go over the data types in the video after the next one so let’s say we want to log a different type like a string so a string is just a string of characters so a string has to be wrapped in either double quotes or single quotes so I’ll just say hello world and I’ll save that and you’ll see that will log the string and notice they’re different colors so the number is purple the string is white now if you want to log more than one thing at the same time you can do that as well so let’s say we want to log a number we’ll say 20 and then a string and then let’s say a Boolean which is a true or false so if I go ahead and save that you’ll see that it’ll log those three things those three values now in in many cases or I’d say most cases you’re going to be logging variables or results to functions it’s not that often you’ll log straight strings like that unless it’s like it worked or something if you’re running a function or something like that and you want to see if it worked so let’s just create a variable and we’ll get into variables more soon but if I just set let’s say x to the value of 100 then I can come down here and console.log x and of course that’s going to give me 100. all right now there is another extension that I I don’t think I mentioned and that is let’s see where is it right here JavaScript es6 code Snippets and it just gives you some some convenient Snippets and one of which um that I use quite a bit is CLG so if I do CLG enter it gives me a console log so I’ll use that quite a bit there’s also some other ones I use like try catch you can do if statements you know and I don’t usually use it for like if statements and stuff but you will see me do CLG and maybe a few others now in addition to log we also have console.error so I’ll say just alert and that’ll log to the console but you can see it has this red background red border and it also shows you the scope so I mean it’s up to you if you want to use it I I typically don’t I usually use console.log for everything but remember the console is for the developer this isn’t for the user users don’t come to your website and open up the console now in addition to alert we also have con console.warn so I’ll just say warning save that you’ll see we get the the yellow background pretty much the same thing just a different color and then we can also do tables for objects so I’m going to do console.table and I know we haven’t gone over objects yet but there are object literals I should say which are key value Pairs and they’re wrapped in curly braces so I’ll just do a simple object with a name as the key Brad is the value and then email as the next key and then Brad at Gmail for the value and if I save it you’ll see this object is printed out as a table which is kind of nice and it also shows it as the object next one is groups so we can do console.group and give that group a name let’s call it simple and then we can add some let’s just take we’ll just take these three here and put those right underneath and then we want to end the group so we can say console dot group end and if I save that we check it out you’ll see that we have this simple with the this this collapsible arrow and the warning the alert and the log are now under that in that group all right now this isn’t really this isn’t something that I use but I just want you guys to know that this stuff is available you’ll probably only end up using console log 95 of the time but again I do want you to know some of the stuff that that’s available on this console object now another thing that we can do that’s kind of cool you probably won’t use it much but I do want to show it to you is adding CSS styles to your console logs so what we can do is is create a variable I’ll call it Styles and I’m assuming that you guys know CSS but we can put some Styles in here like let’s say padding 10 pixels we’ll say let’s do background Dash color and we’ll do white and then let’s do the color the text color which will be green okay so we just have a variable with some CSS now what we can do is a console log and I’ll put a string in here of hello world and the way that we apply the Styles is at the beginning of the string we can add a percent C and then as a second parameter we can pass in our Styles now if I save that and run it you’ll see down here we get the string of hello world with the CSS Styles applied now there are some other methods on the console object but I don’t want to spend too much time on stuff you’re probably never going to use so in the next video we’re going to look at code commenting we’re also going to talk about some of the helpful keyboard shortcuts that you can use while writing code all right guys so in this video I want to talk about commenting and also give you some helpful shortcuts to use while you’re coding now as far as the the code here it’s the same exact stuff that we did in the last video we’re not actually going to write any code in this video aside from comments but I am going to show you how to kind of navigate around and use some keyboard shortcuts Now comments are used for documenting your code and explaining things in a more human readable way oftentimes multiple developers work on the same code base and comments are used to explain what a certain piece of code does it’s especially important when you’re working on a project with a team of developers and comments are also used to disable code so if you have code that you don’t want to delete but you also don’t want to run then you would comment that block of code out you can even use commenting as like a to-do list for for yourself or for other developers so very helpful and commenting in JavaScript is very simple so I’m just going to go up to the top here and we can just add double forward slashes and this is a single line of code so say this is a single line of code if I go on to the next line and start typing you’ll see it’s not commented all right now in vs code and in most text editors if you just hit command or control and then forward slash it’ll put the double forward slash for you you can toggle it all right also if you want to comment out a line of code that’s already there like let’s say this one you can go anywhere on the line and just hit command or control forward slash and you can toggle it you know put it into a comment and toggle it so if you want to toggle multiple lines of code there’s a few ways you can do it what I would probably do what I usually do is go to either the beginning or the end hold shift and hit up or down depending on what which code I want to highlight and then I’ll go ahead and do command or control forward slash and it will comment all those lines out but when you do that every line has a comment on it there’s another way to add multi-line comments and that’s with the forward slash and asterisk and then you want to go to wherever you want the comment to end and put an asterisk forward slash so now you can see everything that’s in between that is is commented out in fact I’m just going to put right here we’ll say multi multi-line comment okay so those those are the two ways of commenting in JavaScript now as far as keyboard shortcuts I already showed you that if you hold shift you can go up or down and you can highlight code you can also hold shift and go right or left and highlight as well if you want to navigate a line of code I’m just going to go to this one actually let’s go to this this table right here so if we go to this table and I hold down command or control and I hit right now the right arrow it’s going to go all the way over to the end of the line if I hit left it’ll go to the beginning of the line okay now if you want to go in between and you don’t want to navigate every single character you just hold option or alt on Windows and you can see it’ll go from this console to the end the beginning of console to the end if I hit right again it goes to the end of table hit right again it goes to the beginning of the object and so on okay so it’s just a faster way to navigate across now you can also hold down shift and if you do option or alt right or left it’ll just highlight it’ll go across faster and you can highlight while you’re doing that and you can also hold shift and hold down command or control and you can highlight from where you are over either right or left okay now if you want to move a line of code up or down you can hold alt on Windows or option on a Mac and you’ll see this console.table I’m just moving it up and down the file okay that’s holding option or alt if you want to duplicate it then you could hold shift option or shift alt and hit the down arrow and you’ll see I’m just copying the the line of code down and of course undo is is a command or control Z all right now let’s see if you want to let’s say I want every instance of this log right here so I’m going to hold shift and just highlight it and then in vs code it’ll automatically highlight each one now if you want to a little it’s not actually highlighting it like with your cursor it’s just visually if you want to actually highlight with your cursor I can hold I can hit command or control D and you’ll see it selects the next DOT log if I hit command or control D again it selects the next one and I can edit those I’m editing you know all of the dot all the logs okay now if you want to select all of them instead of going one by one with command or control D you can do shift what is it command shift L will will highlight them all and you’ll see now I got all the dot logs and I can edit them all right you can also place your cursor so if I want to put my cursor at the beginning of the the log here I can hold either alt on Windows or option on a Mac and I can just click there click here and click here and then I can type in all where all the cursors are okay so you’re not going to remember these right now so don’t worry you know when you move to the next video and you forget all of these don’t worry about it use use one or two you know while you’re coding even in this course use one or two and learn them so that it kind of becomes second nature and then choose another one or two and start to use that you know and before you know it you’ll you’ll just do it without even thinking all right and then a couple others I wanted to show you if you do command shift o you can search for a file so if we do like index you’ll see that both of our index htmls if I do script you can see our script js’s and you can switch to those as well all right if you want to search you can do let’s see you can do command option f and if I want to look for you know console it’ll show me all those you can also do command shift F and you can search over here for um we’ll say console and it will show us all where console is in every file not just the file that we’re in all right and you can also just click on search here as well and if in vs code if you want to toggle the sidebar you can do command B so our control B that’ll just toggle the sidebar uh what else if you want to toggle the terminal you can do command or actually it’s control till day so I can toggle the terminal down here which we’re not going to get into maybe maybe we will later on in the course but yeah so those are the kind of the the most common shortcuts that at least at least that I use so hopefully that helps and in the next video we’re going to start to look more at variables so in this video we’re going to start to look at variables and variable declarations now variables are basically containers for pieces of data and that data can be one of many different types and it’s important to understand the different data types in JavaScript so we’re going to go over that in the next video now when we declare a variable we need to use one of three keywords so let’s just say ways to declare a variable so basically we have VAR let’s make sure we comment this out so we have VAR we have let and we have const okay so these are the three ways that you’ll see variables declared in JavaScript now you probably won’t see VAR very much anymore VAR was the original declaration but in es2015 which is the 2015 update of JavaScript or ecmascript also known as es6 it was a huge update to the language and they introduced let and const and the main reason for that is due to something called scope and I’m not going to get too much into scope right now because it’ll go over a lot of people’s heads that are just getting started we’re going to have a whole section on function scope execution context and stuff like that but for now just know that when you write code in just right in the file not inside of a function not inside of an if statement that’s the global scope all right now in the global scope VAR and let work in a very similar way now const is a little different because it’s for constants it’s for values that you that are not going to be reassigned at a later time okay and I’ll get I’ll I’ll show you const in a few minutes but let’s start by just creating some variables here I’m going to say first name and let’s set that to a string so we do need quotes so we’ll say John now notice I made this n capital so the basically the beginning of the second word I capitalize I’ll talk about that and some other ways you can format your variables in a few minutes but let’s say first name we’ll say last name and set that to do okay so we’re just creating some strings putting them into some variables and we’ll do a console log of first name and we can log more than one thing so we’ll do that here as well and you’ll see we get John Doe okay and if I wanted to create a variable with another data type like a number we could say let age equals 30. we can console log age okay now if I try to log age up here you’ll see that I’m going to get an error it says cannot access age before initialization when we do this right here let cons VAR this is initializing a variable okay and you want to initialize it before you use it now it does act a little different if we use VAR so if I say VAR here and I run this we don’t get an error but you’ll see that it is undefined and this is due to something called hoisting which is a little more advanced and we’ll we’ll talk about that in at a later time but yeah you want to initialize your variables first I’m just going to get rid of that now when it comes to naming your variables there’s a couple conventions that we need to follow so variable names can only be letters numbers underscores and dollar signs okay so you can’t have anything else you can’t have like a plus symbol or an asterisk or anything like that and even though that you can have numbers they can’t start with a number so if I were to say like let one name equals Brad that’s not going to work I’m going to get an error but if I move that one to the end here then that’s fine but if I try to add like a plus sign or something like that that’s not gonna that’s not gonna work okay now as far as the formatting of your variables for like multiple words just paste this in here what I did here with first name and last name this is called camel case where you start with a lowercase number for the first word and then every other word after that is uppercase okay so that’s camel case and that’s usually what you’re going to see now you have other ways to do it like you could use underscores to separate The Words which I don’t particularly like but I mean it is it’s all right I guess you see a lot of that in PHP and then we also have Pascal case where the the first word is also uppercase and there are conventions or there are certain times where this is the convention such as in react components or most front-end Frameworks when you create a component the file name is Pascal case so is the class or the function name of the component and then you might see all lower case which I really don’t like I don’t think that it’s very readable especially if you’re getting into like three and four words okay so let’s look at reassigning variables so we’ll say reassigning variables now we have a variable up here of age you we use let we set age to 30. so if I come down here I can then take age and then I can reassign it to let’s say 31 let’s say John had a birthday and then we’ll just console log age again and now it’s 31. all right now another thing I can do with let is just simply declare it and not actually assign a value so let’s say we want a variable called score but that’s it I’m just going to declare it okay I’m allowed to do that I don’t get any error and then I could take score and maybe add 1 to it let’s do a console log of score and we get 1 and then we might have like some kind of if statement I’ll just put true in here so that this runs and and don’t worry if you don’t understand this but let’s say we had we have something happen where the score and gets added one again we’ll say it equals score plus one and then down here we’ll console log again score and now we get two okay so that’s something that is very common using let now let’s try the kind of the same thing with const so we’ll go ahead and say const and I’ll just I’ll just call this X and I’m going to set that to 100 and then let’s say I want to take that X variable and then reassign it to 200. if I save that I’m going to get an error it says assignment to constant variable a type error okay so a constant cannot be directly reassigned like this another thing you can’t do with const is just declare it and not initialize so for instance if I were to say I already have score so I’ll say score one if I were to just do this you’ll see it’s already giving me an error here const declarations must be initialized if I save I’m going to see the same same error here okay If This Were A let though that I can do that okay so just know that const can’t be directly reassigned now where a lot of people get confused is when you’re using arrays or objects things that are not primitive values and I know I haven’t gotten into that stuff yet but I just want to show you a quick example that’s pretty easy to understand so if I use const and I have an array right and and an array is just multiple values so let’s say one two three four all right what I can’t do is directly reassign by taking array and saying well let’s do one two three four five if I do that I’m going to get an error because I’m using the equal sign directly reassigning but what I could do is with a raise you have a bunch of methods such as push and pushes is a method that will add on to the end so what I could do is say array dot push five and then if I console log my array that works so I manipulated this array I changed it to from one two three four to one two three four five by simply using a method to push five onto the end okay and then the same goes with objects if I say cons person and I set that to an object and I say name Brad and then we’ll come down here now if I were to just take person and directly reassignment you guys know that’s not going to work but I could do person.name and set that equal to John and that works because I’m not I’m not directly changing the variable I’m changing a property or a key inside the variable or not a key but a value of a key okay I could also do like person dot email and I could add on let’s say Brad at gmail okay and then if I do a console log of the entire person object you’ll see I have name John and email Brad Okay so when people ask me you know what should I use cons let or both or whatever I say it’s it’s it’s really preference now for me I always use const unless I know I’m going to directly reassign something like like this right here okay um now you’re gonna find that you don’t do this very often okay I shouldn’t say that I don’t do this very often we use a lot of the times we use objects and arrays and using Cons with that is just fine because there’s not too many you know you don’t directly reassign this very often you’re going to do stuff like this you’re going to use methods you know you’re going to assign properties and stuff like that so that’s my rules I always use cost unless I know it’s something that I’m going to change such as a score and a game you know you might add to that but you probably or what I would do is have it in an object and then just change that value so I could use const in that case so I mean you’re going to find a lot of this stuff is preference all right now another thing that I just wanted to mention is we can declare multiple let’s say multiple values at once or multiple variables so I’ll just go ahead and say actually let’s use let here let’s say let and I’ll say ABC so I could do that right I don’t even have to assign it because I’m using let and then I could also do like const I can’t just I have to assign it but I still can do multiple at once so I could say like a I can’t do a because I just used it up there but let’s say d equals 10 I could put a comma and say E equals 20 and let’s say f equals 30. okay and all of that is just fine so if I console log d down here you’re going to see we get 10. now I usually don’t do this I’ll just use a semicolon and then just do const d const d const f I just think it looks cleaner but that’s just again that’s just preference but you can assign you know multiple at the same time and if you don’t actually assign a value and you log it what we’re going to get is undefined okay which is one of the data types which is what we’re going to talk about in the next video all right guys so I want to spend a little bit of time on data types so when you’re dealing with code any any type of code any language and you’re dealing with data that data is associated with some kind of data type okay and it doesn’t matter which language you’re using they all have some kind of data types and they can be different language by language now in JavaScript you essentially have two types of types you have primitive data types and you have reference types or objects and I’ll talk about those in a second but I want to start off with primitive data types now I feel like a lot of JavaScript courses kind of skip over some important fundamentals and what I want to do is I’ll talk more about this in the next video but I want you to understand how these data types are stored and how primitive data types are different or are accessed differently than reference types but again I’ll talk more about that in the next video right now I just want you to know what these types are so the first is a string which we’ve dealt with so a string is essentially a sequence of characters and a string must be enclosed in either double quotes or single quotes or back ticks next we have a number which are integers which could be positive or negative numbers as well as floating Point numbers or decimals now in some languages you actually have either a decimal and or a float type in JavaScript we don’t what if it’s a integer or if it’s a decimal or floating Point number it’s they’re all the same they’re all going to be then the type of number okay so keep that in mind next we have a Boolean which represents a logical entity it can be either true or false next we have null which is the intentional absence of any object value and a lot of people get null confused with undefined which I’ll talk about next but just know that null is it’s always it’s intentional it’s supposed to be there but it’s supposed to be null it’s supposed to be empty you can essentially think of it as empty now the next one undefined is a variable that hasn’t been defined or assigned okay so null is purposeful undefined usually isn’t all right next we have a symbol which I’m not going to talk too much about right now because it’s it’s kind of advanced and and it was actually added in es2015 or es6 so a symbol is essentially a built-in object whose Constructor returns a sim a unique symbol or a symbol that is unique all right and and we’ll get into that later it’s not something you use very often at least I don’t and then the last one is a new data type that was just recently added called Big int okay and it just represents really really big integers really large numbers that the number type can’t handle all right and we will jump into some code in this video and just kind of show you how to how to store each of these in a variable so the next type of type is reference or objects now reference are objects they’re non-primitive and when we assign a reference type to a variable the variable is given a reference to that value and again I’m going to talk more about how reference types and primitive types are stored and accessed in the next video but object literals arrays functions these are all examples of reference types now in programming you have something called Static typing or statically typed and you have dynamically typed JavaScript is a dynamically typed language and what this means is that we don’t explicitly Define the types for our variables so if I say like const name equals Brad I don’t have to put const name String equals Brad it just knows it’s Dynamic with many languages you actually have to you have to add the types yourself those are statically typed languages like C C plus plus Java and I’m sure that some of you have worked with some of those languages in JavaScript you don’t explicitly set your types however there is something called typescript which is very very popular and it’s a superset of JavaScript meaning that it’s everything that JavaScript is it essentially is Javascript but it also has some additional features including static typing okay so there are reason to use static typing it is more code that you have to type but it can make your code more verbose and it can make it less prone to errors and a lot of people really love typescript so that might be something you want to look into once you really learn the fundamentals of JavaScript okay so I just want to jump into vs code and go over these types in the text editor and also show you how we can get the types of a specific variable so let’s start off with strings which are very simple just they’re just sequences of of characters so I’ll create a variable and I’m using const like I said in the last video I use cons for everything unless I know I’m I’m going to reassign it so we’ll say first name and we’ll set that to Sarah alright now I want to console log out the value so we’ll say first name but I also want to show you how we can get the actual type from this first name variable so as a second argument I’m going to pass in the type of operator okay so just type of and then a space and then whatever you want to get the type of sole first name and now you’ll see it’s logging out Sarah and string all right now there’s going to be a few variables that I want to show the value and the type and I don’t want to type it twice so I’m going to create another variable here we’ll just call it output and for now I’ll set it to first name and then let’s come down here and and put output now I just want to mention some little little tips and tricks as we go along I already went over some shortcuts but just to kind of remind you we can go to the the end of this first name hold shift and then highlight it and then we can do a command or control D to select the next instance of first name and then replace it with output and then save okay and we should get the same result so I’ll just mention little tips and tricks like that as we go along so the next type I want to look at is number so let’s do const we’ll say age equals 30. so that’s an example of a number if I change that to age we get 30 and it shows number from our type of operator now I also want to mention that decimals so if I do temp and set that to let’s say 98.9 and then we look at the type for that that’s also going to be a number there’s no specific float or decimal or anything like that everything is a number in JavaScript so the next type is Boolean which is really simple it’s just a true false value so maybe we want to say like has kids since we’re talking about a person and we’ll set that to true and then we’ll come down here we’ll change the output to has kids and we get true when it says Boolean so the next one is no which is basically like an intentional empty value so maybe we have like an apartment number but let’s say this person lives in a house so we set that to null there’s no apartment number there’s no need for one and this one is a little weird because if we set this to apartment number and we look at the value which is null and then we look at the the result of this type of we get object okay now this is a little confusing because null is not an object it’s not a reference type It’s A Primitive but there’s a reason for this it’s kind of in summary it’s kind of a mistake in fact I’m going to paste in the um the link right here if you’re interested and we can check it out real quick so let’s go to that link and it just kind of explains why this happens uh and it has to do with the first implementation of JavaScript values were represented as a type tag and value the type tag for object was Zero null is represented as the null pointer which was 0 x 0 0 consequently null had zero as a type tag hence the type of Return of object so in case you’re wondering why it says object and not null that’s why but it’s not it’s not that important honestly now the next is undefined and you’re probably not going to purposely set variables to undefined very much but just to show you if we were to do remember in the last video I showed you we can we can use let to just create a variable but not actually Define it to something so I’ll just say let’s score and then we’ll pass that in here to Output so we can see the value in the type and both are undefined the value and the type okay so if you just set a variable and you don’t Define it it’s going to be undefined now you can also explicitly set it to undefined you don’t do this very much but I could say cons score let’s just comment this out and I could just say set it to undefined and we get the same thing all right now a symbol is A Primitive type but it’s not something that you’re probably going to use very much especially in in you know your early career but just to show you we can create let’s say ID and let’s set that to a symbol so we’re going to say symbol with parentheses and then pass in a unique identifier of ID and then we’ll change this to ID and save and you’ll see we get symbol as our type and then the last one is although I should say the last primitive type is Big int which is just a really big number that is too big for the number type so I’ll say const n and I’m actually going to just copy or paste in this number here so it’s basically this long string of numbers and then n and if we were to put n right here and save we get the type of big end now as far as reference types let’s come down here and in the next video I’m going to talk about the difference in how these how primitive and reference types are stored and accessed but as far as what reference types are are arrays object literals functions so just to give you an example we’ll create a simple array I’ll call it numbers okay and then if I were to actually we want to put let’s grab this and let’s put this up here we want this above the output and then let’s change this to numbers okay if I save that it’s going to show the array as the value and object as the type okay any reference type is an object so an object literal of course is also an object is also a reference type so if I say person and we’re going to learn all about objects and arrays and get much more advanced but just to show you we’ll say Brad and then if we change this here to person you’ll see we also get object Now function is also a reference type so I’m just going to create a very simple function called say hello and just have it do a console log of hello and then down here let’s swap this out for say hello so you’ll see for the the value for the console log of the value it’s just the function itself I didn’t call it with parentheses and notice that instead of object it says function now it’s still an object it’s just defined as a function object and I’m going to put the documentation link here if you want to read more about that and in the final version of the sandbox I’ll label what these links are and stuff so I’ll make things a little neater but yeah that’s it as far as what the the types are the Primitive types and reference types or objects in the next video I just want to quickly go over how those are stored in memory all right guys so in this video we’re going to look at how primitive and reference type data is stored in memory and one thing I want to mention is if you’re a beginner and some of this is kind of confusing that’s okay that this is kind of like behind the scenes stuff and the reason I’m I’m putting it in the course at this point is just to give you a a bigger picture of not only the syntax to write for you know your JavaScript code but to also understand how JavaScript works so if you don’t completely soak in this video that’s that’s absolutely fine you can always come back to it later and we’ll talk more about this stuff later as well so when we store our data when we set a variable if it’s a primitive type it’s stored in an area in memory called the stack okay if we store reference type such as an array an object a function that’s stored in an area of memory called the Heap okay so you have the stack which is where your primitive data is stored and you have the Heap where your reference types are stored so just keep that in mind all right now to to kind of visualize how we store and access data I created this this diagram with kind of multiple scenes so first off let’s say we create a couple variables we have a name that’s equal to John which is a string which is a primitive type and then age equals 30 which is a number which is also a primitive type now this box over here represents the stack in memory so you can see age the name of the variable and 30 the value are stored on the stack same thing with name and John now if we were to create a variable called person and set that to an object which is a reference type you can see the variable is stored on the stack but it acts as accesses the data by reference and that data is stored in the Heap all right now just to kind of show you more about how this works if we create another variable called new name and we set it to name okay up here which is John then on the stack we have a new variable called new name and we have a new piece of data called John name is still equal to John and now new name is equal to John let’s say that we want to take that new name variable and reassign it remember when we use let we can reassign so now we have new name equals Jonathan so it overwrote the old value of John to Jonathan now let’s kind of do the same thing and say well we’re going to create a new person variable and set it to person which is this object right here Brad name Brad age 40 41 now but that’s fine so new person is put on the stack the variable and it points to the same reference that person does okay so it doesn’t create a whole new value like up here where we created John again it just points to that area in in the memory Heap so if we were to let’s come down here and let’s say new person dot name which is a property this property right here set that to Bradley now what’s going to happen is we’re changing in the Heap that name value of Brad to Bradley so new person.name is going to be Bradley but so is person.name in fact right here if we logged person.name it’s going to be Bradley even though we changed new person.name the reason for that is because they both point to the same reference all right so that’s kind of what I want to get across here is with primitive types the value is stored on the stack so even if you change new name to something name is going to stage on because John is there it’s solid on the stack with objects and arrays and so on you just you have a reference so if you set a variable to another variable and change something in that it changes the the reference so what I want to do now is jump into vs code and show you this this exact thing in the text editor so I have this empty script JS and we’re going to do the same thing let’s say const name equals we’ll set that to John and then we’re going to set the age equal to 30. so these are both primitive values in fact I’ll put a comment here let’s say these values are stored on the stack all right now let’s say reference values are stored on the Heap so let’s say const and we’ll say person equals and let’s set that to let’s say name and we’re going to have an entire section on object literals like this so don’t worry if you don’t fully understand the syntax so we’ll say age 40. all right so we have our permanent values and we have our reference values so I’m going to do what we did in the uh in the slide and let’s say new name and I’m using let here because I’m going to reassign it so say new name you set that to name and let’s just do a console log down here of both name and new name so now we get John and John for both the name and new name and don’t worry about this being crossed out it’s just because name is a deprecated property on the window object it has nothing to do with what we’re doing so now let’s go ahead and reassign we’ll say new name and we’ll set that now to Jonathan so if I save that now we get John and Jonathan now let’s try the same thing with the reference type so I’ll say let new person set that to person and then down here let’s console log person and new person and we get both they’re both the same right name Brad age 40. so now what I’m going to do is take new person which I got the value from uh from person but remember these are stored in the Heap and they’re accessed by reference so if I were to change the new person name to Bradley and I save that notice both person and new person both are now Bradley okay because these are both stored in the same spot in um in the Heap and they’re being accessed by reference and that diagram should really help you understand why it’s doing this right you can see they’re both pointing to the same spot but with the Primitive values the values are stored right on the stack all right so I hope that this made sense in the next video we’re going to look at type conversion because sometimes your types can change whether it’s implicitly or explicitly so we’re going to talk about that next all right guys in this video we’re going to talk about type conversion so type conversion or type casting is the process of explicitly converting a value from one type to another for instance you may have a string value of five so five with quotes around it and you want to convert it to a number of five so that you can maybe do some arithmetic operations on it or whatever you’re going to do now there’s also something called type coercion which can be explicit but it usually refers to having your types changed implicitly okay without you you know purposefully doing it so we’re going to talk about that in I think the video after the next one but in this one I’m going to show you how to explicitly convert types now let’s say we want to convert a string to a number so I’m going to say let amount and I’m using let because I’m going to reassign this but let’s set it to 100 wrapped in quotes and then let’s do a console log of the amount value as well as the type so we’ll say type of amount and if I save that you see we get 100 and string so there’s there’s a few reasons you might want to convert this to a number if let’s say someone’s submitting a form and the number comes in as a string but you want to run some operations on it you can’t do that with a string you want to change it to a number so there’s a couple ways we can do that the first is using the parse int function so we can say amount I’m just going to reassign it to let’s say parse int which is a function so we use our parentheses and this is going to take in the string okay which is in the variable of amount so now if I save that you can see we get 100 which is now a different color and we get number as the type now another way to do it is by using the the unary I think it’s called unary operator it’s just basically the plus sign and this is the method that I like to use it’s a newer way to do it so we can say amount equals and then just do plus amount so if I save that you can see that also converts it to a number and then the third way we can do it is with the number method or the number Constructor and we do that by just saying number with parentheses and then we can pass in a string and I save that you can see now we get it as a number so those are some different ways you can use to parse it to a string to a number and I’m just going to put a comment here let’s say change string to number all right now let’s look at some ways that we can change a number to a string so I’m going to come up here and change this to 100 which is a number if I save this you’ll see it’s a number and now I want to change this to a string so one way we could do it is say let’s say amount equals amount and then there’s actually a method called to string okay so a method is a function that’s attached to an object now if I save this you’ll see it’s now a string now this this actually brings up a question or it should bring up a question we know that this this right here is a number which is a primitive type which means it’s not an object now methods are properties on objects so so why does this work you know this should be a primitive it doesn’t have methods well the answer to that is Javascript actually creates a temporary wrapper if when we use two string it creates a temporary wrapper of the appropriate object type so this amount which is a primitive doesn’t intrinsically have any methods on it because it’s not an object but since we’re trying to use two string on it JavaScript creates a temporary uh wrapper of the associated type okay so hopefully that makes sense now that kind of stuff isn’t really beginner JavaScript but like I said I want to touch on some of the the fundamental concepts and how JavaScript works as you go through this course so you might not retain little things like that but that’s okay you know if as long as you remember the syntax and you know what’s going on that’s fine you don’t really have to know what happens under the hood but I will I do want to just talk about some of that stuff now another way we can do it is we can say amount equals let’s just comment that out so we’re going to say amount equals and then we can also use the string Constructor just like we have a number Constructor so I’ll pass in here Mount and now if I save that you can see that it is a string now if you have a decimal right so if let’s say this is amount is 99.5 and you want to let’s say it’s a string of 99.5 and you want to convert it to a number of 99.5 which is a decimal there’s a method you can use called parse float you don’t want to use parse int because that’s going to be an integer which is either a positive or negative number so let’s come down here and let’s say change string to decimal so what we can do is say amount equals and to use or to change it to a decimal we can say parse float and pass in the amount and then let’s save that now the actual type like within JavaScript is going to be number but let me show you what happens if we use parse int if I say Parts int and I save it’s going to be an inch it’s going to be 99. the the type underneath is still number either way but it’s going to screw up your formatting if you need this to actually be 99.5 so in that case you definitely want to use pass float all right I’m just going to change this to change change to convert okay so the next thing I want to show you is the Boolean Constructor which will turn a number into a Boolean now in JavaScript we have a concept of truthy and falsy values and I’m going to get into that soon but for now just know we can actually change a number so let’s make let’s make this back into 100 actually let’s make it into a one and then let’s come down here let’s say convert number two Boolean and I’m going to say amount and I’m going to set that to Boolean remember Boolean is a true or false value I’m going to set that to amount let’s see what we get so as you can see we get true and we get the type of Boolean now one is what we call a truthy value if we convert it to Boolean it’s going to be true if I set this amount to zero and we save we’re going to get false okay zero is a falsy value and I know that that sounds confusing but I’m going to have a whole video on truthy and falsy and then any other number like 10 or anything else is going to be true 0 is the only one that’s going to be false now let’s look at what happens if I’m just going to comment this out let’s look at what happens if we try to take a string that is not a number and or I should say is not a number in a string like something like hello and what if I try to parse that into a number let’s see what we get so we get a value of Nan or Nan and what this stands for is not a number okay it’s uh it’s actually a special number as you can see it does have the type of number but it’s a special number that represents not a number and it can this is kind of confusing um so there’s some really strange and quirky aspects of JavaScript the good news is most of it doesn’t get in your way in Practical development it’s just when we start to Dig Down Deeper if things can get a little weird so Nan is a property of the global window object and it’s a non-writable property and there’s actually five different types of operations that can return Nan and that’s when a number can’t be parched which is what we’re seeing here also math operations where the result is not a real number like trying to do like square root of negative one in fact I’ll just say console log and I know we haven’t talked about the math object yet but there’s a square root here and I’m going to do negative one if I save you’ll see that also gets Nan another one is if the operand of an argument is Nan like if I do one plus Nan let’s try that console log one plus n a n okay we get Nan also if we try to do like undefined let’s say undefined Plus undefined that gives us Nan and then the last way we can get it is any operation that involves a string and is not an addition operation so if I do like a string let’s say Foo and we’ll say divided by three I also get Nan so those are the five ways that you can end up with this but the most common thing you’re going to do here is convert a string to a number especially when you’re dealing with like form data because you might want to do some operations on a number that you can’t do on a string all right so that’s it in the next video we’re going to look at operators all right so in this video we’re going to take a look at operators so operators are symbols that we can use in Expressions to do certain things and there’s a few different categories of operators the first first one I want to look at is arithmetic so let’s say one and let’s say arithmetic operators all right so these are going to be pretty simple obviously you guys know addition and subtraction and all that but I’m just going to initialize a variable just to Output so I’ll say let X and then down here we’ll say just console log X and let’s say x equals and we’ll just do five and say five plus five so this is obviously the arithmetic the addition operator if I save that of course we get 10 copy that down let’s do minus we get zero let’s do we’ll copy that down again and we’ll do multiplication that gives us 25 and then we’ll do division that gives us one now in addition to those the you know the basic four we also have the modulus operator so if I say well if I do five and then the modulus which is the percent sign and 5 that’s going to give me zero because 5 goes into five once with no remainder so what this does is it gives us the remainder if I were to do 7 we know 5 goes into 7 once if I save that you’ll see we get 2 as the remainder so this this can come in handy for different things now the next thing I want to show you is concatenation I think you spell it concatenation so the concatenate concatenate operator is the plus sign so you can essentially think of the plus sign having two different functions in JavaScript one obviously is addition but one is to concatenate strings together so if I use the plus sign with two strings well let’s say X equals so I’ll say hello which is a string and then plus and then another string of world if I save that what it does is it just concatenates or puts the two together all right now if I wanted a space in between I could either put a space here that works or you might do another you might concatenate again just a set of quotes with a space but if I want to go back to another string then I would add another plus sign here so that’s concatenation I came to JavaScript from PHP like I learned PHP first and in PHP the period is the concatenate and concatenate operator so this does the same thing that the period does in PHP so the next one is the exponent operator which is a double asterisk so let’s say x equals and what we’re saying here is we want to get the result of the first operand to the power of the second so we’ll say two double asterisks 3 and that gives us 8. all right so that’s exponent then we have increment so increments there’s a couple ways that we can increment a number so let’s say we have X let’s set it to three actually we’ll set it to one and then let’s say I want to increment it by one I could do x equals X plus one if I do that we get 2 or I could use the increment operator which is double double plus sign if I save that I also get 2. and of course we can also do decrement so right now X is two so let’s say x equals x minus one so that’s one way that we could subtract one or we can just do x minus minus and that also gives us one so those are all the basic arithmetic operators now we’re going to look at assignment operators so the first is just a value assignment which is very simple we’ve been doing that all along so we can just say x equals 10 that’s just assigning a value now we also have addition multiplication subtraction basically all the stuff we did up here we can use those as assignment operators so what I mean is I can say x and then plus equals let’s say five and if I save that we get 15 because X was 10 but then this is the same as it’s the same as doing this x equals whatever X is Plus 5. and in fact if we did one that’s the same thing we did up here to increment right same thing as this as well and then we can also use other we can say like minus equals that gives us 10 because remember it was 15 but then we took 5 away then if we do the multiplication so we get 50 then we can do division we get 10 and we can also do modulus which gives us zero there’s even the exponent I’ve never used this but you can also do that so those are assignment operators now the next batch that I’m going to show you let’s say three these are comparison operators which you’re going to use quite a bit so the first one is is if something is equal to and I’ll comment these a little better for the final version but I don’t want to waste too much time with comments so let’s say x uh we’ll say x equals and then let’s say 2 and I’m going to use the equals operator which is double equals okay remember the single equal sign is assignment that’s what I’m doing right here I’m setting something to X but right here I’m evaluating an expression using the comparison operator of equals so what that’s going to give me is true it’s going to give me the result of this it’s going to put that into the variable and then I’m you know console logging that now if I were to change this to 4 then obviously that’s going to give me false so that’s equal to now we also have the equal value and equal type operator which is a triple equals so let’s say 2 and then let’s do triple equals two now that’s going to give me true obviously but I just want to show you if I were to comment this out for a second and then on the double equal change this to a string that’s going to give me true because the double equal does not test the type it only tests the actual value inside all right now if I were to uncomment this and make this to a string and save I’m going to get false because the triple equal not only evaluates the value but it evaluates the type as well so the types have to match and in this case this is a string this is a number now it’s really preference on what you use but what I do and what I’ve what I see a lot of people do is pretty much always use the triple equals I think that that’s going to save you some headaches and save you some hours if you just always use triple equals there are a couple situations where you might not want to there’s there’s quite a few where you don’t need to but it’s in the most in most cases it’s not going to hurt all right so that’s just what I do it’s up to you you’ll you’ll kind of find your groove as you as you move along all right so let me just put a space here now we also have not equals so I’m going to say x equals 2 and the knot is is represented with an exclamation so I’m going to say not equal but just one equal in this case so this is this is basically the opposite of this even though it only has one equal sign so I’m going to say 2 and save that and we get false and the reason we get false is because 2 is equal to 2. so obviously 2 not equal to 2 that expression is going to be false now same rule applies with the double equals as with this if we were to do a string that’s still going to be false because in this case 2 is equal to this if we’re using the double equals now we also have the not version of this so if I were to copy that down and then let’s just add another equals onto that if I save that we’re going to get true and that’s because it’s true that this is not equal to this when we’re checking the type as well if I remove these quotes and save that that’s going to be false because it’s false that this is not equal to 2 because they are equal all right now the next thing I want to show you is greater than less than which are pretty simple so let’s say x equals 10 let’s say greater than 5 and then of course that gives us true and we’ll just copy this down and let’s change this one to less than so that’s going to be false we also have greater than or equal to and we have less than let’s do yeah I’m sorry that’s less than or equal to then we also have greater than or equal to so very simple those don’t really need any explanation if you did like third grade math so that’s all I want to talk about in this video basically I needed to you guys to know this stuff in order to understand the next video of type coercion so a couple videos ago we looked at type conversion where you as a developer you want to change a string to a number or a number to a string in this video we’re going to look at type coercion which is more implicit and typically coercion happens when you apply operators to values that have different types so what I’m going to do is just create a variable of X and I want to console log the value of x and also the type and the reason I do this is just so we don’t have to create a bunch of different variables so let’s say we want X to equal the number five plus the string with 5 in it and let’s see what we get so if we look in the console you’ll see we get 55 but we get it as a string so this is an example of type coercion where JavaScript implicitly changed this to a string all right because what happened here is it was concatenated with the plus sign so if I were getting a string for some reason and I wanted to add it then I would convert this first so for example actually let’s just copy it down because I’d like you guys to have all the code we write and let’s just wrap this in a number and then that will obviously add them together because now this is a number now what if we were to say x equals five and then let’s multiply a string what do you think we’re going to get here so if I save that we get 25 which is a number so JavaScript in this case did the opposite it converted or coerced this string into a number and the reason for that is because if you use multiplication between strings that doesn’t make any sense you’re not going to get anything from that so JavaScript decided to coerce it to a number so it could be multiplied so let’s see what happens if we do x equals and let’s say 5 plus null in that case we just get 5 as a number so no is actually coerced into a zero and we can see that if we do let’s say x equals and we’ll use the number method here and pass null in and you’ll see we get 0. okay and you can use this on anything this number so if I say number let’s do copy that down we’ll do true and false I’m just going to comment out this one to see what we get for true you can see we get one so true as a number is one false as a number is zero so with that said what do you think happens if we say let’s add five plus true let’s go ahead and save that we get 6 because true is being coerced into a number and true as a number is one okay same if we do let’s say five plus false obviously we’re going to get 5 because false is zero as a number and again we’re going to talk about truthy and falsy values in a little bit so if we do let’s say x equals 5 plus undefined we get Nan which is not as a number now remember in the what was it was it the last I think it was the last video where we talked about Nan and if we add anything to undefined um then we’re going to get Nan okay including itself so now you should be pretty familiar with types we have our seven primitive types and then we also have reference types or objects and we talked about how they’re stored in memory we talked about implicit and explicit type conversion or coercion so what I want to do now is focus on individual types such as strings and numbers and start to look at how we can use them manipulate them use some of the methods that we can use with strings and numbers and just get you a little more familiar with that all right so we’ll look at strings next all right guys so we’ve looked at the different data types the Primitive types versus the reference types or objects we’ve looked at conversion and coercion and operators what I want to look at now is individual data types and just certain things we can do so in this video I want to look at strings so we’ll talk about concatenation a little bit more as well as template literals which are really really helpful and also some of the different methods that we can use on a string now like I said in a past video strings are primitive however they if we use a method like let’s say two uppercase on a string which is primitive JavaScript puts a wrapper around it and makes it a string object so in that case we can use methods all right so let’s start off here by initializing a variable I’m just going to say let X because I’m going to do a lot of output so let’s say console log X and then we’ll start off here with concatenation which we’ve already gone over we basically have our string actually you know what I’ll do is uh let’s let’s do like a sentence we’ll say hello my name is and then I want to put a variable and I’ll set those variables here let’s say name equals John or whatever you’d like and then let’s say const age equals 30. now here I want to use the name variable so what I would do is concatenate name and you don’t want to put quotes around this because it’s a variable and then we want to concatenate back into a string and never mind this strikethrough it’s just because the window object has a deprecated property of name but it doesn’t concern us and then I want to say and so my name is John and I am space concatenate on the age plus and then let’s do another space here in the quotes and years old so that is you know kind of kind of a pain in the ass but if I say we say hello my name is John and I’m 30 years old if we change this to let’s say 31 and save obviously that’s going to Output now I want to show you how to do this same thing using something called template literals also called template strings so I’m going to take X and just overwrite what we just did and I’m going to use back text this time okay so back ticks are used for template literals not quotes and then we can do the same thing we’ll say hello my name is now instead of having to you know put a space here and then concatenate here what we’ll do is use this syntax a money sign and then curly braces and then in here I can put my variable if I save that you’ll see it says hello my name is John now this isn’t just for variables the syntax it’s for any JavaScript expression in fact I could just do like one plus one and it’ll evaluate it to two so we can essentially write our JavaScript in here so I just wanted to say name and then I’m going to just space and then and I am I want to put my age here so again I’m going to use the syntax and say 30 31 years old and you can see that that output’s fine so this to me at least is much much easier and cleaner than this so you’ll be using template literals quite a bit now template literals didn’t come into JavaScript until 2015. it was the es2015 or es6 update was where template literals were were introduced before that you would have to do this so now what I want to do is look at properties and methods or let’s say string string properties and methods so if I say let’s say x equals and then hello world actually I’m going to give this a different variable let’s say const s equals hello world so we have a string of hello world and if I want to let’s say get the length there’s a length property for that we can use for Strings so I’m going to say x equals and then s which is our string and then dot length now since it’s a property we don’t add the parentheses methods use the parentheses because methods are functions properties are more like attributes so if I save that you’ll see we get 11. now as I S as I said earlier the strings are primitive but we can use properties and methods on them because of the wrapper that JavaScript gives it when we run these properties and methods so essentially what JavaScript does behind the scenes Let me just show you real quick if we were to do let’s say x equals type of and then we’ll do type of s and let’s just comment that out because that’ll overwrite it so we get string right but what the wrapper does when we run a property or method is it basically says new string and it creates this string object now if I save you’ll see I get object okay and I’ll just leave it like that you can leave it with just quotes hello world or you can use this new string but I’m just trying to let you know what happens kind of behind the scenes when we use a method or a property and we can also access the the the individual characters so for instance if I say let’s go down here if I say x equals and then S I can use this syntax and it starts at zero just like an array if I save that you’ll see I get H I get the first character if I do one I get e so I get the second character and so on okay and I’ll just put a comment here we’ll say access access value by key so we have number key numbered keys now another thing I want to show you and we’ll get much more into this later with object oriented programming is objects have what’s called a prototype and that’s where the methods are stored so if I do x equals and the way we access the Prototype is double underscore Proto double underscore and I’m setting that to X so I’m going to save and show you what we get here so if we look down here we have all these different methods so for instance we have two uppercase two lowercase we have split substring all these different methods that we can use with strings and I’m going to show you some of them not all of them I’ll show you some of them now some of them later and and some you’ll never use which I probably won’t won’t get to but you can see all these different methods that are available on the Prototype so and if we console log s and I save that if we look down here you’ll see prototype right here which has the same thing so this is is the same thing as this all right and it even shows you the different Keys the different numbered keys but let’s put that back to X and now we’re going to look at some of these these properties so if we want to change the case we could do x equals let’s say our string and then we’ll do two uppercase which is a method so of course we need our parentheses if I save that we get hello world and all uppercase I’m actually going to comment that down and we also have two lowercase okay so that will change the case there isn’t a method that will make like the first letter of each word uppercase but we can do that in JavaScript it just there’s no single method to do it I’ll show you that in a little bit so the next one is Char at and that will return the character at the specified index so if I say x equals s dot Char at and let’s say we want to get the first character that would be zero if I save that that gives us H which is essentially the same as as what we did up here where we were accessing by the key so this will give us the same as this now if we want to know the index of a specific character so kind of the the inverse of this we could say s equal x equals s and we can use index of so if we say index of and let’s say we want the index of H if I save that we get zero let’s say e now there’s more than one e what this will do is give us the first e which is the the number one index which is the second character so this right here because it’s 0 1 2 3 and so on if we put let’s say d that will give us 10 which is the the last index so the next one is substring which will search a string for a specified value so let me show you if we do s dot and then substring and then we can this will take in two indexes so let’s say we want to get from 0 to 4. if I save that we get hell because if we look at hello world and by the way this could be just a string you know just the quotes hello world if I change this s to that and save we get the same thing but I just did that to show you basically how to how to turn a string into a string object so we get hell because it’s 0 1 2 3 and then it ends at four all right if we want to get hello then it would be zero to five save that we get hello and we don’t have to start from zero if I do one and save we get lo you know Edo Governor if we do 2 to 5 we get llo all right so you can get any it’s it’s a substring it’s just basically a string inside of a string and another thing we could do is run substring with a single argument let’s say seven if I save that we get o r l d so what this did is it started at seven and then it just gets the rest of the string all right so zero one two three four five six seven so it started here o is seven and then just went to the end if I put a bunch of stuff on the end of this and save it’s gonna add that to it now the next one I want to show you is slice which is very similar to substring in fact I’m going to just copy this and we know that 0 to 4 will give us access to zero to five that’ll be hello and actually I’ll just save it you’ll see it get hello with substring and if we do slice we also get hello now there’s a few differences one of them is that with slice we can start from the end with negative numbers so for instance if I do let’s start we know that hello world altogether is 10 right it’s 10 characters or 0 through 10 I should say and if we want to start the beginning using negative we could do negative 11. so if I do that and then actually if I just do that we’ll get hello world because it starts at the beginning negative 11 all the way to the N now if I want to get the word hello we could do let’s see that would be negative 10 nine eight seven I think negative 6 should give us so if we save that yeah so that now we get hello so we’re basically just starting from the end yeah so I mean you could use substring or slice interchangeably in a lot of different situations another one that I want to show you is trim so let’s uh let’s say s dot trim and what this does is it trims the white space so what I’m going to do is set let’s just do this we’ll say hello world but I’m going to add you know a bunch of white space here and if I were to just do that you’ll see it it adds the white space here to the beginning but if I were to use trim and say x equals x dot trim and save it gets rid of that white space so that can be pretty helpful next let’s look at replace so I’m going to say x equals and let’s set um so we’ll take string and then we want to replace and let’s say we want to set the word world to I don’t know John so what we could do is search for a string within a string that’s going to be the first argument so we’re going to search for world and then the second is what we want to replace it with so let’s say John if I save that we console log X now we get hello John now let’s look at includes which will return true or false if a string is found within that string so if I say s dot includes and we want to let’s say we want to find hello if I save that we’re going to get true because this is found within that s string if I do hell that’s going to be true if I do Hal e or how I I save that that’s going to be false because this string is not found it’s not included in the hello world string okay so that’ll return true or false and then if we want to return the Primitive value of a variable so let’s say x equals s dot we can use value of and if I save that we’re just going to get the hello world okay even if we were to do this up here so this is a string object right if we console log s we get the string which is an object if we did type of acid should show object but if we want to get the true primitive of that which is a string we would use value of and then the last one I want to show you is split which you I use I’ve used quite a bit it’ll split a string into an array and it takes in a separator as an argument so let’s say s dot split and then if I just do that on its own it’ll just give me an array with the entire string inside of it now let’s say we want to split by the space because it’s hello space world then we would pass in here a space and now you’ll see I have an array with two strings and I know we haven’t really gone over a raise yet but we get an array with two strings okay if I wanted to split every character into an array item then I would just put just quotes if I do that now we have an array with 11 of items and each one is each character okay so that’s split now there’s a lot more methods so you can see here and I’m going to go over some of these in future videos some of them I won’t because they’re not really used that much but of course you can experiment on your own as well so I hope that this helped you understand some of the things we can do with strings now in the next video I’m actually going to give you guys a challenge based on the stuff we’ve already learned all right guys so we’ve arrived at our first challenge every once in a while I’m gonna ask you to figure out a problem or do something using the stuff that we’ve already learned okay I’m not going to ask you in any challenge to do something that involves something we haven’t done yet or haven’t learned yet now if you feel stuck or you can’t figure it out on your own that’s absolutely fine I’m gonna walk you through the solutions so that you can really understand how to solve the problem now this one is the capitalize challenge so basically what I want you to be able to do is take a string with a single word and just make the first letter uppercased we know we can do like so I could do my string dot two lowercase which would make it all lowercase or my string dot two upper two uppercase would make it all uppercase I want you to just uppercase the first letter now it doesn’t have to be a string with multiple words where you uppercase the first letter because in order to do that you have to to understand some type of iteration and I haven’t gone over any Loops or anything like that so I’m not going to ask you to do that if you already know that stuff and you want to do that that’s absolutely fine but yeah I just want you to basically take this my string which has a string of developer or it could be any word and when you console log my new string which should be a variable you create that has the uppercase D for developer or whatever the word is now just to give you some hints because this is all stuff we went over you can use the Char at method which will give you a character at a specific index you could also do this format where you have you know my string and then brackets and 0 1 2 3 Etc so you know how to access the first letter and then you also know how to make all of these everything uppercase and then you also know how to basically pluck out stuff from the string okay take strings from a string using either the substring or slice methods okay so using this stuff here you should be able to uh you know come up with this my new string which will have an uppercase for the first letter all right so go ahead and pause the video now and try and do that on your own so now what I’m going to do is close that up and we’re going to go ahead and solve this Challenge and I’m just I just want to open up my console over here as well so we know that we have a variable called my string and that’s set to a word a single word that’s all lower case we’re going to use developer and then I’m going to have multiple Solutions but they’re all going to be very very similar so I’m going to initialize my new string and let’s say this is going to be Solution One so we want to take my new string and then I want to set that to my solution now let’s remember the hints Char at is used to get the character at a certain index you can also use the bracket syntax and we know we want to get the first first thing here right first character so let’s say my string and then let’s use Char at and let’s say zero okay and then let’s just do a console log down here of my new string and the goal of this is to get my new string to be the word developer with with an uppercase D so we know that we can get the first character like this now let’s take that first character and make that uppercase so we can do that by chaining on to uppercase right so if I do that and I save now we have an uppercase d so what we need to do now is basically just take the rest of the string not including D and concatenate it onto it so let’s go ahead and I’m just going to close that up let’s concatenate and then I’m going to take my string which is developer with a lowercase D and I’m going to use substring okay so I’m going to say substring and I want to get just developer okay no D so what I can do is just put a 1 in here because what that’ll do is take the one position which which is e remember it starts with zero and it’ll get that over all right so now if I save this I’m going to get developer with an uppercase d now the other Solutions we can use are going to be very similar so let me just copy that down we’ll say solution two and then the only change I’m going to make here is instead of using Char at we can just use the bracket syntax so we can say my string and then we want to get 0. we’re going to uppercase that so that that makes the D uppercase and then again we’re just going to tack on or concatenate the substring which is the the rest of it the available if I save that we get the same thing so let’s grab these and copy these down and then this is going to be solution three and in this case what I want to do is instead of concatenating I want to use template literals so I’m going to get rid of the plus and basically what we have here are two different Expressions right the first one gives us uppercase D the next one gives us developer so I’m going to take the first expression and let’s put our back tick here and we’re going to wrap this first expression in curly braces okay and then the second one here we’re going to wrap that as well so that ends here and then we want to make sure we put the ending back tick on and we don’t need to put a space here so if I save that we get developer if I were to put a space here we’ll get this uppercase D and then available and another thing we could do is instead of using substring we could use slice okay so it just shows you that there’s multiple solutions for everything really and there’s a lot more solutions you could have including stuff that we haven’t gone into yet but as I said when I have a challenge for you guys it’s going to only include stuff that we’ve already gone over now if you wanted to uppercase every the first letter of every word you would have to iterate through it somehow and we haven’t gone over like for Loops or four each or any of that um so you know we have gone over turning a string into an array so you can take that as a clue as a hint if you do want to try it on your own but but that’s it for this challenge let’s go into the next video okay so just like we have string or methods and properties that we can use for Strings and we have string objects we have the same for numbers so let’s go ahead and create a variable here and I’ll set it to let’s say the number five and then I’m going to console log down here if I log number we get five if we look at the type of this variable it’s a number now we can also have number objects using the number Constructor so we can say new number and it probably won’t be too many times where you use this explicitly but like I said before it does JavaScript does put a wrapper around it and turn it to an object if you use methods but if we look at the type you’ll see now we get object and you can set this to five if you want or keep it like this I’m just going to keep it like this and then I’m going to just create a variable for our output because I just want to show you some of the methods that we can use now we’ve looked at two string so if we say num dot to string that’s going to give us the number as a string now there is no length property for numbers so if I were to say x equals num dot length you see I’m going to get undefined however if you want to get the length of a number like you want to know how many digits it is you could do two string right so just turn it to a string and then chain on length and now you’ll see I get one if I were to add let’s say let’s say 500 then it gives me 3. all right so that’s two string we also have two fixed which is going to give you or allow you to specify the number of decimal points so let’s say dot two fixed you can see we have the drop down of methods here so two fixed and I’ll say two and even though our number is 5 it’s just going to give us 5.00 now if we look at the type so if we look at the type of X you can see it is a string so if we take a number and then we use two fixed on it it’s going to turn it into a string representation of a decimal so let’s get rid of that and then if I were to let’s say this number I’ll make it 5.4567 if I save that I’m just going to get 5.46 now it gives me 6 because it rounded this up right if I were to do 4.52 and save that then I get 4.5 now we also have two Precision which is kind of similar but we count we we count the whole number so if we say three actually let’s do two and I save it then it doesn’t give me two decimal places it gives me two in total so we’ll do 5.5 and if I were to change this let’s say 4 5 to 4 2 and save that it’s going to give me 5.4 right if I say two Precision three then it’s going to give me three digits 5.42 so that’s two Precision we also have two exponential so say x equals nine dot nine num dot two exponential and that will get us the exponential of let’s say say two if I save that then we’re going to get that as a result let’s actually change this back to five so two precision and two exponential are ones that I don’t really use very much now you you might be working in a different location a different Locale so there is also two Locale string so if we do that and then I mean by default I think it’s going to do where you are so for me it would be en us since I’m in the US which just gives me five but let’s say you’re in Egypt which is I think AR Dash e g and save that’s the representation of the number five I guess I mean I don’t I don’t know the Egyptian numbers or whatever but I’m guessing that’s what it is all right so that’s two Locale string I’m just going to put that back to en dash us now there’s not too much else to look at as far as methods if we do num and we look at the Prototype I mean that’s pretty much it all the ones we looked at right I mean there is value of as well so if I do x equals num dot value of and we save that let’s console log X that just gives me the value right now there are on the number object itself there are properties so for instance we can get the largest possible number for the number type by doing number with a capital N Dot and then all capital Max underscore value so I’m going to set that to X so that’s the largest number possible that we can use with number and then if you want to get the lowest possible we can do x equals let’s say number Dot and then min value which is that number there okay so there’s not much else to look at in terms of methods that we can use on numbers so in the next video I want to look at the math object all right guys so JavaScript has a built-in object called math and this object has a bunch of methods on it that have to do with mathematical operations and it comes in handy when you need to do things like find the square root of something or round up or round down there’s also a helpful random method that you’ll probably use quite a bit so we’ll go ahead and take a look at that I’m just going to console log the math object itself and you’ll see that we have an object here that has some properties so it has pi for example and then a bunch of methods and I’m definitely not going to go over all of these and so some of them I don’t even know what they are or what they do and I’ve never used them but we’ll go over some of the common ones so let’s do let’s just create a variable to work with for our output so we’ll console log X and let’s say x equals let’s say we want to get the the um the square root of a number so we’ll do math Dot and then sqrt okay so that will get the square root of a number we’ll just pass in 9 here and if I save that we log out X you can see we get 3. so that’s the square root if we want to get the absolute number then we could use the ABS function so our method so we’ll say absolute and if I do 5 obviously that’s five if I do negative 5 we also get 5. that’s the absolute so we can also round let’s say x equals math dot round and let’s put in here let’s say 4.6 if I save that we get 5. if I put 4.2 and save it we get 4. now you can also round up or round down so for instance let’s do a round up and that’s going to be with the seal method so it’s going to be c e i l like ceiling and let’s put in 4.6 or I’m sorry let’s put in 4.2 and if I save it still goes to 5. okay so this will just round it like normally and then this will always round up so even though it’s 4.2 it’s rounding up to five now you can do the opposite and round down with the floor method so if I were to do math dot floor obviously that’s going to give me 4 but if I even if I do like 4.9 and I save that’s still going to give me 4. so these are pretty common seal and floor I use those in a lot of different situations um another one is pow so it will return the value of our number raised to a specific power so let’s say math Dot pow and let’s say we want to do 2 raised to three then we get eight okay we can also do the Min and Max so let’s say x equals math dot Min and what this will do is return the smallest of two or more numbers so if I do let’s say four and five and I save that’s going to give me four if I do another one pass in 3 that’s going to give me three and we can do the same thing with Max so if I were to do math dot Max and pass the same in we’re going to get 5 because that’s the largest of the three now a really common method is the random method so let’s say x equals math Dot random all right now if I run this what it gives me whoops it should be uppercase if you just use lowercase it’s going to look for uh just a variable called math so you have to use uppercase so what this will do is you’ll see I’ll keep reloading the page and every load it’s going to give me just a random decimal between 0 and 1. now that’s usually that’s not usually what you want usually you want to get like a number from say one to ten or one to a hundred so what you would do and what you’ll see a lot of let’s just um let’s use a variable of of Y here so I’ll say let y and we’re going to set that to math Dot random and then if we multiply that by 10 let’s see what we get we want a console log actually let’s just use x I don’t know why I did that okay let’s just do that now what that’s going to give us is a decimal between 1 and 10 right so if I keep reloading here actually I’m sorry not one and ten zero to nine now if I want it to be a decimal between 1 and 10 then what I would do is add 1 to this so let’s just put a plus sign here and then we’ll add one now it’s going to be one to ten let’s see if I can get 10. there it is so it’s going to be 1 to 10 as a decimal now what you want to do to make this a whole number is just round it down so we’re going to say math dot floor and we’re going to surround this whole thing and there we go so now we’re going to get a number between 1 and 10. if you want it to be between 1 and 100 we could just do that okay so you’ll see this this exact thing you’re going to see quite a bit because there are many times in programming in general where you need a random number and like I said there’s other methods on the math object if you want to check those out you can we might be looking at some of them later on but in the next video what I want to do is give you a little challenge that involves numbers as well as generating random numbers with with math.random all right so we’re going to do a little challenge here now keep in mind any challenge that I do it only involves stuff we’ve already worked with so I’m very limited with the types of challenges that I can create like I can’t have you guys create a function or anything because I haven’t gone over functions yet so some of these might be a little strange but it’s it’s all I could come up with with what we’ve gone over so far so basically what I want you guys to do is create a variable called X that is a random number between 1 and 100 along with a variable called y that is a random number between 1 and 50. and then I want you to create a variable for the sum the difference the product the quotient and the remainder of X and Y all right and then log the output in a string that shows the two numbers of X and Y along with the operator and result so basically you should have some variables like this that when you log it actually shows something like this 31 plus 15 equals 46 and along with the difference product quotient and remainder for a remainder you can use the modulus operator and then as far as hints the math.random function returns a floating Point pseudo random number in the range of zero to less than one so basically a random decimal and then the math.floor function will round a number down to the nearest integer so we talked about all that in the last lesson so go ahead and pause the video and see if you can just do this go ahead and create like I said X and Y random numbers between these ranges and then have these variables output these strings with the actual equation okay so let’s go ahead and get started so first thing I’m going to do is create my variables let’s say const and we’ll do x equals and remember X should be 1 through 100 a random number and Y should be one through I think it’s 150 I said I say 50 or 150. I think it was 150. so let’s say math dot floor because remember we want to round this down if we don’t use math.floor it’s going to be a decimal in fact let’s just let’s let’s do without it first just to see so we’ll say math.random and I’ll just log stuff as we go so we’ll say console log X and we get just a random decimal that’s going to be less than one basically and then if we want this to be between 1 and 100 what we could do is multiply it by 100 and that’s going to give us what 0 it’s that’s going to include zero so we want to do plus one if we do that then it’s going to be one between one and a hundred but it’s a decimal so that’s why we need to math.floor and round it down all right so now we have a number between one and 100 and then y I’m just going to copy this down Y is going to be between 1 and 150 so we’ll change this 100 to let me just check that did I say 50 or 150 oh I said 50 all right so we’ll change that to 50 and if we log X and Y then we’re going to get random numbers first one’s going to be 1 100 second is to 50. now we want to create variables that will show whatever X is plus whatever Y is equals whatever it equals we want to do the same for the difference in product and so on so what I’ll do is create a variable called sum and we want to get the value first so let’s say X Plus y and we can log out here some so we get 19 right so it’s just generating random numbers and adding them now let’s create another variable I’ll call this some output and by the way if you did something completely different as long as you get the same kind of output that’s absolutely fine there’s so many ways to do this so I’m going to set that to a template literal and in here I’m just going to take X and then say Plus and I’m wrapping these because they’re variables so I’m wrapping them in this money sign curly braces and then let’s say equals and then whatever the sum is okay and then let’s do just a console log because I want to log them all out we’ll say const output or console.log sum output and we can get rid of this and now you’ll see we get 34 plus 12 equals 46 which I think is true if I reload 19 plus 28 37 plus 3. all right so we we get the addition working now we’re going to do kind of the same thing for the difference let’s say this will get some or get the sum and what we can do is just copy this whole thing here and let’s say get the difference and let’s do we’ll call this um diff and we’ll do subtraction let’s say this is going to be our diff output and then this will be minus this will be diff and then diff output okay so if I save that then we get 78 minus 43 equals 35. all right now let’s go ahead and do the product so let’s call this um prod so like I said you just have to have the same time the same output not the same numbers obviously because it’s random but the same kind of output it doesn’t matter how you format this it’s still correct so prod output let’s do that and then that’s going to be the product and then this will be prod output there we go and then we want what else the quotient so we want to do division say quote q-u-o-t output and that’s going to be division so slash and quote and quote okay so we get 68 divided oh that’s not right oh I have a plus sign here make sure that we change that so 1 divided by 12. so we might get decimals here but that’s fine all right now the last one I want to do is the remainder so let’s say get the remainder and I’m going to use RM for the variable and then let’s change the plus to a modulus operator which is the percent sign we’ll say RM output and let’s make sure we change that to the percent sign this is going to be RM and then we want to log out the RM output and there we go so 543 modulo 5 is 3. good now like I said I know that this this is kind of a weird challenge so congrats if you got it but if you didn’t really understand it I I understand that because I only had so much to work with you know I couldn’t have you guys do something that I didn’t explain yet so that’s it in the next two videos the last two videos of this section we’re going to look at dates and times because those are something that are really important and in most areas of programming especially in web development where you have different resources like users and blog posts and all that and you want to have dates so you sign up dates and post dates so something that’s pretty important so we’re going to look at that in the next video all right guys so date dates and times are important in programming and JavaScript has a date object that represents a point in time and lets you do some basic operations on it so basically we can instantiate a new date object with the new keyword so I’m just going to create a variable here just so I don’t have to keep creating new ones we’ll just use this D variable and let’s set D to a new date now if I do this and I console log D you’ll see down here we get Friday October October 28 2022 it has the time it gives me the the time zone now this if we look at the type of this so if we say type of D we get object so the data is an object basically anything that’s not a primitive type is going to be an object now you can turn this to a string so I’ll say d dot to string if I do that then that’s going to be a string all right now if we want to set a specific date what we could do is say new date and then in here we can pass in a value so let’s say we want to do 20 20 we’ll do 20 21 and let’s say 6 10. and if I save that you’re going to see it’s Saturday July 10th now this might be confusing because we use 6 here but yet we’re getting July which is the seventh month so the caveat is that the month is zero based or zero index so if I put a 1 here then we’re going to get February if I put a 0 here then we’re going to get January okay so keep that in mind now if you want to add a time we could keep adding on to this let’s say we want 12 so that’ll be the hour and then we have and you can see right here we have the hour and then we can do minutes seconds so let’s say 12 for the hour we’ll do 30 for the minutes and 0 for the seconds if I save that you can see now we get 12 30. now instead of passing in arguments like that you can also pass in a string so are many different types of strings I should say formatted in many different ways so if I do a string so quotes here 20 21 let’s say Dash zero seven and let’s say 10. if I save that then we’re going to get July okay so set this is going to be correct so 7 is July if we do it like this and we pass in the separate arguments then the month is going to be zero based and if I wanted to add the time there’s a few ways I could do it I could do T and then let’s say 12 colon 30 colon zero zero if I do that now you’ll see the times 12 30. I could also do it this way so let’s clear this up and I could do let’s say 07 slash 10 slash 2021 and then I could do a space 12 30. like that and we get the same thing now there is a known issue if you use if you use hyphens and you use the year first then it could be off by a day due to the time zone so if I do let’s say do a string of 20 22 and let’s use hyphen so I’ll say 0 7 and 10. and then save that you’ll see it actually says July 9th even though I said July 10th so keep that in mind if you do the year first and hyphen it might be off by a day if your time zone is not set um if you put the month first it should work so if I were to do like seven 10 22 which is you know in the US is how we format dates then that does say July 10th and I’m going to put a link here to a stack Overflow that kind of explains why this uh why this happens so the next thing I want to look at are timestamps so the Unix timestamp is a system for describing a point in time and what it is it’s an integer that represents the number of seconds that’s elapsed that’s passed since the date of January 1st 1970 which is an arbitrary date so that that time stamp is expressed in milliseconds so or I should say the timestamp in JavaScript is expressed in milliseconds now you can always get the time stamp by using let’s say d so by using date dot now like that so if I save that we’re going to get the milliseconds that have passed if I reload you’ll see it’ll just keep updating right so that that gives you a way to always be able to mark an exact you know millisecond in time and we use timestamps for different things and we’ll probably use them throughout the course now to get a time stamp of a specific date you can use the get time function or method or you could use value of so for instance let’s say d equals and we’ll create a new date let’s just say we’ll do we’ll do the same thing seven we’ll do 10 in 2022. okay and then I’m going to get the time stamp by saying d dot get time actually I want to I want to log that so let’s how should I do this let’s set that to D so we can see that logged all right so this is the exact time stamp for this date now I didn’t put a time in here so we might want to do that so we could do like let’s say 12 30 0 0. okay so that’s always going to be that exact time stamp and then again you can also use value of so if I say d equals D dot value of and save I get the same thing if I want to get the exact time stamp for right now this date and time I could just clear that up and save and obviously that’s going to keep changing okay as time moves so you can also create date objects from a time stamp so let me just grab this right here which was a couple seconds ago and then I’m just going to say d equals new date and just like we can put in arguments or we can put in strings we can also put in a time stamp and then let’s save that you’ll see it’s October 28th and it’s going to be nine o’clock 49 seconds that’s what this time stamp represents right now it’s 901 okay so that was about a minute ago so let’s see the JavaScript timestamp is expressed in milliseconds if you want to convert it to seconds then what you could do is and just ignore the D equals for all these the only reason I’m setting it to the D is just so we can log it and see what what these actually give us but we could just do math dot floor and then we’ll take the date dot now which will give us the the time stamp of right now and then simply divide it by a thousand because there’s a thousand milliseconds in a second we save that and that’s the timestamp in seconds okay just remember in JavaScript by default the timestamps are milliseconds so in the next video I just want to look at some of the different methods that we can use on date objects and we already looked at the get time and value of but there’s a bunch of others as well that we’re going to look at all right so in this video we’re going to look at some of the methods on the date object now I just want to mention I I know that this isn’t the funnest stuff in the world but it’s really important to understand the basics and the fundamentals before moving on to you know building projects manipulating the Dom and fetching data and all that okay we’ll get to that but I think it’s important to know the basics so what I’m going to do here is just create a variable for our output and then I’m going to initialize a date variable so we’ll say new date and I’m just going to use today’s date so I’ll leave that I’ll leave that empty the argument’s empty and then let’s just do a console log of x now I know this might be a little confusing this new keyword we’ll get to that later we’re going to get to object oriented programming and get deeper into JavaScript but for now just know that what we’re doing here is we’re instantiating or initializing a date object into this D variable okay now with like the math object that we used a few videos back we would just do math dot whatever square root and we use the math object directly in this case where instantiating a date object into this variable okay so I guess that that’s a good enough explanation for now we’ll get more into it later so we already looked at some of the some of the the methods such as tostring okay so if we do two string it will just give us a string representation of the date we also looked at get time and also D dot let’s say value of okay so those will both give us a time stamp of the date in milliseconds now if you want to get specific parts of the date we can do that so let’s say we want to get the the year so we’ll do D dot and then there’s a get full year method and you can see it gives us 2022. now if I were to change the date up here by putting in let’s say 20 we’ll say 2020 slash 10 12. if I do that then the year is going to obviously change to 2020. all right now we can also get the the month so let’s say d dot get month now look what happened here uh oh I used a colon so notice that it says nine and right now it’s October so this is actually one month behind so when you use get month just like the caveat when we use the the arguments the month is going to be zero based okay so if I were to make this date January looks let’s say one two twenty twenty now you’ll see I get zero for the month so just just know that that’s zero based what you could do is just add a 1 to this and then that will give us the correct month all right and then if we want to get the day of the month so we’ll say d dot and that’s going to be get date if I do that I get 28 today’s October 28th if we want to get the day of the week then we do get day okay so get day or I keep putting a colon so get day will give us the day of the week get date will give us the day of the month now we also have some methods that have to do with time like if we want to get the the current hours we can do get hours if we do that you’ll see I get 9 it’s 9 37 right now if we want to get the minutes we could do get minutes so 37 if we want to do seconds we can get seconds so pretty self-explanatory and then we can also get milliseconds so we’ll say d dot get milliseconds all right now there might be times where you construct a date from these methods so for instance if I wanted to do let’s say create a template literal with back ticks and then I could use this syntax to put in my whatever whatever I want to put in here variable any JavaScript expression but let’s say we want to get the full year and then I’m going to go outside of that the curly braces and put a hyphen and then we’ll do D dot get let’s say get month but let’s add a 1 to it and then we’ll do another hyphen and then we want to get the day of the month so we’ll do D dot get date and if I save that um what did I oh I forgot the parentheses on the full year and there we go so now we have a string representation of the date using these methods so I I found myself doing stuff like this in real projects now there’s an API that we can use for dates it’s it’s called intl dot date time format and it’s a more modern and Powerful way to format dates in a Locale sensitive way because obviously you know different places they they interpret dates and times in different ways so we can actually pass in arguments like en-us for the United States or whatever the Locale is so let’s let me give you some examples of that so we’ll say x equals and it’s going to be I so capital i n t l dot and then date time format okay and then I’m gonna put in my Locale which is en-us and then let’s do Dot format and then I’m going to pass in my date my D variable so if I save that I get this 10 slash 28 22. now if you’re in the UK this might look a little weird to you so what we could do is instead of en US I could say Dash GB and then it’s going to put the day first which looks crazy to me but you know every country every area is different to get your default Locale you could just pass in default all right so if I do that it’s going to go back to the US because that’s where I’m located now if you wanted to just get like let’s say the month I’m just going to copy this down you could add options in here so after the default I’m just going to put a comma and then open up some curly braces and we could say month say we want to get the month and then let’s say we want the long format so we’ll just say long as a string if I save that it’ll just it’ll give me October all right and I’ll show you some of the other options in a minute but there’s a shorter way to do this right now what I’m doing is calling the API and then I’m passing in the date which is our D variable but on that D variable you have a method called two Locale date string and if we do that or actually you can just use two Locale string and then we can pass in the Locale I’ll just say default and then I could pass in options like for instance if I want to do let’s say month and get the short and I’ll paste the link in here to the documentation where you can see how you know more about this API but you’ll see I get ocked okay so instead of having to do this intl day format and then pass in your date you’re just calling a method on your date object and getting the same thing now I’m just going to put paste in here let’s see I’m just going to paste in this and let me just set X to that so we can log it and if I save that we get Friday October 28 2022 at 6 49 11 am which is not correct that’s not my time zone I don’t know why I have Los Angeles here I want to do I think it’s new underscore York there we go so that’s more like it but yeah so you can do weekday now if you just wanted for instance the weekday you could just pass that in like that and you get Friday so this is a newer way of doing things rather than this up here using the this this date time format API and that’s what I would probably suggest using uh you know it’s more location specific and you can format your dates and get whatever you want from the date pretty easily alright guys welcome to section two in this section we’re going to learn all about two really important data structures in JavaScript and that is arrays and objects or object literals I’m going to show you how to create them manipulate them using specific methods Nest them and some other stuff now since this is the beginning of the course I’m not going to get into really Advanced operations yet I’m not even going to get into like high order array methods for those of you that know what that is or any kind of iteration or Loops we’ll do that a few sections from now I just want you to really understand how to create and work with arrays and objects alright so let’s get started all right so the first few videos in this section are going to be on arrays and then we’ll move to object literals all right so arrays are a special type of object in JavaScript they’re also a data structure and they can store multiple values so this is how an array is formatted you can see we have a variable called ARR and arrays are surrounded in Brackets so the values inside of an array are surrounded in Brackets and the values are called elements okay so the each one of these is an element in this array now elements can be numbers they can be strings booleans any data type you can even have arrays within arrays and when it comes to accessing the values or the elements within the arrays we can use the index so arrays are zero based every language I’ve ever used they’re always zero based so they start at 0 1 2 3 and so on all right so I’ll show you how you can access whatever element you want using the specific certified index okay so let’s jump into vs code and start to just mess around with arrays so I’ll go ahead and create an array I’m going to just call it I’ll call it numbers and I’m going to set it to some brackets and in here we’ll just put some random numbers okay and and these it doesn’t have to be numbers I’ll create another one with a different type in a minute but let’s go ahead and console log out numbers and we should see in the console our five values now you also see the index and remember a razor zero base so the first one is always going to be at the zero index now there is another way to create an array object so this right here we just did this is called an array literal okay but we can also use the array Constructor okay just like we have like the date Constructor we used a few videos back where we said new date we can actually do this we can say I’ll call this numbers to actually let’s do a string here we’ll call we’ll call this uh fruits and I’m going to set it to a new array okay it has to be an uppercase a so new array and then in here I can put whatever I want in my array let’s say apple so they’re strings so they do have to have quotes we’ll say grape and orange so either of these are fine right I’ll say fruit console log fruits and you’ll see we get the same type of thing just an array with our with our strings now you’ll probably use and see this more the array literal more than the array Constructor it’s just more concise but you could use either they both create an array object now if we want to access a specific item let me just create a variable up here to Output and we’ll console log X and then I just want to show you how to access a specific item by the index so we’ll say x equals and let’s say numbers and we’ll get the first one so that’s going to be the zero index and you’ll see that’s going to log 12. and I could use this in any expression if I wanted to do like numbers and then get the first one and then maybe add on to that numbers and get the one that the three index and I get 41. I could also use them inside of a template literal so if I put back ticks in here and I’ll say my favorite fruit is and then I can access fruits and then let’s say I want to get the uh we’ll say orange that’s going to be the 2 index because it’s the third one so it says my favorite fruit is we’ll say is an orange all right now there is uh and by the way you can have different types I know these are all numbers these are all strings but I could do this like I could say we’ll call this mixed and I could set that to an array with a number with a string with a Boolean value null so you can put different types in here just to show you that now there is a property on a raise called length and you’ll probably use that quite a bit because there’s a lot of times where you need to know how many items are are in the array so let’s set x equal to we’ll say numbers dot length and if I save that you’ll see we get five if I were to add a new number onto this then we get six okay so that’s how we can get the length now if you want to change of value like let’s say we want to change let’s use the fruits array let’s say we want to change grape to I don’t know pear so we’ll take the fruit and we know that that’s at the one uh two position or two index and then we can set that to whatever we want let’s say pair and then I want to log fruits so I’ll just set X to fruits so if we save that we take a look you’ll see that now pair is in the the two index so arrays are they’re inherently mutable you can mutate them you can change them and also the length property is not read only so we have uh what three fruits but I could say fruits.length and I could say that that’s going to be 2 and if I save now you’ll see fruits only has two so you can do that as well but I’m not gonna I’m gonna comment that out now let’s say I wanted to add on to the end now there’s methods that we can use to do stuff like that and I’m going to show you that in the next video but we could so if we wanted to add a fruit we know that there’s three in there so it’s the index 0 1 2. I of course I could do like three a hard-coded three and I could set that to I don’t know strawberry and then if I log fruits you’ll see strawberries on the end but you’re not always going to know how how many items are in the array also that’s always changing so what you could do aside from using a method which I’ll show you in the next video what you could do is set the index to the length right so if I say fruits.length and then set that to let’s say blueberry if I save that now blueberry will get added to the end and the reason for that is the length is always going to be one more than the last because it’s this starts at zero if we look at the length it’s one two three four five and if I wanted to add one on to the next that would be five right in fact I could copy this down kind of running out of fruits here but let’s say peach and now that will get added to the end okay but but more commonly you’re going to use a method there’s a method called push I’m going to show you in the next video that does the same thing all right so yeah I mean that’s kind of the basics of arrays of creating them and getting the length and and finding the the values by index so in the next video we’ll go ahead and look at some methods all right so in the last video we looked at some array Basics how to create them how to access values by index and so on now I want to look at some of the methods that we can use so let’s create an array you can put whatever you want in it I’m just going to put some random numbers all right and then I’m going to just log out the array so in addition to the values here if we if we go ahead and click this Arrow you see there’s this prototype chain and this has all the different methods that we can use on this array which is quite there’s quite a bit here so obviously we’re not going to go over all of them right now we’re going to go over some of the really useful kind of simple ones just to mutate the array and get values from it and then later on we’ll we’ll look at some of the more advanced stuff including high order array methods so let’s start off with push which will just put a value on the end of the array in the last video I showed you how we could do that using the length property as an index but what you would probably do is just push on to it so you would say array dot push and then let’s say we want to add 100 and now you’ll see 100 gets added on to the end now if you want to take the value off of the very end off the last element then you would use the pop method so array dot pop and we wouldn’t pass anything in because it’s just going to pop off whatever is on the end now you’ll see that 100 is gone okay if we want to do the opposite and add on to the the beginning then we can use the unshift method and let’s say we want to add 99 now you’ll see 99 gets added to the zero index and if I want to take take it off of the beginning then we would use shift so array.shift and now 99 is gone okay we also can reverse the array with the reverse method pretty self-explanatory so now 15 which was at the end is now at the beginning now these methods that we just looked at these are used to manipulate the current array right so when we console log the array after they go through these methods it’s different right now it’s reversed and so on we did add some stuff on but then we took it back off so the next batch of methods I want to show you are ones that we can use to get something from the array either get a value from it or just get some information from it so I’m going to create a variable up here just like we’ve been doing just for our output and then let’s console log that variable and I want to show you the includes method which will allow you to to check and see if a specific value is in that array so I’m going to say x equals and then array dot includes and let’s see if we if we pass in 20 which 20 which we know is in there you’ll see it gives me true so you’re always going to get a true or false from this based on if the value is in there now if we put like 200 which we know is not in there then we’re going to get false all right so the next one I want to show you is index of and what that does is it’ll give you the index of a specific value so if I do let’s say index of and let’s pass in one of these values we’ll do 15. and I save that we get 0. now the reason it’s zero you can look up here and and it’s not zero here obviously but the reason it is is because we ran this reverse okay so the script runs top to bottom so since it’s reversed then it’s put in the zero position so what I’m going to do is just comment out these ones that we did that will that actually change the array just so we’re working with the same array we’re looking at up at the top all right so now if we look at the index of 15 it’s at four if we look at the index of 34 that should be the first one which is zero now if you put something in here that doesn’t exist like 340 you get a negative one okay so a lot of times you’ll you’ll run this through an if statement and just know that if whatever you pass in here is not there it’s going to give you a negative one now the next two I’m going to show you are pretty similar it’s slice and splice and both of them will return selected elements in the array so I’m going to start off with slice and I’ll kind of show you the differences as we go so array dot slice and what this takes in is the first is going to be the start index so where do I want to start in this array let’s say we want to start here which is the one index so we’ll pass that in now if I don’t pass anything else in what that’s going to give me is that value and everything after that as you can see here so 55 and everything after let’s say I want to get just um just 55.95 and 20 so that and the two after so then I would do one two four all right so how that works is we specify the one index and we want to go to the 4 so that’s going to be 1 2 3 and we stop at before the four okay um now this is this is returning this array okay the three that I selected into this x variable it’s not actually changing the array if I log the array in addition to that you’ll see it’s unchanged okay so keep that in mind about slice now splice you can do kind of the same thing but it does manipulate or it does change the original array so if I say x equals array dot splice and the the arguments we pass in or I should say the second argument is a little different the first is the start index just like with slice the second is the number of elements that we want to go over so let’s say I’m starting at one which is 55 and I want to go over four so one two three four I should get 55 to 15. so if I do 4 here and I save now look what we’re logging we’re logging X which is what we basically plucked out one to one and then four over so 55 to 15. now the array that I’m logging only has 34 in it because I basically plucked the rest out okay so slice doesn’t do that it doesn’t change the initial array splice does not only are you taking it out and putting whatever into the variable one one to four but you’re also changing the array so you’re not only getting the values you’re deleting them from the initial array all right now if you just wanna let’s say you just wanna delete one item then you can let’s comment that out so that we have our initial array what you could do is say x equals and then say array dot splice and let’s say we want to get rid of the 20. so we know that’s zero one two three so I’m going to put in the start at 3 and just 1. I only want to take out one and I’ll save that and now you can see we have the 20 in X so it’s set to X and then the array that we’re logging doesn’t have 20 in it anymore because we took it out so that’s how you can remove a single element from an array now the last thing I want to show you is how you can chain methods so I’m going to set X here equal to and let’s just comment out the splice because we know that that that changes our initial array and let’s move this down here so I’m going to set x equal to array and then I’m going to use slice here so slice let’s say one and we want to go 4 over from 1. so that’s going to basically give us again it’ll give us 55 through 15 right if I save this as it is and we look at the console log of x we don’t need array anymore if I look at the console log of x we get 55 well actually it’s I’m sorry I want to use splice if you use slice it’s only going to give you the three because it goes to the 4 index splice will actually go four over and then what I want to do is reverse that so I’m going to do dot reverse and if I save that now you’ll see it gives me that array that splice created and then reversed it if I wanted to change that to a string I could do two string and if I save that now I have it as a string and then I could use a method on a string remember the Char at so Char at you basically put in an index and it will give you that character so let’s say zero save that and I get one okay because the first one was 15 the first number so you can chain on methods like this and it’s not just with arrays as you can see it’s with strings it’s with anything anything that makes sense I mean it depends on what the method returns this splice we know that returns an array and I can run reverse on an array then I can turn an array into a string and then I can get a character from a string if I just run Char at on the Reversed array that’s not going to work it says reverse Char at it’s not a function okay what it really means is it’s not a function on whatever where we’re putting it on if I change that back and it’s a string then it is a function that works all right and you’ll see you’ll see chaining like this all throughout JavaScript so in the next video I want to get a little more uh acquainted with arrays so we’re going to look at things like nesting and concatenation with arrays we’re going to look at something called the spread operator and we’ll go from there all right guys so we’re gonna mess around a little bit more with arrays so I want to look at nesting concatenating and the spread operator and a couple other things so nesting an array is just it’s basically just having an array as an index inside of another array so let’s go ahead and create two separate arrays here I’m going to call this one fruits and we’ll put in here apple pear and let’s do uh Orange all right so that’s our first one and then we’ll do berries and yes I know berries are fruits so let’s say strawberry and blueberry and raspberry so we have two separate arrays now if I wanted to I could take fruits and we looked at the push method in the last video which will add something onto an array and let’s say we want to add on the berries array and then we’ll go ahead and console log fruits and let’s see what we get so we get an array with four items the first three are apple pear and orange and then we added berries which is another array so we have an array within an array so that’s how we can Nest them and you can go as many levels as you want now to access something in a nested array is pretty easy basically we can let’s let’s set this to an output variable so I’ll say let X and then let’s log let’s log X and we’ll say x is equal to and then fruits and let’s say I want to get blueberry which is nested in the the nested array so first of all I want the three Index right because it’s 0 1 2 and then we pushed on as the three index the whole berries array if I just log that what I get is the nested array if I want to get blueberry that’s going to be the one index on the nested array so I would just open another set of brackets and then put a 1 and that will give me blueberry all right now let’s say I wanted to create a whole new array called all fruits and I want to Nest both fruits and berries and we’ll just set X for now we’ll just set it to all fruits just so we can log it out and it’s an array with two items and both items are arrays okay so we just nested those two arrays and if I wanted to access let’s say strawberry I would say all fruits and I want the second array which is at the one index and then I want the first item in that array which is at the zero index save that and we get strawberry all right so hopefully that just helps you understand that you can Nest arrays inside of arrays as many levels as you want if I had a third level I could then access whoops I could access something within that you know so it you can Nest as far as you want now that’s nesting we can also concat arrays which is different it’s not to putting the array inside the array but it’s taking the items from one array and basically adding them into a different array okay as separate items on the same level so to do that we can use the concat method there’s actually a few ways to do it but concat is one of them so I can say fruits and let’s say we want to do Dot concat actually let’s comment this out because I want these to be two separate arrays again and yeah then the rest doesn’t really matter comment that out as well all right so I want to take fruits and then I’m going to concat onto that berries and let’s save that what we get is one single array that has everything from fruits and then everything from berries so the berries here they’re not put in as a as an array a nested array they’re just put in alongside of the rest of the fruits so they’re concatenated just like we concatenate strings with the plus sign we can concatenate array items using this method now that’s one way of doing it the other is using the spread operator and I’ll I’ll have comments throughout this I know I’ve said that a bunch of times I just don’t want to take the time to write comments for everything so the spread operator which is represented as three dots and this can be used with arrays as well as objects in fact you’ll probably use it more with objects and I’ll show you how to do that later but basically what we can do is let’s say we want X and instead of using concat what I could do basically what we did here was we created an array and then we put two arrays inside of it well let’s say I just want the items that are in fruits and berries not the actual array itself then we would use the spread operator with fruits and then the spread operator with berries and now I’m going to log X which is this right here we get the same exact result that we got with concat it just took the items from both arrays and put them basically combined them all right if I took the spread off of berries and I save now berries is going to be an array all right but there’s going to be a lot of times where you you want to take something from one or one array and spread those items across inside of another array so that’s where the spread operator comes in and same thing with objects but I’ll get to that in a little bit now there’s also a method we can use to flatten flatten flatten arrays and what I mean by that is if we have an array that has nested arrays let’s do this one two and then I’ll have another array here with three and four and then we’ll do five and then let’s do another array with six and seven and then eight all right so I have some nested arrays in here right if I set uh if I console log array then you can see that we have two nested arrays in here now let’s say I want to flatten this and just make it all one array that has one through eight for that let’s say x equals and we can set we can do array dot flat and now if I log X and I save that you’ll see now we just have a single array with one through eight so it just flatten this there’s no more nested arrays all right so that’s pretty much it for uh for some of the methods on the array itself now I want to show you some static methods that are on the actual array object um let me just put a comment in here we’ll say static methods on array object and what I mean is if we say capital A array and then dot there’s some methods we can use the first one I want to show you is is array so what this does is it checks to see if something is an array and I’m just going to set this to X so let’s say is array and we’ll pass in fruits and if I console log X we’re going to see true because yes fruits is an array up here if I were to pass in like a string then we’re going to get false so there will be some times where you have data structures that might act like arrays but aren’t quite especially when you get into like the Dom there’s like HTML Collections and things like that where you will you want to check to see if it’s an actual array and this is how you can do it so that is is array the next one I want to show you is from which will create an array from an array like value so if I say x equals and then array Dot from and this again this is pretty useful when it comes to like HTML collections or node lists or whatever but let’s put in here a string of one through five and let’s see what that gives us what it gives us is an array so it takes the string of one through five and gives us an array that has one through five in as an element okay so that’s from and then we also have uh of array dot of which will create an array from a set of values so maybe you have some variables where you want the values to all be inside of an array so I’ll just do this const a equals one V equals 2 C equals three and then I could say x equals array dot of and then we can pass in here A B and C if I save that it’s going to give us an array with one two three so basically just an array of the values of these variables and I know this is this might be a little Advanced for right now you might not be able to kind of visualize what you would use this for yet but I just wanted to throw some of this stuff in here so in the next video I want to test your knowledge or test what we’ve gone over with a couple fairly simple array challenges all right guys so now I’m going to give you a couple challenges and if you don’t get the challenges don’t worry about it I’m not that great at doing challenges where I can’t use resources and stuff like that either a lot of developers aren’t so don’t take it to heart if you can’t do it on your own now the first one I think is pretty easy I think a lot of you will get it so basically I just want you to create an array that has numbers one through five and then I want you to mutate that array using some of the methods that we’ve talked about and turn it into this which is six through zero all right so there’s just a couple methods that you can use I’m not going to give you any hints because this one’s pretty easy I’d encourage you to try to remember the methods rather than go back and look but if you have to look that’s fine too and then the second challenge is to combine or concatenate array one and array two but have the result not have the extra five because if you just concatenate these two you’re gonna have one through five and then you have another five through ten so I want you to concatenate but then take out the extra five and as a hint there’s many ways to do this but you can think of the concat method or the spread operator as well as the slice or splice methods and I’m going to give you two two solutions all right so pause the video now if you’re going to try this out and then just come back all right so let’s go ahead and do challenge one so we’re going to have an array with just one through five oops all right equals and then the result that we want to get is going to be an array that is six five four three two one and zero so that’s what we want the result to be so let’s console log array now there’s a couple methods that we need to use to achieve this hopefully you could remember them and not have to look back but if you did have to look back that’s that’s absolutely fine but we’re going to take the array and there’s a couple ways we can do this and there’s a couple different orders we can do this in so we could reverse it we know that you know this is is counting backwards so let’s say we want to reverse the array if I save that then we get five four three two one now we want to have a zero on the end so we could take the array and then we could push onto it a zero let me save that now we have five through zero and then to add on to the beginning we can use unshift and we can add on to the beginning a six and that’s it so pretty simple now you could have did it in a different order like you could have let’s save that you could have firsted the push so we could push a six on if I save that we get one through six and then you could do the unshift which pushes on to the beginning so you could put your zero and then you could do your reverse like that okay now you’re not going to be able to chain these because like push what that returns is it just Returns the number you push onto it so if I try to like uh if I try to do this some of you might might have tried this you know that that’s not going to work it says unshift is not a function and the reason is because this actually returns a number or it should let me just show you if I were to set let’s say let I’m not going to keep this but just to show you what this actually returns yeah Returns the the number six so you can’t chain those methods all right so that is my solution if you had a different solution and it worked then that’s that’s fine but let’s do challenge two so we’ll go ahead and say challenge two and this is going to be to concatenate these two arrays let’s say array one and that’s going to be one through five and then const array 2 is going to be 5 through 10. and then what you needed to do is concatenate these two arrays but they both have five so you need to get rid of that five and I’m going to give you two different solutions in each each one is in kind of the opposite order so let’s say solution one and I’m going to create a new array called array three and take array one and well basically what I’m going to do is slice that not slice the five out but slice these the ones that I want out and put that into array three so if I say dot slice and remember slice takes in the start index which I want to start at the beginning because I want one through four and then I’m going to put in 4 as the end if I save that oops we need to log this out array 3. if I save that now I have one through four in this array 3. so now what I need to do is basically just add the rest of this on right because I have one through four so I’m going to do that by chaining on concat and I’m going to concat array 2 and if I save that now I have 1 through 10 and there’s no double fives so that’s the first solution the second solution is kind of the the opposite of way around first I’m going to concatenate it so I’m going to say const array 4. and we’re going to use the spread operator here so let’s spread across array 1 values and let’s spread across array two values and if I were to console log array 4 you’ll see I’ll get 1 through 10 but I have my double fives here which I don’t want so then what I’ll do is use splice so I’ll take array 4 and then splice and I just want to take out one of those five so I’m going to start at the 4 index which is 0 1 2 3 4. so right here and I only want to take out one which is that that one so I’m going to put 1 as a second argument and then if I console log or A4 you’ll see I have one through ten and now that 5 is gone so two different approaches they both use different methods but they have they have the same result and you’ll see a lot of that in not only JavaScript but all programming all right so that’s it in the next video we’re going to look at object literals okay so now we’re going to get into another data structure and another type of object in JavaScript which is an object literal so basically these are key value pairs so I have a an example here we have a variable called person and then in curly braces we have just key value pairs that are separated by commas so basically we have the key on the left side then we have a colon and then we have the value which can be a string a number Boolean whatever and these are Keys these are values these are also called properties like this is the name property this is the age property and so on so let’s jump into vs code and let’s start to to work with objects so I’ll go ahead and just create the same one we just saw so we’ll say person and I’ll set that to a set of curly braces and then inside there we’re going to have a name let’s say John Doe and then we’ll do an age of 30. and we’ll do let’s say is admin and that will be a Boolean so we’ll say we’ll say true okay now as far as accessing data from this object first of all is just console log the whole thing see what we get so same thing just the key value pairs we also have our prototype chain which has some methods on it there’s a lot that we can do with objects in this section I’m gonna just go over some of the the basics and some of the easy stuff and then later on we’ll get into more complicated ways of working with objects now to access a specific property from an object we use the dot syntax so I’ll go ahead and actually you know what let’s create our X variable because there’s a few things I want to log out so let’s just do that and then let’s set X to person and then to access the name for instance I can say person.name now we can also use bracket notation so for for example I could say person and then I could use brackets and say I want the age I’m sorry this needs to be a string and I get 30. so this you’re going to see this a lot more the the dot syntax rather than the brackets but you can do it this way now let’s say we want to have an object within an object like maybe an address with some Fields so let’s say address and then we’re going to set that to another set of curly braces and then here we’ll have the street say 123 Main Street and then we’ll have the city let’s say Boston say for the state will do mass now if I want to access let’s say the state what I would do is say person Dot and then the address and then the state if we do that then I get Mass we could also have arrays in here like so if I wanted to do let’s say Hobbies set that to an array and we’ll say music and sports and then if I wanted to access that array I could of course just say person dot hobbies and that will give me the whole array if I wanted to access let’s say the first item or element in the array then I would use of course my my brackets just like I would with any array and that gives me music now we can also update properties so I can say person dot name and I’ll set that to let’s say Jane Doe and then if I log X we’ll just set it to person and you’ll see now the name is no longer John Doe it’s Jane Doe if I wanted to update let’s say is admin I could say person dot is admin or I could use this syntax is admin and what is it to begin with it’s true so I’ll set it to false and then if I log the person we should see is admin as false all right now if you want to remove completely remove a property from an object you can use delete so I could say delete and then person dot let’s delete the age if I do that and I log the object you’ll see there’s no more age now the next thing I’m going to show you is that we can add a function to as a property but I know we haven’t gone over functions so don’t worry about it if you don’t understand this but let’s say person and by the way I don’t think I mentioned you can not only change properties but you can add a new one like if I want to say person dot has children and set that to true and now if I save you’ll see that has children has been added okay so you can add properties as well now like I said about functions let’s say we want to create a function in this property called greet so I’ll say person.greet equals a function and this is just how we Define a function again I’ll get into this very soon and then I’m going to console log here uh template literal and say hello my name is and then I can actually access other properties in here with the this keyword so I could say this dot name and now if I want to call this function I’ll have to do person dot actually let’s just oh we’ll get nah we’ll just do that yeah person dot greet and we need to execute it with parentheses and you’ll see right here hello my name is Jane Doe all right so we we assigned a function to this greet property and we were able to access the name using the this keyword which I’ll talk much more about later now another thing that you can do but I really wouldn’t suggest it is when you’re creating your keys you can use like double more than one word so let’s say I wanted to use first name like first space name I wouldn’t recommend doing this but if you are going to do this then you can just surround it with quotes right so I could say first name and then set that to Brad and then we’ll do a last name so let’s say last space name and now if I want to access let’s say I want to access first name if I try to do this for a space name this is another reason I wouldn’t recommend doing this well right now it’s telling us person has already been defined so let’s change this to person two person two and it’s still going to give me an error because it says unexpected if I’d identifier name now if you’re going to do this again I wouldn’t recommend it using multiple words like this this should be in this form or even this form but if you do happen to come across this and you want to access it you have to use the bracket notation so you would do it like this first space name and you’ll see that will work all right so in the next video we’re going to look more at nesting objects within objects but I also want to show you how to use the spread operator with objects we saw how to use it with arrays but we can also use it with objects okay so now that you know what an object literal is I just want to get into a couple other things including using the spread operator with objects and some of the methods that we can use so and before we do that I just want to show you there is another way that we can create objects let’s say we want to create a to do object now we could do this which just creates an empty object and then we could add properties either in here or we could do like to do dot let’s say ID equals one right and then if we log that out let’s just create our X variable and then if we go ahead and set x equals two to do and we console log X we get an object with an ID of one now another way to do this this is an object literal but we could also use the object Constructor just like we did with arrays so we could say new object like that if I save we’re going to get the same thing so this line this is the same as just setting it to a literal and just an empty set of curly braces and I can continue to add on to this like if I say to do Dot name and we’ll set that to I don’t know buy milk and maybe to do completed not component completed and set that to false okay if we save that we take a look we’re just going to have our properties on that to do object now later on I’m going to show you how we can actually create our own Constructors for certain objects and we could do stuff like this like to do one and then set it to a new to do so you can create a custom Constructor for a custom to do object but we’ll get into that later on now I want to show you how to use the spread operator well actually before that let’s just let’s just go over nesting real quick I know we did in the last video but just to kind of remind you we could set person and then we could have address and then let’s say an address we have coordinates and maybe have a Latitude value of 42. something and then and then a longitude value of negative 71 dot something and then if we wanted to access the let’s say latitude we could do that by setting X to um person then we want to go into address then we want to go into chords and then we want the lat value all right so that’s nesting now as far as the spread operator goes it works very similarly to using it with arrays so what I’ll do here is just create two very simple objects it doesn’t really matter what you have for the Val the properties here but I’ll just do a one be two and then I’m going to create another object 2 and set this for the keys we’ll do c let’s say c 3 and then d 4. okay now if I create let’s say object three I could Nest those in here right so if I just pass in object one and then object two and then let’s just set X to just so we can see it we’ll set X to object three save that now what we have is an object that has two objects inside okay so the first one is object one second one object two now if I want to just take and you’ll you’ll find yourself doing this quite a bit in JavaScript if you want to just take the properties of object one and object two and put them in basically combine them into this single object three then you can just use the spread operator so we’ll just add three dots in front of each one and now when I log out object three we get all of these properties within both objects all on the the top level of object three because we we took them and spread them across all right now if I were to take the spread operator off object two and save you’ll see object one values are are on the top level spread across but object two is in there as a nested object all right so hopefully that makes sense now there’s uh there’s a few methods on the object object that we can use and one of them is called a sign and that does the same thing as the spread operator in fact the spread operator was introduced in es2015 before that you had to use object assign so let’s just say we want to create another object called object four and we’re going to set that to capital O object just like on the array object there’s methods there is here as well and the one we want to look at right now is called the sign so as the first argument we pass in is just going to be a set of empty curly braces that basically just gives us an empty object if I were to log obj4 you’ll see it’s just an empty object now if I want to add the properties from object 1 I would pass object 1 in as the second argument and if I save now you’ll see those are added to this obj4 if I want to take the properties of object 2 I would just add that as another argument save and now those get added okay so whatever I pass in here any objects I pass in here the properties of those are going to get assigned to this empty object okay so both of these lines do the same exact thing and it’s up to you on what you want to use the spread operator to me is easier and more concise and just more modern but if you want you can of course use this Okay so a lot of times we’re going to be dealing with arrays of objects anything any resources in the database like or from an API like to Do’s or users or blog posts you’re usually going to deal with arrays of objects for those resources so so let’s say um should we do here let’s say we want to do an array called to Do’s right so we’ll set that to an array and then in that array we’ll have our first to do so it’s going to be an object we’ll say id1 and then name we’ll say I don’t know buy milk again okay and I’m going to put a comma after that and copy it down a couple times and the second one second object is going to have an ID of 2 this will have an ID of three and here we’ll say I don’t know pick up kids from school and then we’ll have take out trash okay so now we have an array I’m yes an array of objects I’m going to set this x here to to Do’s if I do that we’re going to see our array of objects now if I want to access a specific object just like we do with any array we use our bracket syntax say we want to get the first one we use our zero index that gives us that object now if I want to access specific property like name I simply do dot name all right so those are arrays of objects now later on we’re going to get into iteration and looping and being able to you know go through each object and and do something to it or just display it but we’re gonna we’re gonna do that a little bit later now I want to show you a few other methods we have available on object so if you want to get all of the keys in an object and put those into an array we can use object keys so let’s say x equals object dot keys and what do I want to use this on let’s do the the to do object we created up here so say object dot keys and we’ll pass in the to do object and then we want to log X and you’ll see now we have an array that has the value of ID name and completed okay so it just took the keys from this to do object and put them into an array now there’s going to be times where you’re going to want to get the length of an object meaning how many you know how many properties does it have in it and we can’t use length on that like if I try to do x equals and let’s take our to do object and do length if I do that it’s going to say undefined so the way that we can get it is by first getting the keys and then getting the length of that so if I just take this and put that on there that’s going to give me an array right and we can use length on an array so we’ll simply do length and if I save we get three okay so up here you can see we have three and and I could have created an object literal as well so the next thing is uh if you want to get an array with all the values just the values we can use object.values just like we can use object dot keys so let’s say object dot values and we’ll pass in to do save that and now we just have an array of the values now if you want to get an array of the key value pairs you can do that with entries so let’s say x equals object Dot entries and then pass in our object save that and now we have an array with arrays that have the key value pairs and then the last one I’m going to show you is has own property which will give you a Boolean indicating if the object has a specific property so let’s say x equals and then we actually call this on the the actual object so for instance to do and then we can say has own property and let’s pass in name if I save that we get true because it does have a name property right if we put in I don’t know age and I save that then we get false because that to do object does not have a property of age so that’s it I just wanted you guys to get familiar with the spread operator and some of these these really helpful methods that you have on on your object so in the next video we’re going to look at something called destructuring and also naming because you do have a lot of properties inside of an object and sometimes you might not you might not want to do this because it’s pretty long I’m going to show you how you can destructure so that you don’t have to do as as many you know as much as this dot notation so we’ll get into that in the next video okay so now I just want to show you a couple things that you can do as far as naming and and destructuring variable names from object literals so first off if you’re creating an object where the key and the value are the same if the value is a variable then you don’t have to add both so let me show you what I mean if we have these variables here and let’s say I want to create an object so we’ll say const person and let’s say I want to set name or not name first name and I want to set that to the first name variable right so you would do that and then I’ll just copy that down and this one will be last name and this one last name and then we have our age okay so now if I come down here and do a console log of person Dot age and save that of course I get 30. so I’m setting the key of first name to the value of whatever is in the variable of first name if you do this and these are the same you don’t need to add the second one you don’t need to add the value you can simply do this get rid of the colon as well and now if I save that we still get 30. so it saves you some typing and uh and I just wanted to show you this because most most JavaScript developers will do this there’s no sense in in repeating yourself if you don’t have to so the next thing I want to look at is destructuring so basically what we can do here let’s say I wanted to get well let’s create another object so we’ll create a to-do object with an ID and let’s say title take out trash so if I want to create a variable of ID with the ID of that to do I could do this you know I could do that and then console.log the ID but what we what we can do is destructure properties from the object so we want to set this equal to the object itself and then any properties we want to extract or destructure are going to go into these curly braces so if I save that you’ll see I get one I get the same thing if I want to take out the name I can do that as well so you you can well let me log it so you can see so you can think of this as I’m sorry not name title the title and title so you can think of this as as pulling these variables out of the of the object and you can go multiple levels deep like let’s say we have a user in here and that’s an object that has a name so if I want to get that if I come down here and I destructure user I’m just going to log that for now and save that and you see that it’ll pull out the object to use this entire user object if I want to get the name or any other property what I could do is put a colon here open up another set of curly braces and we want to take the name from the user so now if I come down here I should be able to just console log name now another thing we can do is rename Properties or keys so let’s say I’m destructuring ID but let’s say I want to rename it to to do ID if I want to do that I can put a colon and then just do to do ID like that and then if I come down here and I console log to do ID I get one okay so this and this might might be a little confusing just keep in mind that when you use the curly braces you’re destructuring if you don’t then you’re just renaming now we can also destructure arrays and I know we’re talking about objects in these in the last few videos but I figured it’s relevant here to show you this stuff even though it does have to do with arrays so I’m going to create an array called numbers and we’ll set that to just whatever 33 and let’s do one more okay and I just want to put a comment here that we can destructure arrays oops that should be a comma all right so the way that we do this is we create variables for starting at the beginning for the first second third and so on all right so let’s say const and then the way we destructure arrays is going to be with brackets okay objects we use curly braces and arrays we use brackets we’re going to set that to the array name which is numbers and then in here I’m going to say first and second so what this will do you’ll see if I console log first and second it’s going to give me the first two elements the first two values in the array 23 and 67. and of course if I if I put third in here that would be the next one 33. now if you want to get the rest of the numbers and put them into a variable as an array we can use What’s called the rest operator now it’s a little confusing because the rest operator is is the same as the spread operator it’s the three dots but in this use case it’s often called the rest operator and the way we use that is instead of just putting third which would just get the next one we would do three dots and then a variable name oftentimes called rest and then what I’ll do here is log first second and rest now what you’ll see is we’re logging the first and second 2367 and then rest contains an array with the rest of the values in that array in this case is 33 and 49. if I put in 52 here and save that’s going to get added to the rest array and just to show you I can change this to anything I’ll just say we’ll say nums and then if I come down here and I do nums that’s going to give me the same thing but I’m just going to put that back to rest okay so I know it’s a little confusing spread operator rest operator it’s just when you use it in this instance or in this use case then you might see it called the rest operator all right so that’s it in the next video I want to talk a little bit about Json okay so since we’ve been talking about JavaScript objects I think that this is a good place to introduce Json okay which I get a lot of crap for saying it that way a lot of people say Json I say Jason but it really doesn’t matter it’s j j s o n now Jason is something that you’ll be working with a lot as a JavaScript developer and it stands for JavaScript object notation and it’s a lightweight data interchange format so it’s essentially a way of storing data in a simple human readable format now in web development especially in JavaScript we work a lot with with apis and you know apis to send and receive data to and from a server and several years ago XML which is extensible markup language was kind of the standard for sending data or getting data from a server but in recent years Jason has become the stand standard so you’ll very very rarely work with XML these days now Jason the syntax is very similar to JavaScript object literals which is what we’ve been working with now to give you kind of an example of an API that you may work with as a front-end developer you’re going to work with backend apis where you hit you know a URL and you fetch some data or you post some data and we’re going to get into all that later on apis and you know rest apis and stuff like that now just to give you an example GitHub has has a public API that we can use so I’m going to go to one of the URLs just to kind of show you an example of of some data we’ll get back so if we go to it’s actually API api.github.com and then we can go to slash users if I do that will get an array of like I think I think it’s like the first 20 users of GitHub so as you can see it’s an array of Json objects which are very similar to JavaScript objects right we have key value pairs now the difference here is that the keys are going to have double quotes around them as well and with JavaScript object literals we don’t have quotes around the keys and you have to have double quotes around the strings here as well numbers you don’t have to but strings you have to have double quotes around or it’s not going to be valid Json but this endpoint here API github.com users is an example of something you’d hit with with the fetch API which we’ll learn about later and you can make a request and get this data and bring it into your application you could even do user slash and then your username so I’ll put mine in here and then that gives me some information about my account my login my ID number it even gives me some other API URLs that I can hit to get other things all right so for example uh is the repos so this repos URL if I were to hit that end point I get an array of all my GitHub repositories okay so as Json objects so I just wanted to kind of show you an example of an API that gives us Json data now you can also have Json files like if I create a new file here and I’ll just say I don’t know to do dot Json the way that I would do this it usually a Json file is going to have an array of Json objects so you would have brackets just like in JavaScript and then each object would have curly braces but your keys have to have double quotes as well so say id1 this could be a number or a string and then let’s say title title say take out trash now vs code will automatically validate this like if I take those quotes off it’s going to give me an error if I hover over it says property Keys must be double quoted because it knows them in a Json file okay and then there are websites where you can validate Json as well you just paste it in and it will tell you if it’s correct but yeah it’s pretty much just a JavaScript object with some double quotes so what I want to do as far as JavaScript to show you how we can convert our objects to Json and the other way around so let’s create an object here let’s do something different we’ll do like uh which we do we’ll do posts like a blog post and we’ll set that to let’s say title say post one and this is just a JavaScript object literal so title actually let’s put an ID to so we’ll say id1 and then let’s put a body and I’ll just say this is the body okay so we have a JavaScript object right I can console log that post and if I want to convert this to a what we call a Json string there’s a Json object we can use so let’s say cons string so this Json object has a method called stringify so just stringify and Par so the two methods you’re going to be using quite a bit when dealing with this so stringify will turn an object into a Json string so I’m going to pass in here post and then let’s log Str and and notice it’s formatted differently it doesn’t have like the collapsible arrows and stuff like that it’s just a simple string okay and this is what you would send if you were sending data to a server this is what you would send okay now when you use like the fetch API or other libraries to make HTTP requests a lot of times it does this for you like you you can just send the post like this and it will automatically stringify it where you do end up using stringify and parse the next one I’m going to show you is with local storage and local storage is a way to store things on your client on in your browser and they can only store it can only store strings so you can’t store like an object like this so what you would do is stringify your object put it into local storage and then when you take it out you would parse it back into an object and we’ll we’re going to get all into local storage later so now that we have a Json string in the Str variable let’s parse that Json so we can do that and I’m going to put this in a new variable called obj and we’re going to set that to Json dot parse and then we’re going to pass the string Json string in there and then let’s go ahead and log obj and we’re going to get our initial post object literal okay so these are the two methods that you’ll be using quite a bit when dealing with this type of thing and then it doesn’t have to just be a single object it can be an array as well so if we say const let’s say posts and we set that to an array of objects I’ll just grab this one here and paste that in then we’ll put a comma and we’ll create another one and I’ll just change that to a 2 and we’ll say post 2. so now we have an array of objects let’s say down here const str2 and we’ll set that to Json Dot stringify and let’s pass in our posts and then if we log str2 you’ll see we have a Json string that has a couple array a couple arrays a couple objects inside of an array now one thing to keep in mind is if you have a Json string like this this Str right here you can’t take that Json string and then try to access like let’s say ID okay if I do that I’m going to get undefined all right if you need to access a specific property you first need to parse it so if I console log object dot ID that’s going to work but yeah I mean that’s that’s pretty much it as far as using JavaScript to parse Json strings or turning JavaScript objects into Json strings so in the next video we’re going to have just a pretty simple object challenge for you guys and then we’ll move on to functions and scope and things like that all right guys so I have a a challenge here for you that has to do with object literals and it has multiple steps but don’t get overwhelmed because it’s it’s pretty easy for those of you that already know the basics of JavaScript will have no problems with this but we’re going to take it step by step so I’m going to read step one you can pause the video and do it I’ll do it and then I’ll go to step two step three Etc so step one is to create an array of objects called Library so have a variable called Library set it to an array have three objects inside with the type the properties of title author and Status title and author Should Be Strings whatever you want whatever book title and author and then status should be another object so a nested object with the property of own reading and red which should all be Boolean values okay so do you if you own the book if you’re reading it and if you’ve read it so for all status set own to true and then set reading and red to false so basically you just need to construct an array of objects so pause the video now and go ahead and do that and I’m going to do that now as well so I’m going to create a library array here and then inside it says to do three objects with properties of title so I’ll just put that for now and then we also want author which is going to be a string and then we want the status which is going to be a nested object and status is going to have own which we want to set to true it’s going to have reading which we set to false and then red which we also set to false okay so I’m going to just copy this because we want three of these okay so we just want to make sure we had three and you can put whatever you want for the titles and authors I’m going to say the road ahead I’m just putting anything here and this is by Bill Gates and then we have the Steve Jobs biography by Walter Isaacson I think that’s ice palette and then we have Mockingjay and that’s by Suzanne Collins okay so here’s step one right we just created an array with three objects with the property specified so now let’s move on to step two so you finished reading all the books set the read value for all of them to True do not edit the initial objects at the values using dot notation so don’t just go in and change red to True here we’re going to come down here and set all of the the red values to true so you can pause the video and do it yourself but this is going to be pretty simple basically we just want to say library and there’s there’s multiple ways you could do this you could Loop through it but we haven’t gone over Loops or anything so let’s say library zero and we want to set status right and then we want to set red to true and we’re going to do that for all of them so let’s say one and two as well and then we’ll just go ahead and do a console log of library and if we take a look we should now see in status that read is true for all of these so read is true and status read is true so that’s step two step three is to destructure the title from the first book and rename the variable to First book so we went over destructuring and naming a couple videos back so let’s do that we’re going to go let’s just put a comment here and pause the video if you’re gonna do it on your own and say step two and this is step one okay so step three we’re gonna destructure so from the what was it the first destructs of the title from the first book and rename it to First book so we know the destruction object we use curly braces and we want to set this to the object name which is Library we want to destructure the title right so I’ll say title and then let’s console log title actually I’m going to get rid of this console log right here so I’ll save that we get undefined and that’s because we’re in an array it’s not a single object called Library so we want to get the first the first book if I save that we get the road ahead now to rename this variable we just use a colon so we can say colon and we’ll say first book and then we should be able to console log the first book variable and get the road ahead so that’s step three so step four is to Simply turn the library object into a Json string so you can pause the video and do that and that’s pretty simple say step four so we want to we’ll create a new variable we’ll call it Library Json and then let’s set that to Json Dot stringify and we want to pass in the library object and then we’ll go ahead and console log Library Json and now we should have our library as a Json string all right so that’s it I know that was pretty simple for those of you that already know JavaScript Basics but if you didn’t then hopefully this helped you out so in the next section we’re going to go ahead and start looking at functions and scope all right so now we’re going to start to get into functions which are really important part of any type of programming because you can create blocks of code that you can run anywhere and at any time so we’ll look at creating basic functions we’ll look at function declaration versus Expressions we’ll look at Arrow functions something called iffes or immediately invoked function Expressions we’re also going to look at scope which is really important in programming because this lets you know what what context your code is being run in if it’s the global scope or if it’s within a function scope or another type of block scope and then we’re also going to look at things like the execution context and the call stack which are might seem a little Advanced but like I said I want you to not only learn the syntax but understand kind of what’s going on under the hood in the browser what’s actually happening and execution context is something that I think you’ll benefit in learning now rather than you know two years down the road so it’s just the last I think two or three videos we’ll be talking about that stuff and you’re not gonna need to learn any any advanced code or anything like that in fact we’re going to look at very very simple code but just look at what is actually happening behind the scenes with the execution context with the call stack and so on all right so that’s it let’s go ahead and get started on functions all right so now we’re going to talk about functions and scope and I know a lot of you already understand functions and and that’s fine but I do want people that are new to JavaScript and new to programming to basically be able to start from scratch and learn what functions are and how to use them so let’s get started with some of the basics so first of all a function is it’s a way to group code together that you can run later you can run at any time and as many times as you want and it’s a way to make your your code more readable and easier to understand so to create a function there’s actually multiple ways and I’m going to show you multiple ways but for now we’re going to do kind of the the basic way to create a function and that’s using the function keyword so after that we can give a function any name we want let’s say we want to call it say hello and then we need to add in our parentheses okay now in the curly braces here is where the function body goes this is this is the code that will run when we run our function so I’m just going to have this function do a simple console log of hello world all right now if I save this nothing is going to happen because all I’ve done is defined or declared the function I haven’t run it to run it we have to put in the function name and then a set of parentheses so if I go ahead and save that and run it you’ll see that it’ll console log hello world so that’s that’s the absolute simplest function that you could write now when it comes to passing data into a function we do that with parameters okay and and there’s a difference between parameters and arguments a lot of times they’re used interchangeably which I think is fine but just to be really specific when you’re declaring a function like let’s say we have a function called add and when we’re putting in here the variables that we want to be able to be passed in like let’s say we want we want X and wire let’s be a little more specific we’ll say num1 and num2 so this function takes in two numbers these are the parameters okay that the function can take and then what I’m going to have this function do is just console log num1 plus num2 so it’ll evaluate that expression and log it to the console now when I call this function so I say add and then I pass in the numbers that I want to add let’s say 5 and 10. these are arguments okay when you’re declaring the function these are parameters when you pass in an uh a value here these are arguments but again people will say I’m passing in a parameter of five and I think that’s fine I’m not like you know one of those sticklers and just to be clear on the kind of the vocabulary when we run a function like this this is invoking a function or calling a function when we do this this is defining or declaring a function now most of the time when we create functions we’re returning some kind of value these particular functions that I just created they’re not returning anything they’re just simply doing a console log but usually we’ll return something so to give you an example let’s say function and we’ll call this subtract okay and this is going to take in again let’s say num1 and num2 and I’ll get to scope but just know that these variables even though these are the same it’s okay because they’re function parameters of in different functions so I can use num1 here and here I couldn’t use it like in the global scope I couldn’t create num1 and then create num1 again so in here let’s go ahead and return we do that with the return keyword and we’re going to return X not X num1 minus num2 now I’m going to go ahead and invoke this by saying subtract and then I’m going to pass in let’s say 10 and 2. now if I save this we don’t see anything in the console because we haven’t done any kind of console log what we did is returned uh the the result of this expression now I’ll get into why we return values in a second but just know that anything we do under this like let’s just console.log we’ll say after the return if I go ahead and run this you we don’t see the console log that’s because we’ve already returned we’ve already exited the function so it’s not going to run anything after an in vs code you can see it’s kind of a lighter lighter contrast now the reason we return something is because we want to do something with that value so in this case let’s say we want to put it into a variable so I can actually set let’s say right here we’ll say const and then say result equals subtract 10 from 2 or I should say 2 from 10. and then I can do what I want with that result so I’ll just console log it I’ll say console log result and now I get 8. I could also just console log the function I could say subtract and let’s say I don’t know 20 and 5. if I save that I get 15. all right so instead of console logging from here this this is going to hold whatever the value is it’s returned and there might be cases where you return with no value you just write return and that’s good for like um let’s say you’re you’re sending a request to a backend or an API and you’re updating something in a database and you’re not you don’t actually need to return anything you might just return with no value all right now in the next video I want to talk more about arguments and parameters I know I mentioned them here and and showed you you know the basics but I want to talk a little bit more about that in the next video all right guys so in the last video we saw that we can create functions and we can allow data to be passed in by creating parameters or params and then the data we pass in when we invoke the function are called arguments so I want to look a little more into that so let’s create a function here we’ll call it register user and let’s say it takes in a user which right now will just be a string and then I’m going to just return from this let’s say user and then I’ll just concatenate on and say is registered obviously in real life you would you would connect to a database and insert a user in this now but this is just for for example so we’re going to return that string and then I’m going to just console log register user and we’ll pass in a string of John and then in the console you can see we get John is registered okay so created a parameter of user we pass an argument of John now first off if it’s not obvious this user variable right here this is not available outside of the function it’s in what we call the function scope and I’m going to talk more about scope in a video very soon but just to clear that just to show you that if I console log user it says user is not defined so out here in the global scope it doesn’t see that user variable now if I were to console log register user without passing anything in even though I defined user you can see I get undefined as user because remember a variable that hasn’t been defined it has a data type of undefined and a value of undefined so what we could do to have a default value there’s actually a couple ways we could do that um the old way before es2015 actually let’s go in here was to have an if statement I know we haven’t gone over in conditionals yet but this is pretty simple we would just say if not remember the exclamation is basically the opposite so we could say if not user whoops meaning it didn’t get passed in then we could take that user variable and assign it so let’s call it bot and now if I save that and we run it you’ll see it says bot is registered now with the es2015 or es6 update there’s an easier way to have default parameters because you don’t want to have to do this for every parameter that you have so let’s comment that out and then up here what we can do is simply say user equals and then set it to whatever we want as the default and now ICDC bot is registered okay if I had another variable and I wanted to set it to a value I could do it just just like that just adding the equal sign so that’s default parameters let me just put a comment here so default params and then the next thing I want to show you are rest rest parameters and if you remember a few videos back when we looked at the structuring I showed you with arrays you can destructure values into variables and then you could use the rest operator to basically put the rest of them into an array and you can do kind of the same thing with your parameters or with your arguments so let’s create a function here we’ll call it sum and I’m going to use the rest operator here with a variable called numbers and that can be called whatever you want and then let’s just do uh I want you to get used to using return so we’ll just return from here numbers and I want to see show you what we get now since we use return we do have to just console log the function so we’ll say sum and then let’s pass in one two three and see what we get so it gives us an array with all of the arguments that we passed in okay and I could pass in just as many as I want here and it all gets put into an array called numbers okay a function scoped array called numbers now I know we haven’t gone over like for Loops or anything but I just want to show you that we could use a for Loop to take all the numbers that are passed in and then add them together so let’s go ahead and just initialize a variable here called total and we’re going to set that to zero and then I want to Loop through again I’ll I’m going to go over four Loops in depth later but let’s say const num so we’re going to say num of numbers so basically for each one of the numbers we’re going to call it num and then I’m going to take that total variable and I’m going to use the plus equals here so that I can add num onto each one after every iteration and then I’m just going to return the total okay so now if I console log sum and pass in one through five I get 15 because it’s just adding them all together okay if I add 6 21 if I add 100 121 and again this the body doesn’t matter I just want you to understand you can basically pass in unlimited number of arguments using the rest operator and that those all get put into an array all right now you’re not always going to get primitive values passed in as arguments in fact more often than not you pass in objects and arrays and stuff so let’s say objects as params and we’ll do we did register let’s do login user and say it takes in the user but this time it’s going to be an object so obviously you could use any of the properties that are on that object so for instance we could do a console let’s do a we’ll do a return so we’ll say return and I’ll use a template literal here and let’s say the user I guess yeah we’ll just put the user and let’s say that user has a a name property with the ID of and then we’ll do user dot ID is logged in okay and then down here what we could do is we could pass it in a few ways we could put it into a variable like this and we could give it an ID and then a name and then we could call login user and we could pass in that user and if I save actually we returned it so we need to actually console log it so if I do that we get the user John with the ID of 1 is logged in okay or you could pass it in let’s do another console log you could also just pass in like this let’s put the object and let’s say id2 and name Sarah and then we get the user Sarah with the ID of 2 is logged in so we can also pass in arrays let’s say arrays as params and now I’m going to actually create a function finally that’s semi useful so we’ll create a function that will get a random number from a specific array that we pass in and if you want to pause the video and try this on your own you can because we’ve already looked at how to get random numbers and stuff like that so you can do that if you want but I’m just going to create a function called let’s call it get random and it’s going to take in an array and then first thing I’ll do is is generate a random index for the array for the element that we’re getting because remember we access the element through indexes so let’s say random index and we’ll set that to math dot floor so we’re going to round down remember this from a couple sections back so we’re going to round down a random number let’s say math dot random that gives us a decimal between 0 and 1 so we want to multiply that by the length of the array okay so this is all stuff that we’ve looked at so that will give me a random index now I’m just going to create a variable called item and set it to the array and then the index is going to be random So Random index we want to use that here okay and then we’ll just return or we’ll just console log the item okay and then let’s just call down here get random and we just want to pass in an array and you can put whatever numbers you want in here we’ll do one through ten and you’ll see 9 if I reload 9 10 3 10 8 . so yeah it’ll just generate a random number that you pass in now remember the the the rest parameters that will give you an array of anything you pass in so another thing we could do here is just add on that and then automatically whatever we pass in gets put into an array so I could actually get rid of the brackets here and save and I should get the same result which will give me a random number between any of these numbers I pass in and I didn’t need to pass in an array because the rest rest operator will turn whatever I pass in into an array but I’m going to put it back to how I had it just because this is supposed to be showing you how to pass in an array all right cool so in the next video we’re going to look start to look at scope okay so in this video we’re going to talk about scope and in particular Global and function scope now scope it’s an important Concept in JavaScript and it refers to the current area or the context of a specific piece of code and there’s certain rules for what we can access in specific Scopes now global means just what it sounds like it means that your your Global variables are going to be accessible from absolutely anywhere in fact the browser has a window object if I go ahead and type in window in the console we’ll see the window object here that has a ton of methods and properties that we can access from anywhere whether we’re just in our Global page scope or if we’re in a function or in a block or whatever in fact alert the method alert is on that window object if I say window dot alert and I pass in here let’s say hello and I save that and run it then we’re going to see that pop up now since window is the the top most object it’s at the top level we don’t even need to do the the window dot we could just do alert which is what you’ll usually see okay um and then there’s other things like for instance we can do window dot inner width and that will give us the browser’s inner width so you’ll see down here it’s logging 455. and again we don’t need window but in this case on something like this on inner width I would keep the window but it’s it’s really preference but just to show you I could do it without it all right now we can access these these window object properties and methods from anywhere if I were to create a function and say run and then run that function and in here do let’s just do console log we’ll do window dot let’s say inner height which is another property if I do that it’s going to show down here my my window height is 136 and it’s measuring from here to the to the console all right now as far as creating our own variables in the global scope that’s really what we’ve been doing if if you’re creating a variable that’s not in a function or in a block or anything that’s in your Global scope so let’s say x equals 100 and obviously I can access it from the global scope if I do X I’m just going to also put a string in here that says we’ll just say in global save that we’re going to see 100 and in global now since that’s Global I can also access that in functions so I’ll say console log X and let’s say in function save it and you can see we can access it there as well if I have a block like an if statement which I know we haven’t talked about yet but just to show you real quick if I say if true so since I put true whatever I put in here is going to run I’ll do a console log of x and I’ll say in Block save that you can see we’re accessing it from there as well now functions have their own scope so what I’m going to do here is create another function called add and in here obviously we can access X I already showed you that we can create variables in our functions so we’ll say const Y and we’ll set that to 50. and then I’ll do a console log of Y and what we have to run it so if I save that and run it you’ll see that we’re logging Y which is 50. now since I defined this variable inside the function this is function scoped okay this is not a global variable if I go outside the function and I try to log y I’m going to get an error it says Y is not defined because it’s looking in the global scope it’s not going to go into this function and pull out variables and allow us to access them and of course since I created this this variable Y in this function I can’t go in this function and do it here either right if I do that now this error is running you can see at line 11 and that’s where I just did this console log all right so I’m just going to undo that and I’ll comment this out to get rid of that error now I can access the global variable X inside of any function I want so if I were to go right here let’s say console log X Plus Y and I’m going to get 150. all right now if I were to in this add function create a variable called X if I do that and save you’re going to see now we get 51 it’s adding this X and this y so what this is doing is overwriting the globally scoped x value and this is called variable shadowing now when you hear the term local scope that’s just that just refers to whatever scope you’re in whatever you’re talking about if we’re talking about you know this y variable right here then our local scope is this add function scope if we’re talking about this one then where the local scope is the global scope all right now that is global and function scope in the next video even though we haven’t gone over like if statements and loops and stuff like that which are blocks I think this is a good place to talk about block scope all right so we talked about global scope and function scope now we’re going to talk about Block Level scope and I’m also going to show you some of the differences between using VAR to create variables versus using Latin const because VAR is not Block Level scoped so I’m going to create a variable in the global scope called X and then I already showed you this in the last video that if we have a conditional which is a block and we try to access a global variable that’s fine right because Global variables we can access from anywhere now if inside of this block I create a variable let’s say Y and set it to 200 of course from here I could do like X Plus y that’s going to work but if I come out here and I try to do X Plus y that’s not going to work because y has not been defined on the global scope it’s defined inside of this block so it belongs to this block so I’m going to comment that out and I’m going to show you how this would work with VAR in a second but first I want to show you a loop example so you don’t have to understand for Loops yet to really see what I’m talking about here but I’m just going to create a simple for Loop I’m going to use let I’m going to say let I equals zero and then we’ll say as long as I is let’s say less than or equal to 10 and then we’re going to increment by 1 and then here I’m just going to do a console log of I so if I save that what it’s going to do is just start at 0 and it’s going to Loop through and console log each number until it gets to 10. so for very simple for Loop now if I were to come outside of this and do console log I you’ll see I’m going to get an reference error I is not defined so I is is scoped in this Loop in this block now I want to show you the difference between VAR versus Latin cons so I’m going to create a block here just an if statement and just say true and let’s create a cons variable of a so we’ll set that to let’s say 500 let’s say let B we’ll set that to 600 and then let’s use VAR C and set that to 700. okay now if I come outside of that block and I console log a we’re going to get an error by console log B we get an error and if I console log C it works you’ll see 700 so that’s the big difference between VAR versus let and const VAR is not block scoped so if you have a variable that you created with VAR inside of an if statement that can that’s accessible from outside and that’s not really good that’s not what you want you want your variables to be block scoped that’s how most programming languages work so in es2015 or es6 they decided to create let and const but of course you can still use VAR because if they they took VAR out that would break a lot of projects so yeah I would always say use Latin const now even with loops if if I used VAR here instead and then I come down and uncomment this console log I you’ll see that it’s actually giving me 11. so it’s not throwing any type of error it’s working and giving me 11 which obviously I don’t want that to happen now VAR is function scoped so I want to make sure that I explain that so if we come down here and I create a function called run and then in here I say VAR let’s say I don’t know D and set that to a hundred right so obviously I can use that here I’ll say console log d and of course I have to run the Run function and now at the bottom you’ll see a hundred and then if I try to come outside of here and console log d I’m going to get an error even though I use VAR because VAR is function scoped okay if you can’t access a VAR variable that’s inside of a function outside of a function but you can with other blocks like loops and and if statements now there’s one other thing that I want to mention about VAR so let’s say we have let’s say const Foo equals one and then let’s say VAR equals two so when we set a global variable with VAR let me just comment that out get rid of that error when we create a global variable with VAR if we look at the window object let’s take a look here you’ll see that it actually gets added to the window object when we use letter cons that does not get added to the window object so you can see here there’s no Foo so that’s another kind of difference between constant Latin VAR and you’re probably not going to want your Global variables on the window object all right guys so now we’re going to look at how scope works with nested functions and nested blocks now nested functions relate to something called closures and we’ll look at ways to use closures later on but I think it’s a bit too early to to learn them a lot of people are intimidated by them but we can at least look at how Scopes work with nested functions so let’s go ahead and create a function I’m going to call it first and then in first we’ll create a variable called X set it to 100 and then what I can do here is Nest another function so I’m going to call this one second okay so it’s nested inside first and here we’ll create a variable called Y and set that to 200 and then in second I’m going to console log X plus y now in order for a second to run I have to call it within first right so we’re going to run second here and in order for first to run I have to call it here so I’m going to go ahead and save that and you’ll see I get 300. so you can see I can access from the parent function from I should say from the child I can access any variables that are in the parent scope however it doesn’t work the other way around I can’t access from the parent variables in a child scope so if I if in first I try in console log y then that’s going to give me an error okay so remember you can access parent variables but you can’t access child variables so they’re two separate Scopes now it’s very similar with blocks so let’s go down here let’s say if we’ll just say if true and then in here I’m going to say const x and I’m on a different scope so I can use x and then let’s say we have another if a nested if and here we’ll say if x equals 100 and again I know we haven’t gone over if statements we’re going to get to that soon I just want to show you this this is kind of the same type of thing where we have let’s say Y and we can console log here um let’s say X Plus y and if I save that we have to comment this out because it’s giving us an error if I comment that out you’ll see we get 300 right because I’m able to access here I’m able to access the parent Scopes variable of X but if I go outside of this this child if or this nested if and I try to console log Y which is created in there then that’s not going to work okay because this is a separate scope that I can’t I can’t access but you can access the parent from within the child so hopefully that makes sense I know it’s a little confusing but I figured this was a good place to mention this since we’re talking about scope okay so up to this point we know how to declare functions and invoke them or call them or execute them however you want to put it there is another way that we can create functions and that’s with a function expression so let’s first declare a function just like we’ve been doing so I’ll say function this is called a function declaration right so we do that by just putting the function keyword first and then let’s call this add dollar sign and what this will do is take in a value and then just prefix it with a dollar sign so we’ll return from this a string with a dollar sign and then we’ll just concatenate the value and then if we want to invoke it we can just well let’s let’s do it in a console log since this is returning so we’ll say add dollar sign and let’s pass in here 100. so if I save that we get 100 so that’s a function declaration we start off with the word function and then name it and so on but we can also use a function expression where we actually create a variable so let’s call this add plus sign same idea of it with a plus sign and we set that equal to a function and that will take in a value and then we’ll go ahead and just return we’ll do a plus sign and then we’ll concatenate the value and then if we want to invoke it we can do a console log and say add plus sign and let’s do 200 and if I save that we get plus 200. so notice that we invoke them the same exact way we just call the function pass in a value but they’re declared differently the the expression is just a variable it’s a function assigned to a variable now in JavaScript you don’t have to use semicolons they’re optional but notice at the end of the expression we do have a semicolon we don’t add a semicolon to the end of a function declaration now there are some differences here and it comes down to something called hoisting now I’m not going to really go into hoisting as far as how it works right now I’ll do that later when we talk about something called the execution context but in very simple terms hoisting is the process of moving all the function and variable declarations to the top of the current scope before the code is run so you can think of it before your code is actually executed you can think of a step before that where it goes through and it looks for all your func function declarations and your expressions and your variables and puts it all at the put puts all those at the top of the page now even though this happens only function declarations are available before the code is executed so let me show you what I mean if I take this right here where I’m calling add dollar sign and I move it up above which whoops where it’s actually declared and I save that it works which might seem a little weird because we’re calling add dollar sign before we actually defined it so how does it know that and the reason for that is hoisting because again there’s you can think of it as a separate step before your code is actually executed where this is moved up top now like I said only declarations are available before the code is executed so if I do the same with an expression if I take this console log and I move it above where we where uh where we Define it and I save that it says uncut reference error I cannot access add plus sign before initialization okay so when you use a regular function declaration you can call it beforehand if you wanted to put all your functions at the bottom of your script you could do that although I really wouldn’t recommend it I think it’s much cleaner to have your functions declared or defined and then use them but uh but yeah I just wanted to go over declaration versus expression in the next video we’re going to look at another type of function expression and that’s Arrow functions so Arrow functions were introduced into JavaScript in 2015 they were part of the es2015 or es6 update and they there’s some advantages to using Arrow functions of course they’re more compact they also have an implicit return which I’ll show you and they also have a lexical scope which I’ll talk about a little later so let’s start off here by just creating a regular function declaration like we’ve been doing so just a simple add function that will return a plus b and then we’ll call that we’ll just do a console log of ADD and pass in one two so we get three now let’s let’s rewrite this as an arrow function so I’m going to go right underneath it and we’re going to say const add and remember in the last video I showed you we can also create function Expressions so I could do equals function like this now an arrow function we can actually get rid of the function keyword and then instead of using the function keyword after the parentheses we’re going to use an arrow or what we call a fat arrow and then we can pass in any parameters and then in the print curly braces here we can just same thing just return a plus b if I save that we get 3. so this is the just the regular Arrow function syntax now there are some things we can do to make this even shorter since we only have a single expression single just one line expression here that we’re returning something we can shorten this by getting rid of the return statement and the curly braces so instead of using add though I’m going to do subtract just so I don’t have to comment that 102 but we’ll say can’t subtract and it takes in A and B we have our Arrow now instead of putting my parentheses here I’m just going to directly say a minus B so this is saying I want to return this expression to the right of the arrow so this is the same as this of course except it’s it’s subtracting so I’ll go ahead and copy this down and let’s do we’ll say 10 5 and we’re going to call subtract and of course we get 5. so this is in PL it’s an implicit return because we’re not specifying the return keyword it’s just doing it so let’s say implicit return now there’s another way that we can shorten things up if your function only has a single parameter so let’s say we have a function called double and it takes in a single parameter and then what we want to return is whatever we pass in and then just multiply it by two so let me just run that down here real quick so if we do double him pass in 10 we get 20. now the way we can make this shorter just a little shorter but it’s important to know this is when we have a single parameter like this we don’t need to have parentheses around it okay now the way that I have my text editor set up and prettier and auto format if I save it puts it in automatically but what I can do is copy this I’m going to copy it and then comment it out and then over here in my console I’ll paste it in and you’ll see that that works so if I do double let’s say double um one we get two now if I try to Define this and leave off my parentheses but I have more than one param that’s not going to work okay so you can only emit the uh the parentheses when you have a single param so let’s uncomment these and just put a comment here and you can say can leave off parentheses with a single param now another thing that can cause a little bit of confusing of confusion is if you are returning an object so let’s say returning an object and this is due to the formatting of the you know having the arrow point to curly braces when you want to return an object with which also use Curl uses curly braces so to give you an example let’s say const we’ll call this function just create object and it doesn’t have to take anything in but let’s say I want this to return an object that has a name I’ll just do that and then if I save you’ll see that prettier automatically thinks to put a semicolon here which obviously isn’t what I want if I’m trying to make this an object so if I come down here and I do a console log of create object I’m going to get undefined so all you need to do is if you want to return an object this way you just surround the curly braces with parentheses and then of course we don’t want that semicolon so now if I save you can see we’re returning an object that has the name of Brad now I know we haven’t gone over high order array methods or callbacks or anything but that’s another great place to use Arrow functions so I’m just going to show you an example so let’s say we have an array which we’ll just call it numbers and let’s do one through five and on arrays there’s a method called for each and we haven’t gone over this yet but we’ll be getting deep into these types of methods later on but just to show you if we do numbers dot for each what you pass in here is a function okay and you could do it like this you could just pass in a regular Anonymous function and just pass in whatever you want to use for each number I’ll just use a variable called n and then I’ll just do a console log of n if I save that you’ll see it basically what this does is it Loops through and it just outputs logs each number okay I could do whatever I want with this number but I’m just choosing to log it out now this is a good place to use an arrow function because you can really shorten it up and make it neater so let’s say four each and instead of passing in the word function I can just put in my parentheses pass in actually in this case I wouldn’t even need parentheses since I’m using a single a single parameter but it’ll add it automatically in my case and then we have an arrow and since I just want to do a single console log I don’t even have to use curly braces I can just say I want to do a console log and Save like I said the parentheses get added but you really don’t need them and you can see it does the same thing so I think that this is you know more neater and short and concise than this but again it’s it’s all preference just like most things so this is let’s say Arrow function in a callback so callback is basically when we pass the function into another function and we’ll we’ll get into that later all right so hopefully this just gives you a basic understanding of how to format Arrow functions we’ll be using them throughout the course now in the next video I want to get into something called immediately invoked functions all right so when we deal with functions we usually Define them or declare them and then we invoke them when we need to run them however there is a way in JavaScript that lets us create a function or declare a function and invoke it at the same time and that’s using something called an immediately invoked function expression or an iffy for short iifi I’m sorry iife and there’s a few reasons why you might may want to do that one of the biggest is to avoid Global scope pollution so let me show you what I mean if we have in our folder here you can see I have a folder called iffy if I create another Javascript file I’m just going to call it other script dot JS and this could be like another library that we’re using or whatever it might be and let’s say in this script we have a global variable called user and I set that to Brad and I’ll just do a console log of the user and of course it’s not going to show yet because I haven’t linked it up to my HTML file so let’s go ahead and add that and we can say that this is coming from some other library that we didn’t even write so that another developer created so we’ll say another script.js if I include that now we’re seeing that that Brad value which is in this user variable now let’s say in our script well we want to have a variable called user as well so I’m going to set const user to John and as soon as I do that and save and it runs I’m going to get this user has already been declared okay because it was declared in the global scope of the other file and now I’m trying to declare it in this scope as well and there’s a few ways to handle this but one of the ways we could handle this is with an iffy so let’s go underneath here and I’m going to open up a set of parentheses the Syntax for an iffy is a little strange what we do is create an unnamed function in those parentheses and then whatever we want to happen so I’m going to actually bring bring this down into the iffy and then just do a console log of user now after the the first set of parentheses we need to open up another set to invoke it right because that’s a function we need this set of parentheses to invoke that so I’m going to go ahead and save this and you’ll see now we get we don’t get an error we’re able to have both of these variables of user because this this one here is not in the global scope okay it’s in the scope of the iffy and I could even create a function within here like let’s say we have a function called hello we’ll use Arrow function and we’ll just do let’s say console.log and we’ll say hello from the iffy now if I try to go outside here and execute hello I’m going to get an error that says hello is not defined because again it’s it’s scoped inside of this iffy so I would have to run it inside here like that now you can add parameters if you want so let’s say I’ll just create another one down here so it’s remember it’s 2 it’s parentheses side by side the first one has the function inside of it so I could pass in let’s say name and then let’s say I want to just do a console log of a string hello and then I want to concatenate onto that the name now where I pass that in is going to be right here so I’m going to pass in a string of let’s say Sean save that and we get hello Sean so that’s adding parameters to your to your iffy now you can have a named iffy because notice these are just Anonymous functions they don’t have any any name associated so if I wanted to I could say function and then give it a name like hello which I can do because the other hello is on a different scope and then whatever console log hello but you don’t really see this very much because you can’t call that function outside of of the iffy outside of that scope you can call it within it and that’s something called a recursion when you when you call a function from itself that’s recursion and it’s kind of an advanced topic which we’ll get into later much later and I wouldn’t recommend doing it if you run this you’re going to crash your browser because what’s going to happen is it’s going to run hello it’s going to console log hello then it’s going to call it again it’s going to console log again call it again and it’s just going to keep going until your browser crashes is going to cause what’s called what we call an infinite Loop so I wouldn’t recommend doing that but I wanted to show you you can create a named function I guess the other reason you might do it is for debugging reasons all right so that’s it for iffys we’ll we’ll probably get into these a little later in some projects but in the next video I want to give you a couple fairly easy function challenges all right guys so we have a couple challenges to do so there’s three of them here and basically I’ll just do one by one and you can pause the video after I explain each one and try it on your own so challenge one is to create a function called get Celsius that takes a temperature in fahrenheit as an argument and then Returns the temperature in Celsius for bonus points write it as a one line Arrow function so we’ll write it as a regular function first and then we’ll see if we can convert it and the expected result you just pass in a Fahrenheit like 32 and you get back the Celsius which would be zero and you can make the output look prettier by putting it into a string you can even add the the slash X B zero which is this this little degree symbol and you know put it in a template string like that and then hence the formula for Fahrenheit to Celsius is this right here so basically this Fahrenheit minus 32 times 5 divided by 9. you can read more about the formula here if you want so that kind of explains that all right and then what I’ll do is open up let’s search for a Fahrenheit I don’t even know how to spell Fahrenheit Fahrenheit to Celsius converter online okay so here we have an invert and this just shows you the formula right here so basically we just need to um I’ll put this in our JavaScript where the Fahrenheit temperature is the argument so if you want to pause the video and do that now go right ahead so I’m gonna just put in a comment here say challenge one and let’s create it as a regular function first so we’ll say get Celsius and then that’s going to take in a Fahrenheit temperature and then basically what we’re going to do let’s just do Celsius and let’s set that to the formula which we can probably yeah we’ll just grab it right from here definitely need to know that stuff like this I usually find on like stack Overflow or using the the GitHub copilot extension is really helpful because it’ll get you stuff like that so I’m just going to paste that in and then what we can do is replace that capital F with our lowercase f because that’s the argument that’s being passed in right and then let’s return Celsius cell CS right and then let’s do a console log here of get Celsius and let’s pass in 32. so if we look at down here we get zero so let’s try something else if we pass in 40 we get four point and then a bunch of fours so if I put in 40 here we get same thing we put in 50 we get 10 let’s put 50 in our function and we get 10. good now we can turn this into a one line Arrow function if you want to pause the video and do that you can go ahead but I’m going to just I’ll comment it out in a second but let’s do const get Celsius we’re going to set it to an arrow function that takes in Fahrenheit and then we know that basically we just want to return this right here right we didn’t have to put this in a variable name we could return it directly but down here we can use an implicit return so I’m just going to paste that in all right and then we’ll go ahead and comment this one out and let’s try it again I save we get 10 if I pass in 32 we get 0. all right so this is a nice clean function so I think that that’ll do it and we could put it inside of uh a template string with this little symbol so for example instead of just logging the answer we could say we could put in back ticks and say the temp for what do we do here yeah we’ll just say we’ll just say the temp attempt is and then put in our get Celsius with 32 and then outside of that the curly braces I can paste that in and then we’ll put an uppercase C actually let’s not have a space there so now it says the temp is zero degrees celsius if I pass in 50 and say we get the temp is 10 degrees Celsius so that’s the first challenge so the next one I I don’t even really remember what these are I did these quite a while ago so create an arrow function called min max that takes in an array of numbers and returns an object with the minimum and the maximum numbers in the array so we want to be able to pass in an array of numbers and then what we get back in return is a an object with the minimum and the maximum of you know of the numbers in that array so as far as hints you can use the math dot Min and math.max methods to get the Min and Max you can also use the spread operator to spread the values of an array into separate arguments okay so yeah let’s try that and if you want to pause the video and do it that’s fine as well um I’m just gonna put a comment in here challenge two and let’s create our function called min max and then that’s going to take in in Array so I’ll just call this ARR and then remember we can use the math object Min and Max methods so let’s say const min and we’ll set that to math.min and then I want to take basically this this doesn’t take in an array it takes in just a bunch of numbers like this one two three and so on so if we want to take just the values in the array remember we can use the spread operator and then we’ll go ahead and add our array and just to kind of test that out let’s do a console log of uh Min and then we should we can just call this because we we logged from the function erased oh we didn’t we need to pass in an array so let’s just do one through five and save and we get one which is the the minimum so now we can copy this down and let’s get the max So Max and then I’m just going to console log Max and we get five if I add to this 6 then I get 6. so we know we’re we’re halfway there we have that now we just need to create an object so let’s go down here and let’s return an object with Min now remember when if if your variable name is the same as your your key here you don’t need to have the variable name you can just do that and then same with Max all right so that should do it now we’re returning so we do need to wrap this in a console log if we want to print it out and we’ll save so we get min 1 Max 6. if I add let’s say 31 in here and I save we get min 1 Max 31 if I get rid of the one Min will now be 2 max 31. okay so that should pass the challenge now for our Challenge three it says create an iffy we talked about those in the last last video that takes in the length and width of a rectangle outputs it to the console in a message as soon as the page loads so we know that if we write it in iffy it runs right away when the page loads so on page load we should see this message an area of a rectangle with a length of 10 and a width of 5 is 50. okay so the hints the area of a rectangle is the length times the width okay so it takes in the length and the width that means we just need to multiply it and this should get passed into the ifeas arguments you do not have to return anything from this function just log to the console so that’s actually pretty easy um so it really just tests your skills to create an Effie so let’s come down here and you can pause the video right now if you want to so let’s say challenge three and we’re gonna create an iffy so remember we have a set of parentheses and in that is where we create our function now I don’t think I showed you in the last video that we can actually use an arrow function here like I could do just a regular function like this but you can also just do this so that’s what I’m going to do and it said to take in a length length and width and then inside the function body let’s get the area so we’ll say const area and then we can get that with length multiplied by the width and then let’s just do a variable for the output we want to log so that’ll be a template literal and we’re going to say the area let me just check this out again I’m actually going to just copy this so if we paste that in and we just need to replace these values so we know we have the length and the width passed in so we can replace this 10 right here with the length we can replace this 5 with the width and we can replace 50 with the area and then of course we need to add in our parentheses and then when we pass in the the arguments that goes in here so let’s say 10 and 5. and of course we need to Output this so let’s just do a console log and well we’re going to Output output so the area of a rectangle with a length of 10 and a width of 5 is 50. so if I were to change this now let’s say 20 and 10 save that length of 20 and a width of 10 is 200. all right guys so I hope that the the challenges I hope the description is good enough for you to kind of understand what I’m asking you to do I’m not the best at at doing challenges or creating them honestly so hopefully that’s sufficient all right so what I want to start to talk about next is the execution context which is more behind the scenes stuff and and how how things work behind the scenes which is a little Advanced especially for this stage in the course but I said it a million times already I want to give you a full picture of what’s what’s going on as we’re writing our code all right guys so now we’re going to talk about execution contacts which might sound a little intimidating especially if you’re a true beginner but just know that learning this stuff now and learning the the bigger picture of what’s happening when your code is running is going to benefit you more than if you learn this stuff two three years down the road like I did so execution context just think of this as something that’s going to happen behind the scenes we’re not looking at any new Advanced code or anything like that in fact the example code we’re going to use is just very simple stuff we’ve already done just creating a variable creating function running a function all right now as far as what this is the execution context is a special environment that’s created by the JavaScript engine in the browser or if you’re using node.js the the engine that node.js uses which is the V8 engine and this special environment this execution context includes the currently running code and everything that aids in its exit execution and when it’s first created that’s called the the global execution context okay you can think of it as like the global scope and then anytime you invoke a function that function will have its own execution context that’ll last for the span of the function okay when the function is done then that function execution context is done now to kind of visualize the execution context I created this box so you can think of it as a box with two sides where you have your variable What’s called the variable environment on one side and this is going to be all the variables and all the functions in your code stored in key value pairs in memory all right so that’s the memory and then we have the execution side which is the thread of execution so JavaScript is what we call a single threaded language a thread you can think of as like a process and your code is executed line by line on that thread or on that process all right so just to be clear JavaScript is single threaded and it’s synchronous so it’s executed line by line there are asynchronous capabilities which we’ll talk about later different web apis and stuff like that but just know that at its core JavaScript is single threaded and it is synchronous now there’s two phases when the execution context is created so the first phase the memory creation phase you can think of as like one swoop through before your code is actually run okay so the memory creation phase does not actually execute your code it does a couple things so the first thing it does is it creates the global object in the whether that’s in the browser or in node.js in the browser the global object is called window in fact if I go to Chrome real quick and I go into the console and I type in window and I hit enter it’s going to show me that window object and all the methods and properties on it and there’s a ton of them okay different apis and stuff and we’re going to get into a lot of this later on now and that’s created by the execution context in the memory phase now the second thing it does is it creates the this object and binds it to the global object that’s why if I come in the console and I type in this and I hit enter it’s going to show me the same exact thing the window object because that’s it binds it to that all right then what it does is it sets up the memory Heap for storing your variables and function references so remember this box right here all your variables and functions are going to get put into here during the memory creation phase and then the last thing it’s going to do is it’s going to set the value to all of those to undefined okay so if we look here these these values here these are all going to get set to undefined in the memory creation phase they don’t get filled with values until the code is actually executed okay which is the second phase the execution phase where it goes through line by line and if it hits a function a function invocation then it will create a new execution context for that function now to give you a better picture we’re going to go through we’re going to step through each line of this code and I’m going to show you exactly what’s happening within the execution context and like I said this code is very simple we’re just creating a couple variables we’re creating a function that returns a sum of two numbers and then we’re just creating some variables that will contain the return value of this get sum function so a couple things to keep in mind there’s two phases we’re going to go through the memory creation phase and the execution phase and whenever we invoke a function like this it creates a kind of a side function execution context so let’s get started so we go ahead and run them the memory creation phase or we don’t run and it just gets run and on line one it’s going to set the x variable in memory it’s going to allocate it and store it as undefined okay remember I said variables in the memory creation phase are they’re put into memory but they’re stored as undefined it’s going to do the same online 2 with the Y variable store that to undefine now line three it hits a function and functions are allocated to memory but they’re not stored as undefined I think I might have said that the the all the code within the function gets stored to memory okay it doesn’t get executed it just gets put in memory for now and then it’s going to skip to line seven where someone is going to get allocated to memory stored as undefined okay we’re not remember we’re not executing anything yet so the functions don’t get executed we’re simply putting the the variables into memory same thing with sum2 that’s put into memory stored as undefined now what’s going to happen is it’s going to go through the execution phase so it’s going to go back to line one and in line one it’s going to take 100 and put that into the X variable in memory remember X is already in memory as undefined from the creation phase but now that we’re executing it’s going to put 100 in for X okay next line 2 is going to place the value of 50 into the Y variable then it’s going to go to line three but it’s going to skip this function because there’s nothing to execute this is just a function a function definition then we go to line seven it’s going to now invoke get some because remember we’re in the execution phase so this is a function it’s going to get run and it’s going to create a new function execution context all right now remember when we when a new execution context is created it has two phases once again so now we’re going to be in the memory creation phase 4 the get sum function execution contacts so you can think of it as like a nested execution context so on line three what it’s going to do in the memory creation phase is it’s going to assign N1 and N2 to memory and store it as undefined okay remember we’re in the creation phase for the function execution context so it’s going to take these two and store them in memory as undefined then it’s going to go to line four it’s going to store sum as undefined it’s going to go to the execution phase now of the function so N1 and N2 are going to get a signed 150 and the reason for that is because we’re passing in here X and Y which are set to 150. okay and then on line four the calculation is done and 150 is put into this sum variable in memory then line five is going to return and tells the function execution context to return to the global execution context with the sum or the value of 150 okay and that’s going to get stored in here the return sum value is put into the sum 1 variable then it goes on to line eight it’s going to do the whole thing over again it’s going to open up another execution context for the function and do the same thing just with different parameters this time 10 and 5. all right so just to quickly recap because I really want you guys to get this we run this block of code it starts the the global execution context in the memory creation phase it goes through each line and it’s going to set all the variables to undefined in memory it’s going to set the function code into memory okay once it does that it starts the execution phase where 100 is put into x 50 into y it’s going to skip the function declaration because we’re in the execution context there’s nothing to execute once we 7 it sees there’s a function that opens up another execution context for the function okay and then it goes through the memory phase for the function then the execution phase for the function and then moves to line eight and it’ll have to do the same thing because we hit another function all right so this doesn’t really affect how you write your code right now but it will benefit you in the future just knowing how this works behind the scenes now in the next video I’m going to run this block of code and I’m going to use the the browser debugger to kind of put breaks in so we can see exactly what’s happening or as much as we can see within the browser so in the last video we talked about execution context and we stepped through a block of code and I showed you what happened during the memory creation phase and the execution phase well here I’m going to do the same thing you can see I have the same exact code in in my vs code and we’re going to do the same thing from within the browser and we can do that by using the sources tab in the dev tools and over here you’ll see our files and if I click on script.js we’re going to see this the same code right here now using the debugger I can put what we call a break point anywhere I want and that’s going to stop the code from running at that point so what I’m going to do is put it right at the beginning so it’s actually not going to execute the script so I’m going to reload the page and none of this is executed but the memory creation phase has been run so down here you can see all these variables X Y sum 1 some to there they’ve all been put into memory and set to undefined because remember with with the memory creation phase it puts your variables in memory and sets them to undefined okay before the execution now remember functions get stored in memory and the entire code in the function gets stored however that’s going to be down here in global so that’s called get sum so if we look down here we should see a get some function right here all right so that code is stored in memory as well now one interesting thing is if you used VAR instead of const or let then those variables would be put on the the global scope as well and and that we can get into hoisting and stuff later on but what I want to show you now is if I step through this so I can use this little arrow icon to to execute the line the code line by line and you’re going to see what happens over here so I’m going to click the arrow it’s going to run the first line const x equals 100 and now we’ve started the execution phase okay normally it just goes through and does it you know all together but uh or it does it real fast it doesn’t pause like this but now we’re pausing line by line and you can see that 100 has been put into X okay because we’ve started at the execution now I’m going to click this Arrow again and execute the second line and you’ll see that 50 has been put into y now it skips the function definition because there’s nothing to execute and goes right to this get sum where it where it’s being invoked now remember when we invoke a function it creates a new function execution context I’m going to click the arrow and now you’ll see this new area called local which is our function execution context and the first line has been has has Ran So N1 and N2 contain 150 because our first function call we passed in X and Y which are 150. now if I click this again and run this line right here it’s going to put 150 into sum so I’ll click it again and now you’ll see sum has 150 in it now if we step out of the function it’s going to go to the next get sum which is being passed in 10 and 5. so it’s going to open up a new execution context with 10 and 5 as the arguments here is the variables if I clicking again it’s going to add the sum click it again it’s going to go to the next line to the console log and now our script has been run all right so that’s what it looks like when you go through line by line but you saw even before we executed anything the creation phase ran and put our variables and our function into memory but if this is confusing to you don’t worry about it my my point of doing this is just to show you what’s going on under the hood and how this is actually run within the browser so in the next video we’re going to talk a little bit about something called the call stack and then after that we’ll get back to syntax creating conditionals and loops and so on okay so while we’re on topics that are kind of behind the scenes things that happen when we run our code we talked about the execution context I want to also talk about the call stack this is something that will be important later on when you get into more advanced JavaScript but I just want you to understand the basics of it so when we run a function we know that it opens up a new function execution context it also gets added to something called the call stack now a stack is a data structure in not just JavaScript but in in many programming languages and it operates in a very specific way it’s it’s last in first out or l-i-f-o meaning that the last thing to come on is the first thing to come off and the better the next slide will give you a better visualization of that but the call stack is you can think of it as a manager for your functions or a manager for your your execution contacts and at the bottom of the stack you have your Global execution contacts and then when a function is invoked that gets put on the call stack when it’s done it gets it gets popped off all right so if we look at this very basic piece of code here we’re running three functions or creating three functions for our second third and then running them okay and we’re doing this all in the global scope they’re all being run in the global scope so what happens here is the first function is invoked it gets pushed onto the the stack that’s the terminology just like with arrays push and pop so it gets pushed on first ends and then gets popped off then second runs gets pushed on popped off then third runs gets pushed on popped off so that’s how this piece of code would work with the call stack now this piece of code is a little different so we again we have first second third but we’re just running first in the in the global scope and then in first we’re running second and then in second we’re running third so what happens is we run first it gets pushed on while first is running second is run so that gets put put on top of first because first is still running it’s still open and then in second third gets called so second is still running so third gets pushed on when third ends third gets pushed off I’m sorry popped off and then second end gets popped off first popped off so it’s just it’s the same thing it’s last and first out so what I want to do now is show you that those same two pieces of code in the browser and show you the call stack in the sources tab so as you can see I have the first example I showed you here I have the second one commented out for now and I’m going to go to the sources tab and go to script.js and what I’m going to do is put my my break point right at the first function where it’s called and then I’m going to reload the page and right now it hasn’t run anything I’m going to once I click this Arrow it’ll run this line the first function and if you look down here there’s actually a tab called call stack and you can see right now first is on top of is is is first on top of the global execution context that’s what this Anonymous is all right so first gets put on the stack and then let’s step through it step through it again finish it up now we’re going to run second gets put pushed on the stack step through it it gets popped off let’s run third that gets pushed on WE step through it and then it gets popped off all right so that’s how this piece of code works just like I showed you in the slide now I’m going to just comment this out and the second example I’m going to uncomment that so remember this is where we’re actually running second in first and third and second so I just want to show you how this would work so we’ll come down here actually let’s uh let’s just reload this whole thing real quick and then I’m going to put my break point right here at first and then reload and then if we run the function you’ll see that first is put on the stack now it’s going to go to Second which is still in first okay and we’ll run that and now look second is on top of first inside second we run third so let’s do that and now third is on top of second so this looks exactly like the diagram that I just showed you all right and then if we step through third will end gets popped off now you can see second is on top we’ll run that that gets popped off first that gets popped off so I just wanted you to understand at the very at a very basic level how the call stack works so in the next section we’re going to start to look at control flow and logic and conditionals hey guys welcome to section four so I know that some of you might be getting a little antsy because you want to get into the the document object model stuff and creating things in the browser and events and all that and that’s coming soon I promise but this stuff is very very important these are the fundamentals these are things that you absolutely have to know to do anything in JavaScript so in this section we’re going to look at logic and control flow which is something that is very important not just in JavaScript but in any programming language because you need the ability to make decisions you need the ability to run certain blocks of code if something is is true or false so we’ll be looking of course at if statements or if else statements we’ll be looking at switches I want to get more into the truthy and falsy values I know we touched on that a few sections back but I really want to dive into that logical operators logical assignments shorthand if statements and the ternary operator so that’s the the type of of stuff I want to get to here we’re going to have a couple challenges as well alright so let’s get into it all right so one of the main ways to have control of the flow of your application is with if statements and if statements are in just about every programming language if they’re not then there’s there’s most likely something similar so the format of an if statement is very simple we just say if and then in here we can put either a value or an expression so I’m just going to put true in this one and then if that passes so if it’s true then whatever I put in here will run I’m just going to say this is true if I save that you’ll see that that runs now if I were to copy this down and change this to say false and then we’ll say this is not true if I save that that’s not this block of code right here line six is not going to run because this expression that I passed in is false all right now we can also evaluate expressions that with uh with operators like equals or less than so I actually have a chart right here so we can test if something is equal to with both double and triple equal signs or not equal to greater than less than and also greater than an e or equal to or less than or equal to so just to give you a quick example and let’s actually create a couple variables here we’ll say x equals 10 and let’s do y equals 5 and we’ll say if x is greater than y then let’s just do a console log put through some backticks in here and we could say x is greater than y save that and we get 10 is greater than 5. if I want to use an equal sign or our triple equals whatever not quadruple equals that’s not a thing and then here we’ll say x is equal to Y if I save that this block of code isn’t going to run because this is false right if I change y to 10 and I save then that will run now this one’s not going to run because 10 is not greater than 10. if I were to use greater than or equals that will run okay so we could say is greater than or equal to save that we get 10 is greater than or equal to 10. now as far as if else goes if I change y back to 5 this right here this block of code is not going to run but we might want something to happen if this is false so if this is true this line will run then we can add an else if we want and say let me just just copy this and I’ll say is not equal 2y so if I save that now we’re going to get 10 is not equal to 5. so the else is going to run because this expression is false now we talked a little bit about we talked quite a bit about scope in in the last section but I just wanted to remind you that blocks like if statements have their own scope so if I put it doesn’t really matter what I put in here I’ll just say if X is not equal to y and then I just want to show you in here if I were to create a variable like let’s do Z and set that to 20 and let’s say console log and let’s see X I’ll just say I don’t know we’ll just say Z is 20. it doesn’t really matter what I want to show you here if I save that we get 20 is 20. but if I were to try to access that Z variable I can’t do that Z is not defined and that’s because I use const if I use let here to Define Z I get the same thing if I use VAR it actually works because VAR is not Block Level scoped it’s function scoped like it you can’t use if I were to say VAR Z in a function I can’t use it outside of that in the global scope but with other blocks like loops and if statements it’s not scoped okay so and that’s it’s not a good thing that this is not scoped because then someone might want to access that Z variable somewhere else and they’ll be able to so that’s why Latin cons to are actually created was to keep Block Level scoping now the next thing I want to show you is some shorthands that we could use I don’t really do this and and recommend it but it is possible so let’s take this right here this if statement and let’s just say shorthand if so paste that in and I’m not talking about the ternary operator we’ll get to that later but I can actually get rid of the curly braces here so that is perfectly valid JavaScript if I save that we get 10 is greater than or equal to 5. all right and then if I wanted to use an else I could after the semicolon do else and without parentheses I’m sorry without curly braces we’ll say I don’t know it doesn’t matter we’ll say this is false and save that and if I change let’s say y to 50 and save that you can see this is false now this this looks cluttered to me I don’t like it I I would use parentheses but everyone has their own preference but I just want to show you that if you have multiple lines like right here we just had a console log if this was true you can do this with multiple Lines by using a comma so let’s say I also want to log let’s say console.log this this is true and if I save that you’ll see I’m not getting any errors if I change this back y back to 5 and I save it’s going to run both this line right here and this line right here this is this it’s true this is true so you can do this but I really don’t like the syntax and wouldn’t suggest it all right so that’s it for just the basics of of um if statements in the next video I want to get into else if as well as nesting okay in the last video we looked at if statements and if else where we said if something is true do something else do something else now you might have situations where you have multiple conditions that you want to test and do and run some block of code based on these multiple conditions and that’s where else if comes in so let’s make this a little bit more interesting we’ll create a date so we’ve already looked at the date object and I’m going to set it to a specific date let’s do 10 uh we’ll do 10 30 22 and then I want to put the time so eight we’ll do eight o’clock so eight zero and zero and remember you can pass a string in here if you want doesn’t have to be these um these arguments and then I want to get the hour because that’s what I want to test so I’ll say const hour and then on the date object we’ll run the get hours method and if we console log that so console log our then we’re going to get eight right because I set it to eight if you if you don’t pass anything in here it’s going to give you your current hour so mine would be 10. but we’re going to keep it at eight so we’re all on the same page and then let’s do an if statement here so we’re going to say if the hour is less than 12. all right so if the hour is less than 12 then let’s do a console log of good morning all right because it’s less than 12. now I could do else here so if I do else we could do console log and let’s say good night and if I run this I’m going to see good morning because it’s 8 right now what if I want to say good afternoon if it’s at a certain time in that case I would do an else if so I’m going to go where this else is where this uh this first ending curly braces and just put that on the next line and then say else space f and then open up a set of curly braces and we could put this here and let’s say if the if the um what is it our is less than 18 then let’s say console log and we’ll say good afternoon all right so basically if it’s less than 6 p.m it says good afternoon now we’re getting good morning even though it is less than 18 right we’re at eight but this ran first so it’s going to first look at this if the hour is less than 12 which ours is then this is going to run and it’s not going to do anything further if the if the time is let’s say 13 and I save now we’re going to see good afternoon because this doesn’t pass the first one right so it’s going to say else if the hour is less than 18 which it is it’s 13 so now that’s going to run if I change that so that this is also false so if this is false and this is false if like if we say 19 then the else the final else is going to run okay so that is the else if now we can also nest if statements let’s say nested if so I’m going to say if let’s say our is less than 12 and actually you know what we’ll just let’s just copy this because I’m doing kind of the same thing here but I want to show you how we can Nest this to get even more options so let’s say if the hour is equal to six if it’s 6 a.m then we want to console log wake up so we know that in here it’s going to be this this code is going to run if the hour is less than 12. obviously 6 is less than 12. so what I’ll do is in here I’ll Nest another if statement and we’ll say if the hour is equal to 6. then let’s console log let’s say wake up okay so that’s how we can nest and maybe maybe at night time let’s go down here and let’s Nest another if statement okay and we’ll say if the hour if the hour is greater than or equal to 20 then we should be sleeping so say console log and we’ll just put uh a bunch of Z’s in here all right so let’s save that and we’re still going to see good night because we’re at 19 right now if I were to put the hour to six and save then we’re going to see wake up if I put the hour to uh and we’re going to see good morning if I put the hour to let’s say 21 we should be asleep so now we see good night and we see the Z’s so that’s nested if and you can Nest as many levels as you want you could go in here and put another if statement but that’s when you when you get to that level you might want to think about something like a switch which I’ll talk about in the next video now another thing we can do is have multiple conditions in a single if statement so for instance let’s say if the hour we’ll say if the hour is greater than or equal to 7 but let’s say I will also want to test if it’s less than 15. in that case I could put a double Ampersand and that’s going to be the and operator so I could say and if the hour is less than 15. so let’s say that’s the work day so I’ll just do console log and say it it is work time all right so if I save that I don’t see it because right now the hour is at 21 but let’s set it to we’ll say 9 A.M and we’re going to see it is work time now this is just one operator the and we could also do or so maybe we want to say if the hour is let’s say equal to 6 or which is going to be the double pipe characters or the hour is equal to 20. then let’s say that’s the time we brush our teeth so we’ll say brush your teeth save that now if we put the hour at either 6 or 20 so at 6 we’re going to see wake up and brush your teeth okay the wake up is coming from right here and the brush your teeth is coming from here because the hour is 6 or 20. okay so that’s or and then this one is if the hour is greater than or equal to 7 and the hour is less than 15. all right so in the next video I’m going to show you another way that we can evaluate expressions and do certain things depending on the result with something called a switch all right so now we’re going to get into switches which is another way to evaluate expressions and values so let’s go ahead and create a new date just like we did in the last video so I’ll say new date and let’s just do 2022 yeah we’ll just do uh arguments so 2022 one so that’s the month and then whatever 10 and we’ll do eight zero zero so it’s eight o’clock and then I’m gonna get the month so let’s say const month equals get month D I’m sorry D dot get month and then let’s check that out so month and save and we get one so we’re in January all right now I’m gonna create a switch that takes in month and evaluates it so basically we we look at month and we can create different cases for the value so for instance the case of it being one so this is the syntax case then the value and then a colon and then this is the block of code we would run so I’m just going to do console log and we’ll say it is January and then once we’re done in this case we want to write a break statement so we just say break which is kind of like a return it just breaks out of this case and then we’ll do case two colon and do a console log here and say it is February and break and we’ll do one more case three and console log and say it is oops it is March okay now if it doesn’t match any of these what you want to do is have a default so whatever you put in this default will happen if it doesn’t match any one of those so I’ll say it is not January February or March and we don’t need to put a break on the default so I’m going to save this and you see we get it is January now if I come up here and I change the month to two it says this is February if I change it to three it is March and if I change it to four or anything else it’s going to say it is not January February or March all right but I’m just going to put it back to January so I mean switches are most commonly used with immediate values meaning it’s we’re checking the month directly you can use it with ranges though like we did with the hours in the last video so for example we could do switch and then what we would do in here is pass in true and then we could say case and say our actually we didn’t Define our yet didn’t did we so let’s go up here and let’s just do what we did in the last video we’ll say hour equals D dot get hours and then we’ll come back down here and let’s say case hour is less than 12. and then we’ll console log here good morning and then break and then we’ll do another case and this one will be our is less than 18. and we’ll console log good afternoon and then break and finally we’ll do case hour actually we’ll just do the default and for the default we’ll do good night because obviously it’s not going to match anything else so if I save that we see good morning if I change the time because right now it’s the time is eight if I change it to uh let’s see 13 and save we’re going to get good afternoon and if I change it to anything above 18 like 19 it’s going to say good night so we can do it like this as far as ranges so those are switch statements you don’t see them they’re not as common as if statements but if you have something where you have like you know five six seven plus else if I think a switch is uh that’s a good use case for a switch all right you see them in like reducer functions and stuff like that when it comes to like front-end Frameworks and State Management and all that so those are switches in the next video we’re going to do a little challenge all right guys so now that you know how to deal with functions and conditionals we’re going to do a little challenge so let me just open this up here so the calculator challenge basically what I want you to do is create a function called calculator that takes in three parameters num1 num2 and then an operator and the operator can be plus minus multiplication or Division and the function should return the result of the calculation so if anything other than the four operators are passed in then the function should return an error message like invalid operator so as an example if we pass in 5 2 and plus we should get 7 5 2 minus three five two asterisk 10 and 5 2 2.5 and then if we pass in anything else that’s not one of these four operators you should get an error message you can return it or console log it or both as a hint you can use an if statement for the operator but this is also a good example for using a switch statement so it’s really up to you or you could do both so go ahead and pause the video try it out and then come back so what I’m going to do is use a switch so let’s create our function first it takes in num1 num1 num2 and operator and then I’m going to just create a variable called result and then we’ll run a switch on the operator and for the first case we’re going to look at see if a plus sign is passed in and this should have quotes around it because it’s a string if that’s the case literally then we’re going to set the results to num1 plus num2 and then we’re going to break all right and then what I’ll do is copy this down we want four of these because we have four operators to test so this one will be minus minus and then this one will be multiplication make sure that you change both here and here all right and then what I’ll do is for the default we’ll set the result because obviously it’s not going to be any of those operators so I’ll say invalid operator and then outside of the switch I’m going to first console log the result and I’m also going to just return the result all right and that should do it so now to test it out we’ll come down here and let’s do calculator and let’s pass in we’ll just use the example five two so we’ll say five two and then we’re going to pass in plus as a string we’ll save that we get seven if we do a minus sign we get three if we do an asterisk we get 10 and if we do a slash we get 2.5 and if I do anything else like an ampersand then we get invalid operator all right so that is the result that we’re looking for now if you used an if statement if you used elseif or whatever that’s absolutely fine as long as you get the same result so in this video we’re going to look at truthy and falsy values this is something for you to it’s really important for you to understand so try and remember these at least the falsy values because anything that is not falsy is going to be truthy and what I mean by that is if you have something you pass into an if statement that’s not something equal to or is something greater than maybe you had just have a string like an email so we’ll say test at test.com and then I pass that in here so I want to evaluate email and then I’ll just console log here you passed in in an email and if I save that you’ll see that that runs so this was evaluated to true or I should say coerce to true if you remember we talked about about type coercion where JavaScript implicitly changes the type so when you pass something into an if statement it’s always going to be coerced into a Boolean okay and we can even do a console log here and say Boolean and pass in email and you’ll see we get true the reason for this is that a string with anything in it is a truthy value okay so it’s always going to result to true so what I want to do is paste in that will do the falsy values first so let’s uh we can just just get rid of this and I’m going to paste these in so there’s six falsy values and what I’m going to do is set a variable let’s say const x and I’m going to set it to the first one which is false and I’m going to do two things I’m going to pass it into Boolean to see what it evaluates to and then I’m gonna I’m sorry that should be X and then I’m going to do an if statement so I’ll say if x and then we’ll say uh console log this is we’ll say this is truthy if this is true right and then let’s say else then we’ll console log this is falsy if I save that we’re going to get this is falsy and false because obviously false which is already a Boolean is going to be a Boolean false now zero if I pass in 0 to X we get the same result because if we pass zero into an if statement that’s a falsy value so we’re going to get false for that if we pass in an empty string that’s also a falsy value that’s why a lot of times like with web forms when you’re doing validation you’ll check to see if the value is there or not so in in it’s passed in as an empty string if it’s submitted as an empty web form or an empty input all right so an empty string null is also going to be falsy undefined is going to be falsy and then Nan are not a number is also going to be falsy now anything that is not falsy is going to be truthy so anything other than these six values right here but there are some things that are a little confusing that you might think are falsy and even even developers after like a year still forget that these are falsy some of these so I’m going to paste in some of these truthy values like I said everything else is not falsy but let’s try some of these so obviously true is going to be truthy right if we do zero but within a string of course that’s truthy anything in a string is truthy even a space if I put a space here that’s truthy but if it has nothing then that’s going to be falsy all right if I put false in a string that’s truthy because that’s not an actual Boolean it’s a string with something in it it doesn’t matter what it is as long as it’s something another thing that can be confusing is an empty array if I do that that’s truthy you might think if we say if and then an empty array you might think that that’s going to be falsy because there’s nothing in it but it’s still an array if you want to get the the length I’m sorry if you want to check to see if there’s something in an array then you want to check the length same thing goes with objects if we have just an empty object that’s also truthy if we have a function that has nothing in it that’s going to be truthy as well so this is really important for you to remember that it’s going to be true unless it’s one of these things right here now let’s talk about some caveats so I’m going to say truthy and falsi caveats I was going to do this in a separate video but we’re only at four minutes and something so let’s say let’s say we have a web form that’s asking how many children we have and I’ll create a variable to represent that so I’ll say Khan’s children equals two let’s say that’s what we passed in and then we want to validate the form so we’re saying if children then whoops then we’ll do something let’s just say a console log with backticks and we’ll say you have whatever number children and then else then we want to tell them to enter their children right the number of children so we’ll console log and say please enter number of children okay um and this is something you commonly see in web forms if a field is required so I’m going to save that we get you have two children right they passed in two pass in one you have one children now what do you think is going to happen if we have no children and we choose zero let’s say it’s a select field and we select zero well it says please enter number of children or I have no children so I’m selecting zero the reason it’s doing this is because zero is being evaluated here and zero is a falsy value so you can run into some issues with this I’ve actually seen this same issue over and over so a solution here one thing you could do is say is children not equal to undefined if I do that now it says you have zero children another thing I could do is run children through it uh not is Nan so is Nan is is not a number and what I’m saying here is is it not not a number if I save that that works as well you have zero children if I put in three that’s going to work as well so that’s another solution you could do um but yeah you just want to make sure you know what you whatever you’re passing in make sure you know what that coerces or what that evaluates to now another caveat that we see is checking for empty arrays so maybe you have an array of blog posts and if there are no posts you want to say like no post to show or something like that so let me just show you if we do const yeah we’ll just call this posts and we’ll set that to an array and we’ll say post one and post two right and then we’ll console uh sorry we want to do an if statement so if we say if posts then I’m just going to console log here list posts else then we’ll console log no pose if I save that it says list posts so I mean in real life you’d probably list your posts in the Dom which will you know we’re going to get to soon but if you have no posts and save it still says less post it doesn’t say no posts I will say no posts to list it doesn’t say that because an empty array is truthy right if we go up here an empty array is a truthy value so that’s going to evaluate to true so again know what you’re passing in so what you could do here remember we have a length property on arrays you can see that the length is zero if I add something in here then it’s one okay one two without whatever however many is in there so what you could do is say if post dot length is greater than zero now if I do that it says no post to list if I go in there and I add in post one and save now we get list posts so if you want to check for an empty array you want to do it like this now with objects let’s say check checking for empty objects so we’ll say const and I don’t know just say user equals and let’s set it to say name and Brad and then we want to check say if user then console log and we’ll just say list user else then we’ll console log no user all right so if I save that we’re going to get list user now if I if I empty the properties and it’s just an empty object It also says list user so you might want to check to see if there’s anything in the object and doing it like this is not going to work because this is a truthy value now we can’t use length directly on an object so if I if I were to try to console log user dot length you can see it gives me undefined so we can’t use length what you would do I mean there’s a few ways you could do this but one of the most common things to do is to use object dot keys and we looked at this in a past section if we say object dot keys and we pass in our user that will give us an array of the keys right so then since that’s an array then we can call length on it and we can say if that is greater than zero or you might want to say if it’s equal to zero then you would do this you know you might do it the opposite way around so let’s save that and now we get no user if there’s nothing in here if I add in a name and save now it says list user now another thing that can be confusing is using Lucy quality which is the double equal sign and this is one of the reasons that I I just about always use a triple equal sign so if we were to do a console log and say false double equals zero okay so we’re comparing false to zero and we’re getting true and the reason for that is because 0 is a falsy value and obviously so is false so if I were to do let’s say an empty string equals zero again I get true if I do no equal to undefined I get true so there’s many cases if you’re trying to compare these you’re not going to want true so that’s where the strict equality comes in if we add another equal sign to all of these oops then we’re going to get false for all of them because this will check the type as well okay um so again I always use triple equals but everyone has their own preference so those are some of the caveats that that you might run into when you’re dealing with true truthy and false values I don’t know if caveat’s the right word but some some areas of confusion so hopefully that clears that confusion up all right so in this video we’re going to get more familiar with the logical operators especially the double Ampersand and the double pipes which are the and and or logical operators so first thing I want to do is just do a console log here with a couple Expressions let’s say if 10 we’ll say if 10 is greater than 20 which we know is false double Ampersand which is and and let’s say 30 is greater than 15 which is true if I save this we’re going to get false because when we use the double Ampersand in this in this way all everything here has to be true okay because it’s this this expression and this expression and we can add more in here as well like we’ll say uh let’s say 40 is greater than 30 which is true if I save this is still going to be false I could add a million more true things it’s still going to be false because this first one is not true if I change that to 10 is less than 20 which is true which makes them all true then we get true for this whole thing now when it comes to the or operator let’s say if 10 is let’s say 10 is greater than 20 which is false and then I’ll use the double pipes which is the or and then 30 is greater than 15 which is true if I save that we get true even though the first one is false one of these is true which is what matters it’s one or the other so if I make both of these Falls like say 30 is less than 15 then we get false okay so with the double Ampersand they all have to be true with the or just one of them has to be true now you’re going to see these used in in other ways as well so I’m going to create a variable here and actually let me just put a comment because we’re going to look at doubling ever since and this will return so if we add a bunch of values and we use this operator this will return the first falsy value or the last value so let me show you what I mean if I do a console log a and then I’m going to set here a equals let’s say 20 uh 10 double Ampersand 20. if I save that I get 20. so if we read this again we’ll return the first falsely value or the last value we have two values here 10 and 20 none of them are falsy so it’s giving us the last if we do another double Ampersand and we do 30 that’s going to give us 30 because again no falsy values so it gives us the last if I change this 20 to a zero which is falsy then we’re going to get that zero all right if I copy this down and I do before that zero let’s say an empty string which is also falsely then I’m going to get that empty string so that’s how that works now you might be saying well this doesn’t look you know when would I do this when would I use this so to give you uh kind of a a practical example let’s say we have some posts usually it’s an array of objects but let’s just say there there’s some strings post one pose two okay and let’s say we’re getting those from a database or from an API and we want to show them on the page right let’s say we want to show the first post so I’m gonna I’m just going to do a console log you’d probably show this on in the page but for now let’s just do a console log of posts and let’s get the first one all right so I get post one right I’m getting the zero index of this array now if this PO if this was empty like let’s say there’s no posts in the database or whatever and then I go to display this or in this case log it I get undefined so if we were displaying this on a web page you’re not going to want to display undefined so what we could do is before that is add a condition of let’s say posts dot length and let’s say if that is greater than zero then we’re going to use the double Ampersand here now if I save that it’s not going to show this if this if there is no post there right if the posts are empty then it’s not going to show it if I add in here post one post two and then I save now I see post one so this is a very common way of of using this operator we do this a lot in react in the front-end framework react when we’re working in jsx and we’re taking stuff from an API or wherever the the data is coming from and we want to we don’t want to display something that’s not there you want to check first to see if it’s there so if this is false it’s going to show it’s going to return the last value now as far as the double pipe the or operator the way this works is it will return the first truthy value or the last value so let’s say let B and then we’ll console log B and let’s set b equal to 10 and then we’ll use the double pipes and then 20. so in that case it gives us 10 because again it will return the first truthy value or the last value both of these are truthy so it’s going to return the first one if I were to set b equal to let’s say 0 which is falsy and then put 20 on this side then it’s going to return 20 because it will return the first truthy or the last value if I do let’s say b equals and then 0 and then null and then let’s do an empty string which are all falsy it’s going to return the last okay if I put on undefined which is also falsy then it’s going to return that which is the last now as far as other operators we have the What’s called the nullish coalescing operator which is the double question mark it’s not used as much but it is available so the way this work works is it Returns the right side operand so whatever’s on the right side when the left is either null or undefined so let’s say let’s let’s see and console log C and then we’ll do C equals and then 10. the knowledge coalescing operator 20 and it’s going to give me 10. so again it Returns the right side when the left is null or undefined 10 is not null or undefined so it’s going to return 20 the right side if we were to set the left side to either null or undefined then the right side gets returned you can see we get 20. let’s say 30 and let’s do undefined we get 30. now it’s not falsy on this side then it Returns the right it’s just null or undefined so if I do 0 here it’s going to return the zero it’s not looking for just falsy it’s looking for on null are undefined if I do an empty string then it’s going to return that empty string because it’s not null or undefined all right so the there’ll be places where you run into this stuff and keep this you know keep keep the documentation and the code that we write here so that you can look back at it if you need to all right now in the next video we’re going to look at logical assignment all right so now we’re going to look at logical assignment operators and in the last video we looked at logical operators like and and or but we also have assignment operators which look like this so we have the or equals the and equals and then we also have something called the nullish coalescing operator now some of these might not make a lot of sense to you right now because you you can’t really understand where you use them I think that the or the or assignment operator is the most useful here so basically the long version of this I’ll just do an if statement here and let’s define let a and we’re going to set that to any falsy value so we’ll just we’ll just set it to false all right and then in here I’m going to say if not a meaning if it is a falsy value right because it was saying not then let’s set a to whatever let’s say 20 or let’s say 10. okay so this can be useful because you want to check to see if a variable is false or null or anything falsy and if it is then you want to set that to a specific value so the shorthand way of doing this using just the or operator and like we did in the last video we could say a equals and then a or 10. so what we’re saying here is just the same thing we’re doing here if a is falsy then set the right hand side so as you can see it says assigns the right side value which is this only if the left is a falsy value which right now is set to false all right so if I comment this out and I run the if statement all we need to log it you’ll see we get 10. if I comment this out and then I run this it does the same thing we get 10. well there’s a shorter way of doing this using the assignment operator so instead of doing that I can just simply say a and then or equals and then 10. if I comment this out we get the same thing all right if I set this this a to null it’s going to it’s going to get set to 10. if I set it to 0 10 so anything falsy if I set a to 20 then it’s going to stay at 20. this isn’t going to set set it because it’s not a falsy value all right so that that can be pretty useful now with the and assign operator it will assign the right side value only if the left is a truthy value so you probably wouldn’t use this one as much but let me give you the the long version of what we’re doing so we’ll set a variable here let’s say let B and we’ll set that to 20 and we’re going to say if B so if it’s truthy then we’re going to set B to something something else let’s say well you know what we’ll do is we’ll set this one to 10. all right and then let’s console log B and it’s going to get set to 20 because B is truthy again this will assign the right side value only if the left is truthy so using a logical operator we would do B equals B and then the and operator and then 20. okay so if I save that we get 20. this is the same as this and then to make it even shorter we could use the assignment operator so we could say B double Ampersand equals 20. okay same thing but again this probably isn’t you’re not going to use this as much as this because this makes more sense right you’re checking to see if it’s if it’s falsy then you’re setting it here you’re checking to see if it’s truthy and then you’re setting it and there are cases where you could use that now the this right here the double question mark equal this is the nullish coalescing operator so this will assign the right side value only if the left is null or undefined with the or it’s if the left is um is falsy at all so zero an empty string no undefined false so it’s checking for falsy this will only check for null or undefined which you might want you know you might not want to check for zero or an empty string or whatever so the long version of this would be if let’s set up another variable here called C so you’ll say let’s C equals and we’ll set it to null and then we’re going to say if C is equal to null or c is equal to undefined then we want to set C to whatever we’ll say 20. okay and if we come down here we console log C we’re going to get 20 because C is null if we set C to undefined it’s going to be 20. if we set C to false which is a falsy value but it’s not null or undefined then we’re going to it’s going to stay false okay and then the shorter version for that would be C equals and then we want to say C and then the nullish coalescing operator and then whatever 20. so that’s still false if I change this to null then that’s going to change to 20. and then the shorter version of that would be to use the assignment operator like that okay so hopefully that makes sense and it’ll probably be a while before you use something like this in an actual project but I we’re going over you know logic and control and and conditionals so in in different operators so I wanted to include logical operators as well as these logical assignment operators all right so now we’re going to look at something called the ternary operator which you’re probably going to use all the time and it’s a shorter way for writing a conditional so what I’m going to do here first is do a just a basic condition using an if statement and then I’ll show you how to do it with uh with a ternary operator so let’s say using and if statement so I’m going to say if the age variable is greater than or let’s say greater than or equal to 18. then let’s do a console log and we’ll say you can vote else then we’ll console log and say you you can not vote all right so pretty simple if I run that we get you can vote because I set age to 19. if I set it to 13 and say if we get you cannot vote so I want to show you how to write this in a one line one liner using a ternary operator so let’s say using a ternary operator now this syntax is actually really simple but it can it does confuse a lot of people when they’re they’re first learning it so I’ll try to explain it the best I can so there’s basically three parts to it the first is going to be the condition so in this case we’re testing to see if age is greater than or equal to 18 okay so that’s what we want to evaluate then we want to use the ternary operator which is simply a question mark and you can think of this as the if because what comes after this is what you want to happen if this is true right so in this case we want a console log and we’re going to say you can vote right and then for the else is that’s going to be represented with a colon all right so else then let’s do a console log and we’ll say U can not vote if I save that we’re going to get the same result as this all right so three parts we have where we evaluate the condition we have what will happen if that’s true and then what will happen if that’s false so it’s really simple and if I change the age to 20 then both of those should say you can vote now in a lot of cases you’re going to set a value based on a condition you’re going to set a variable value based on it so let’s put a comment here we’ll say assigning a conditional value to a variable using the ternary operator so let’s say we have a variable we’ll call it can vote and we want this to contain we could set it to true well yeah we’ll set it to we’ll make it a Boolean but we want that to be true if the user is 18 or over and we want to be false if they’re under so first thing we want to put here is the condition so let’s say if the age is greater than or equal to 18 then we want our ternary and then next is what we want to put what we want to store in that variable so we could store a string that says you can vote but I’m just going to put a true here because I want that to contain a Boolean all right and then else then we want it to contain false so let’s go ahead and console log can vote and if I save that we get true and then if I change that to let’s say 17 then we get false and it doesn’t have to be a Boolean that you put here you could you could also let’s make this canvo 2. you could have a string that says you can vote and then if it’s if that condition doesn’t pass then we’ll have a string that says you can not vote okay so now if I console log can vote 2. then it has this string you cannot vote that string has been assigned to this variable so you’ll see you’ll see this a lot in all areas of JavaScript now we can also have multiple statements so if we want to do multiple things if we want to do multiple things within the if and the else we can do that as well so first thing I’m going to do is show you the long version of of what I want to accomplish with the ternary so I’m going to create a variable called auth that represents if we’re logged in or not or if we’re authenticated and then I’m going to just create a variable called redirect and I want to set that to something different based on if this is true or false so I’m going to go ahead and just do an if statement first and we’re going to say if off so that’s going to be either true or false if we’re authenticated then I want to do an alert and we’ll say welcome to the dashboard right and then I want to set that redirect variable I want to set that to slash dashboard else then we’re going to alert and let’s say access denied because we’re not logged in and then I want to set that redirect variable to slash login all right and then we’ll just do a console log of the redirect variable here so if I save that we see welcome to the dashboard alert because auth is true so this is going to run and then when I click OK this is going to continue and it’s going to set dashboard into the redirect variable right if I set this to false now if I save we get access denied and we get login put into the redirect variable so we can severely cut down this code using the ternary operator so I’m going to show you how to do that so let me just comment this out and then we’re going to go down here and say const redirect and we want to conditionally set this right so we’re going to evaluate off we’re going to use the well actually I can’t let me just comment that out too so we’re going to evaluate auth whether that’s true or false and if it’s true I want to I want to do two things I want to alert and set the variable so I’m going to put parentheses here and then else I’m also going to do an alert and set the variable so I’m going to put parentheses here so the first thing I want to do if it’s true is my alert so I’ll say alert welcome so I can’t type welcome to the dashboard okay and then I’m going to put a comma after the alert because I want to do multiple things here and I’m going to put in here my string that I want to set which is going to be slash dashboard so that’s the true if it’s false then in here I’m going to do an alert and I’m going to say access denied and then I’m going to put a comma after alert and what I want to set the variable to is slash login so let’s go ahead and save that and you’ll see since auth is false we’re getting an alert that says access denied and when I console log redirect it has login if I change this to true and save welcome to the dashboard and then we have slash dashboard so this does the same thing as this but shorter and its preference when and where you want to use the ternary so let’s see um the last thing I want to show you is that we can use a shorthand we can use the the and operator as a shorthand if there’s no else right because not every if statement not every conditional has an else you might just want to do one thing so let’s say for instance if I come down here um let’s say we want to evaluate off whether that’s true or false and if that’s true then I want to do a console log and just say welcome to the dashboard in my console else then nothing I don’t want to do anything else so in this case if we’re using the ternary oops I’m sorry that should be a colon if we’re using the ternary we need to have an else I can’t just do this if I do that I’m going to get a syntax error so I have to have an ounce but if I don’t want to anything to happen I could do this I could say no right so now it’s going to let me just comment this out because I don’t want to keep getting that alert okay so we see welcome to the dashboard because this is true if this is false then we’re not going to see anything because I just set this to null but a shorthand to this if you don’t want to do else null is to use the double ampersamp the and operator so I can say auth and then double Ampersand and then console.log and then welcome to the dashboard and then I’ll comment this line out and save doesn’t do anything right now but if I set this to true then we see welcome to the dashboard so this this comes in handy a lot I use this a lot when using react with jsx if you don’t know what that is don’t worry about it but it’s it’s very convenient and very compact all right so that is the ternary operator hopefully you understand this so let’s move on to the next video all right guys so most of the stuff that we’ve done has been pretty basic aside from a few things like scope and execution contacts Etc now we’re going to step it up a little bit and learn about loops and iteration as well as some high order array methods which are methods that we can use on arrays that take in a function as an argument and we can use these methods to Loop through or iterate through arrays and do specific operations on each element and these These are methods that you’ll be using all the time in JavaScript so this section is is really important and after this in the next section we’re finally going to get into you know being able to show stuff in the browser and get into the document object model events and all that stuff and now you’ll be more comfortable doing that where now you know the fundamentals of JavaScript syntax all right so let’s get started with loops all right so we’re going to be looking at Loops in the next few videos and a loop is a control structure that provides a way to do iteration in programming and iteration is a process where you repeat something over and over again until a certain condition is met or until a certain condition is not met and this can help automate tasks and so on and there’s many different kinds of Loops in programming what we’re going to look at right now is one of the more common ones and this is a for Loop all right so this is the syntax right here this is an actual code but this is how it’s formatted and I’ll create a real for Loop in a second but just to show you what goes in here so we have four and then we have some parentheses and three different Expressions that are separated by semicolons which are a little weird you probably mess up and use commas but it’s going to be semicolons here now the initial expression is where we initialize a variable or counter to use within the loop and then the condition expression is going to be the condition that the loop will continue to run as long as that condition is met so as long as this is true it’s going to run once it’s false then the loop will no longer run and then we have the increment expression which is going to be executed after each iteration of the loop okay every time it Loops that’s called an iteration it’s going to run after every one of those and it usually increments the variable because if you keep your your variable or your counter the same you’re going to have an infinite Loop you need to increment that and then the statement is just going to be your code executed and you need to use curly braces like you would a functioned to execute a code block all right so let’s just comment that out because that will break our script and then we’re going to come down here and let’s create a for Loop okay so just like a function parentheses and curly braces then we want our initial expression which I’m going to say let I I is very common very common variable to use in Loops so we’ll say set that to zero then we want to put our semicolon because these three expressions are separated with a semicolon the condition that I want this loot the code to run as long as this is met is going to be as long as I is less than or equal to 10. okay so as long as that condition is met this Loop will run and then lastly here I’m going to put in the increment expression which will be I plus plus so we learned about that in the past video this will just increment by one all right so basically it starts at zero it’s going to go through then it’s going to increment by one so I will then be equal to one it’s going to go through again it’s going to run whatever code we put in here every time up until this is no longer true so let’s just do a console log in here I’ll just put a string we’ll say number and then I’m just going to concatenate on the I variable and we’ll save that and run it and you’ll see we’re going to get number zero all the way up to number 10. now it stops here because it it no longer meets this condition it goes through the this last time and says well now I is is doesn’t match this it’s not less than or equal to 10 so we’re not going to run this again okay if I change this to 11 and save then it’s going to get it’s going to go up to 11. if I change this initialization here from 0 to let’s say five and then I save it then it’s going to start at 5. all right uh and it’s gonna it’s gonna just increment by one each time if I wanted to I could do something like I equals let’s say I plus two if I save that then we get 5 it’s going to skip six seven skip eight nine so it’s basically incrementing by two but most commonly you’re gonna see this and let’s just set that back to zero and let’s set this back to 10. now you might be asking why I’m using let because you know that I use const unless I I can’t so in this case if I were to use const here and save that I get assignment to constant variable because remember we’re initializing I here is zero but it’s going to get changed in every iteration so we can’t have this as a constant we use let now I also showed you in a past video that we have block scope here right so if I come outside of the loop and I console log I I’m going to get an error unless I use VAR because remember VAR is not block scoped so if I do that then I’m going to get 11 but I would highly recommend that you use let when you use when you you know create for Loops now you’re going to have situations where you check to see if I is is equal to something or greater than or less than something and maybe do something else based on that so for instance if I want to say put in an if statement here and if I say if I is equal to 7 and then let’s say I just want to output and say 7 is my lucky number so I want to Output that if it’s seven and then if I didn’t want number seven to show I just want this 7 is my lucky number then I could put an else and then move this into here so now if I save that it’s not going to show number seven it’s just going to show 7 is my lucky number instead now there will be times where you will Nest Loops so I’m just going to show you that real quick and it can get a little confusing when you have you know multiple levels of Loops but just to give you a simple example let’s do the same thing here where we set I but let’s set it to 1 and say as long as I is less than or equal to 10 and then I plus plus we want to increment by one and we’ll do the same kind of console log thing here but still within this Loop I’m going to open up another for Loop now when you do this you want to make sure you don’t use I again you want to use something different and it’s common to use J so we’ll say let J equals one I’m going to do the same condition here I’ll say as long as I is less than or equal to 10 and I’m sorry j you don’t want to do that you want to do J yeah or else you’re gonna get an infinite infinite Loop and then let’s increment J and then in here what I want to do is show I want this to do the console log like we already have here starting at one and under each number here I want to show that number times one that number times two all the way up to 10 that’s what this represents right here so let’s console log a string that actually says like one times one equals one in one times two equals two Etc so we’ll use a template string here and I’ll say I and then we’ll just put a asterisk here times J and then an equal sign and then the actual expression to to be evaluated is going to be I times J so if I save that what we’re going to see is the well actually let me comment this one out we’re going to see number one and then under it one times ever all the way up to 10 then 2 and then two times all the way up to 10 and that’s because of this if I change this 10 to a 5 then it’s going to show 1 times 1 all the way up to five for each of these all right and we could do as many as we want if I put this first one to a hundred it’s going to show me all the way up to 100 and it’s very fast so that’s a nested Loop so let me actually should say nested loops and what I want to show you now is how we can use a for Loop to Loop through an array now I don’t do this very much because there’s a for each method that we can use it’s a high order array method we’re going to get into in a couple videos from now that we can use to Loop through arrays and do the same thing but it is possible to use a for loop as well so let’s say we have names or whatever anything you want to put into an array I’m just going to put a bunch of strings here names and we’ll say John and I don’t know Tim okay so we have some names now to Loop through this I’m going to say four I’m going to initialize my variable so we’ll set let I set that to zero and then here for a condition we can say as long as I is less than is less than the length of the array so we’ll say names dot length and then we need to increment I so we’ll say I plus plus and then within here we can access each one by its index I is now going to represent its Index right because it starts at zero so this will be zero then that’ll be one two three and four so let’s just console log each one we’ll say names and then we’ll put the I as the index in here and I’ll save that and now you see it’s going to Loop through and it’s going to show each name now those of you that are just learning this for the first time I want you to try a little challenge so pick a name here let’s say Sarah and instead of just printing Sarah have it print Sarah is the best so if you want to pause the video and try that out you can do that now but basically all we have to do there’s a few ways we could do it if we know the index which we do we know Sarah is in the zero index so we could just say if I is equal I’m sorry the two index if I is equal to 2 then let’s do a console log and we’ll just say names I which is just going to say Sarah and then we’ll concatenate onto that a string and say is the best else then we just wanted to log the name so I’ll put this up here oops whoops and save and now it says Sarah is the best so you could do it like that you could test for the value so we could say if names and then I if that is equal to and then the value let’s say we want to do John is the best then we can check for John and now you see it says John is the best all right so that’s pretty much the basics of for Loops now you’re probably going to have times where you run into something called an infinite Loop that’s a loop that just keeps going and never stops until it crashes your browser in this case and that can happen if you mess up the condition or if you if you forget to increment if you want to test it I wouldn’t recommend it but if you want to test it you’ll just have to most likely force close your browser but you could put Infinity here so if I did that obviously I is always going to be less than infinity that means that this is always going to run but I’m not going to do that so you probably will run into Infinite Loop set some point or another but in the next video we’re going to talk about the break and continue statements all right so now we’re going to look at the break and continue statements so this should be a pretty quick video basically what break does is it allows us to do just that break out of the loop so usually you’re going to check for a specific condition and then you’re going to break out so let’s say we’ll set I to zero let’s say as long as I is less than or equal to 20 and increment by one and then let’s say we’ll just do a console log of I if I save that you’ll see it’ll just show 0 through 20. but let’s say we want to stop once we hit 15 so I’ll just do a check here and say if I is equal to 15 then we’ll console log and let’s just let’s just say breaking and then right under that we’re going to put our break statement so just break semicolon we’ll save and now you can see once it hits 15 it’s going to break and it it just doesn’t go on any longer alright so you might have cases where once you hit a certain condition there’s no need to keep going you just break out of the loop all right now I’ll continue is a little different so with continue continue basically you can you can skip uh the rest of the code in a current iteration and then continue to the next iteration so for instance if we do the same thing here we’ll say let I equals 20 and as long as I’m sorry let I equal zero and then as long as I is less than or equal to 20 we want to increment and we’ll do the same thing just console log I let me just uh let’s comment this out here okay so we just get 0 through 20 and let’s say where a superstitious hotel and we want to skip the 13th floor so let’s say if and say I is equal to 13. then let’s do a console log and we’ll say skipping 13 which I think is crazy and then we want to just continue all right so what’s going to happen here if I save this as you’ll see it’s going to skip 13. so instead of like I could I could have the same effect if I did this if had this console log and then else had this console log but here I’m I’m just going to skip the rest of this right so whatever is going on down here it’s going to skip because of this continue so here it breaks out of the entire Loop right here it breaks out of the iteration and then continues on okay so hopefully that makes sense all right so now we’re going to look at two more types of Loops the while loop and the do while loop and these along with the for Loop are kind of like old school ways of doing iteration now that we have high order array methods we have four each and then there’s also other Loops like four in and four of which I’m going to go over as well but it still is essential that you learn these because these are like fundamentals and not just in JavaScript in just about every language so with a while loop it’s a little different because all that we put in here is the condition when we initialize and increment the variable we don’t do it within these parentheses this is just the condition so I’m going to initialize the I variable outside of the while loop and then in here I’ll put the condition say less than or equal to 20. and then I’ll console log let’s just put a string number and then concatenate that number now this can be easy to forget the increment and then have an infinite Loop because it’s not as obvious whereas a for Loop you know you have the three parts to pass in here you just have to remember to increment so let’s save that and now it’s going to print out 0 to 20. okay so that’s the syntax of a while loop now for many cases you could use either a while or a for Loop and achieve the same result as you can see it’s very similar it’s just different syntax but a common rule that many programmers follow is to use a for Loop when you know the number of times that you want the loop to run and then to use a while loop when the number of times the loop will run is unknown okay that’s not a mandatory convention or anything but that’s something a lot of people do we can also use while Loops to Loop over arrays just like we could use for Loops I’m just going to comment this one out and then let’s say const array we’ll set that to let’s say 10 20 30 40 and then in here we want our condition expression so let’s say while I is less than the array Dot length then we’re going to console log and we’ll say array we want the index to be the I variable and then this is really important you want to add your increment are you going to get an infinite Loop so if we save that now we’re going to see 10 20 30 40. so it’s printing out the values of this array if I add 50 that’ll get added as well now another thing that we can do is Nest while Loops just like we can for Loops so let’s say Nest nesting while loops and we’ll do the same thing we did before we’ll have the multiplication thing so let’s use I so we’ll say as long as I is less than or equal to Let’s do 5. and then in here we’ll just console log we’ll say number and plus whatever that I variable is and then in here I need I’m going to Nest another while loop so I need another variable right so we need to initialize another variable so I’ll use J and set that to 1. and then let’s say while and we want to say while J is less than or equal to and this is for the multiplication part so let’s do five we’ll do up to times five and then in here we’ll do our console log and we’ll make this a string where we can say I times J is equal to the expression of I times J now this is really important we need to remember to increment both J and I so let’s say J plus plus and then back outside into the parent Loop we want to do I plus plus all right so let’s go ahead and try that and now you’ll see it’s going to Loop through five right one through five actually it’s going to start at zero because of this we can set that to one so now it’s going to start at 1 and it’s going to show one times one through five then two two times one through five three four and then 5. okay so that’s how we can Nest a while loop now do while Loops are a little different because the do while loop will always run at least once even if the condition is false so the answer to the question when would I want to use a do while loop is when you always want the the block of code to run at least once even if the condition is never met so let me show you what I mean I’m going to comment this out and then let’s do let’s say do so this is the syntax we we say do no parentheses after it just just uh curly braces and then whatever we want to happen let’s say console log and number and concatenate that and then we want to increment so I plus plus and then here is where we’re going to add while and then that’s where we want to add our condition so let’s say while I is less than or equal to 20. okay and I don’t know why I open parentheses here um for curly braces we don’t want those all right so this is a do while loop so let’s run this and as you can see we get we get 1 through 20. remember this is set to 1. now like I said the thing with this is this code right here is always going to run once even if this is never true so if I were to come up here and set I to 21 that this is this condition is never met however if I save this I get number 21. so it runs this code here no matter what so that’s that’s the big difference with this if I uncomment this uh where is it this right here where it says I is less than or equal to 21 and I comment out the do while and save we get nothing right because this condition here is never met this is 21 so this is not whoops this is 21 so this is never going to run or this code is never going to run do while it’s going to run once then it’s going to check and see if it’s to run again so that’s the big difference and and you can also use break and continue statements with these Loops as well just like you can with a for Loop all right so when you go to get a job as a web developer and you go to different interviews you may be given specific programming challenges to do on the computer or on a whiteboard and it’s good practice to do challenges like this not only for job interviews but it also just sharpens your skills in general and you’ll find that most challenges have some kind of iteration involved and one of the most common ones that you’ll run across is called fizzbuzz and this has to do with loops and conditionals so I think that this is a good point in the course to do the fizzbuzz challenge and it’s not very difficult we’ve we’ve already gone over everything that you need to know so as far as instructions you need to print or log the numbers from 1 to 100 you guys know how to do that easily and you can use different types of Loops if you want you can use for a while whatever and then for multiples of three you want to print Fizz the word Fizz in a string instead of the number for multiples of three for multiples of five you want to print the word Buzz okay instead of the number and then for numbers which are multiples of both three and five you want to print Fizz Buzz okay so as far as hints go if you’ve taken the course up to this point then you know how to write a loop and output or log something for each iteration right so you can print the numbers you also know how to check for a condition with if else else if you also know how to get a remainder of a number using the modulus operator which is the percent sign and this is really all you need to know to complete this challenge I probably already told you too much now if you don’t get it don’t worry about it some people including myself are not that great with these types of challenges especially if you can’t you know do any research so try not to go and and Google fizzbuzz challenge try this on your own and see if you you can figure it out all right so let’s get to the solution now I’m going to show you I’m going to show you how to do this with a for Loop and a while loop so first thing we want to do is print or log the numbers from 1 to 100 which is very simple so we’ll say 4 and let’s initialize I with one because we’re doing one to a hundred the condition is going to be if I is less than or equal to 100 and then we want to increment I by 1. all right and now in here for now let’s just console log I so it should just print 1 to 100. so the next step is to print uh print the word Fizz for multiples of three now the way that we can figure out if it’s a multiple of three is if if the remainder is zero and we can find the remainder using the modulus operator so here let’s say if and we’ll say if whatever that the current number is on the current iteration and then modulus 3 if that is equal to zero then we know it’s a multiple of three so in that case we’re going to console log Fizz and then let’s just do else and then we’ll move that console log of the number in there so if I save that and we come up here you’ll see that three is Fizz 6 9 12 15 and so on now if it’s a multiple of five we want to print the word Buzz so what we can do is put let’s go right here and say else if or l space f and then open up a curly brace and end our curly brace and then in here we want to say if I and then again we’ll use the modulus operator but 5 this time if that’s equal to zero then we want to console log the word Buzz so let’s save that and now if we look you’ll see that 5 is Buzz right 10 is Buzz but if we look at 15 it says Fizz and that’s because 15 is a multiple of three and five and since this conditional was first then it’s going to log Fizz so for the condition of of looking for them both we can’t do that under these ones because it’s going to check those first so we have to make sure that the first one we check is is for both right so what we’ll do is instead of putting this as an if we’re going to make that an else if and then we’re gonna it will just push that over and then we’ll have our initial if statement here like that and then we can say if I modulus 3 equals zero and if I modulus 5 is equal to 0 then we want a console log Fizz Buzz alright so save that and now if we look we’ll see 3 is Fizz 5 is Buzz 6 is Fizz nine is Fizz 10 is Buzz 12 is Fizz fifteen is fizzbuzz the next one after that should be 30 is fizzbuzz next one after that should be 45 is fizzbuzz all right now a shorter way to do this since 3 times 5 is 15 that means that any uh anything that’s divisible by 15 is is also going to be divisible by both three and five so we can actually shorten this to just say I’m sorry that’s not what we want we want that to be zero but we want this to be 15. all right if I save that we should get the same result so Fizz buzz and then 15 fizzbuzz 30 fizzbuzz 45 fizzbuzz 60 say and so on all right so that’s the solution with a for Loop now a while loop is going to pretty much be the same thing we’re going to have the same conditions it’s just formatted a little different so let’s say while loop and remember with a while loop we need to set the variable outside of the loop I’m going to use J for this since we already used I and I’ll say even though I was scoped but I’ll say let J equals 1. and then we’ll say while J is less than or equal to 100 then we want to do this this block right here so I’m going to grab that paste that in now remember with a while loop it’s it can be a little hard to remember that you have to increment so make sure that you go outside of that if and you just increment I by one so I plus plus all right so let’s save that uh whoops I’m sorry that should be J so here yeah let’s change that change that to J that and that and this all right so now actually let me comment out the for Loop so that doesn’t run and we should get the same result so three Fizz six five Buzz six Fizz get to 15 we get Fizz Buzz we get to 30. we get Fizz Buzz okay so this is how we would do it with a while loop but basically the same thing it’s just a structured in a different way all right so if if you got it great if you got it and it’s it’s a slight different slightly different from mine that’s fine if you didn’t get it that’s fine as well um you know you’ll you’ll learn more as we move along all right so in this video we’re going to look at a four of loop which is a newer way to basically Loop through iterable objects like arrays or any even strings and maps and sets which we haven’t talked about yet not object literals there’s actually another loop called a four in that we’re going to look at in the next video to show you how to Loop through objects but this is a cleaner way to Loop through an array than a standard for Loop or a while loop so let me just create an array here we’ll just do items and we’ll put some random items in here let’s say Book Table chair and kite and then I want to Loop over these now if you remember with a for Loop what we would do is we would initialize a variable here set it to zero and then we would do as long as I is less than whatever that array length so items dot length and then we would increment that I variable and then if we want to access each specific item we would have to do items and pass in the the variable as the index all right now A Cleaner way to do this is with four of so instead of doing all this in here we can simply do I’m using cons but you can use let if you want but we can simply say const and then give a variable name for each individual item which I’ll just call Item and then say of items all right and then in here I don’t need to do this because we can just simply access the item variable if I save that and run it we get the same result and this is much cleaner and just much more modern looking and if we wanted to have an array with objects in it like let’s say users and we’ll set that to let’s say an array of objects and we’ll just give these a name so we’ll say name Brad and a couple more here I’ll say Kate and say Steve all right and then let’s comment this out and we’ll say four and we’ll call we’ll say for const user of users and then I’ll console log user okay so now we have all of our objects if I want to access a specific property then I would do user Dot and then whatever that property in this case name now my first choice for looping through arrays is to use the for each method which is a high order array method that you can use on that you can use directly on arrays but I think this is a better way to do it than using a standard for Loop or a while loop or a do while loop or anything like that so we can also use this to Loop over strings okay let me just put a comment up here and I’ll say Loop through arrays all right now for Strings let’s say const and we’ll just say Str and we’ll set that to let’s say hello world and then if I want to Loop over that I can simply do four and then give a variable let’s just say letter because that’s what we’re going to get is a letter and then of our string and then if we console log here letter and save then you’ll see it’s going to Loop through and it’s going to Output each letter of that string another thing you can do is Loop over Maps which we haven’t talked about yet I’ll get into this later on but just to give you a quick example we can create a map a variable called map and set it to a new map not a nap although I could use one of those but we’ll set it to a new map and then we can add key value pairs so I could do map.set and we could set let’s say name to John and then I could Set Let’s do an age so we’ll say age 30 and if I wanted to Loop through these I could do a four of so I would do cons now we can get the key and the value by putting brackets in here and just saying key value of the map and now if I console log here I’ll go ahead and log both the key and the value and now you’ll see down here both the key value pairs name John and age 30. so you can use it to to Loop over Maps as well pretty much any iterable object now there is another type of loop called for in that allows you to Loop through object with object literal values which we’ll talk about in the next video all right now there may be times where you want to actually Loop through an object’s values and we can do that with the four in Loop so let’s go ahead and create an object here I’m just going to call this color object and set that to some curly braces and then we’re going to do color one set that to a string of red and we’ll do that for a few colors let’s say color 2 is going to be blue say orange would be color three color four we’ll do green all right and we want to Loop through and get these colors so a four in Loop is very similar to a four of loop so we would just say four and then inside here we’re going to say const and we can get the key so if I do key in color object and then we console log that key we get color one through color four so we get the keys now if we want to get the value all we have to do actually we’ll just log it here is take the color object variable and then pass in here the key if I do that then you can see we get the values red blue orange and green now let’s say we want to use this with an array because we can we can use four in loops with arrays so we’ll say const and say color array and we’ll set that to an array with red green blue and let’s say yellow all right so we have this array of colors and I’m going to do this so we’ll say four and then we’ll do cons let’s say color uh not of we’re going to do an in so in the color array and then let’s console log color if I save that we’re actually going to get 0 1 2 3 instead of this so what’s happening here is it’s giving us the keys okay it’s giving us the keys which are in this case these are going to be numeric Keys 0 1 2 3. so we can still get the values of an array here but what we have to do is let’s change color let’s change that to key and then we can say color array and then just pass in the key like that if I save that and run it now you can see we’re getting the values of the array so you can also there’s so many different ways to iterate through arrays but this is most commonly going to be used if you want to get the the either the keys and or the values of an object literal so now in the next video we’re going to start to look at high order array methods which are extremely helpful and you’re going to be using them all the time within JavaScript and we’re going to start with four each all right guys so now we’re going to get into high order array methods in this particular video we’re going to look at four each but there’s a lot of these that can do different things now they all work in a similar way in that they take in a function as an argument which this is called a callback function and in that callback function we can pass in a variable for each element in that array or each item in that array now what a 4-H does is it just simply Loops through it doesn’t return anything it just Loops through as if we were using a 4 or a four of loop to just go through the array and do something specific all right so let’s go ahead and jump in here and we just want to create an array of some sort I’m going to call this socials and I’m just going to have a bunch of strings in here so Twitter let’s say LinkedIn do Facebook and let’s do Instagram all right so we just have an array of strings and this could be an array of anything and before I show you the four each I just want to console log here socials and then the Prototype chain which is double underscore Proto double underscore and I think I showed you this back when we looked at some of the simple methods like push and pop so you can see that those are here as well so any any methods or properties like length on the array are going to get shown here and you can see we have four each right here we have map map filter find reduce these are all high order array methods and they work in a similar way so basically let’s go ahead and comment that out for now basically what happens is we call the method so in this case four each and then that method is going to take in a callback function okay an anonymous function it’s not going to be named and we can do that in a few different ways we could just use the standard function syntax and then what gets passed in here if we look at this documentation page here what gets passed in you can call it element like they did here but you can call it anything it just represents each item in the array okay so here we just have ABC for us we have these strings here so you can call it I mean a common thing I’ll do is call it the singular version of the array or I’ll call it item I don’t usually use element but again you can call it whatever you want and then you have access to that in here so we can do console log item okay so this this function right here that we pass in is going to get run for every element or every item that we have in the array so in this case it’s going to get run four times and what we’re doing is just logging it to the console so if I save that and we take a look we should see these in the console all right and if you want to kind of slow it down a little bit you could go to sources and go to script okay we looked at this debugger back when we looked at execution context and the call stack but what I’m going to do is put a break point right here on the four each and then I’m going to reload the page okay so it nothing is run yet but if I come down here to the step arrow and I I hit that and then it’s going to go into the function we’re going to run the four each I’m sorry run the console log and now we get Twitter okay if I go back again it’s going to run console log again because there’s another item in the array again Facebook again Instagram and then it’s going to end because there’s no more items in the array okay so that’s kind of a step-by-step of what’s Happening let me just remove I just want to remove that break point there all right and then we’ll go back into the console now like I said you could pass in a function this way or let’s actually comment that out or you could first of all get rid of the function keyword and then add on our Arrow so this is valid but since it’s just a one line expression we can actually take away the curly braces as well if I save that we get the same thing now in addition to the item that we pass into the Callback there are some other arguments that we can pass in so I just want to go back here and we’ll come down so these are the parameters right we have our callback function and then in that callback function we have the item our element but in addition to that we can also pass in the index of the current element being processed in the array and of course it’s going to start at zero the array so we can also get the entire array there might be times where you need that within your your function so let’s go ahead and pass in the index and then we’ll pass in the entire array so those are the additional parameters so here what I’ll do is I’ll console.log let’s just put in some backticks here and of course we need to wrap the item in that and then let’s also do before it will do the index and then slash so we’ll say index Dash and then the ice Dash not a slash and then if we look here you can see the index starts at zero and then increments and then let’s pass in after the back tick here we’ll just pass in the entire array so you can see that you have access to to that as well now you can also pass in a named function rather than an anonymous callback so for example let’s create a function called log socials and that’s going to take in an item or we can just say like social and then we just want to console log social so we want this function to run for every item that’s in the array so what we can do is just take socials call for each and then simply pass in log socials all right if I save that let’s just comment this one out if I save that you’ll see it’s going to log all the social items here now when you pass this in you don’t want to execute it right you don’t want to pass in the the parentheses you want to just pass in the definition of the function just like you do here you know you don’t you don’t execute this function here it’s a callback now the last thing I want to show you is with objects because usually when you pass when you use for each it’s usually on an array of objects so let’s say social objects and we’ll set that to an array and each object will have let’s say a name say Twitter and the URL say https twitter.com and then what we’ll do is copy this down a couple times and let’s change this one to Facebook and what else LinkedIn and Instagram all right and and you can have I think I think I mentioned this before but you can have trailing commas in your arrays in fact if I save prettier automatically keeps the trailing comma so I want to comment this one out and then I want to log each item here so let’s say social objects and then Dot for each and then we’re going to pass in our function which is we’ll say item and then let’s just do uh console log of that item so in this case it’s going to give us objects right each each item in the array is a social object so if we want to access a specific property specific property we would do item Dot and then whatever let’s say URL so now it will give us all the URLs and then of course we could do whatever we want to that array and we’ll be using for each a lot more but in the next video I want to show you an example of another high order array method called filter okay so now we’re going to look at filter which is another high order array method for each is usually the first one you learn now the difference between four each and a lot of these other ones we’re going to look at like filter and map is that filter along with a bunch of other high order array methods actually return something in most cases they’re going to return an array now our modified array so if we look at this example at on mdn you can see we have some words in an array and then we have this variable result set to words.filter so this is something that you’re going to do because this returns something right for each does not so you’re typically not going to see a variable equal to something dot four each you just run that for each and then you do whatever you want in the function in this case what’s going to happen is we pass in a function okay this is a function I know it looks a little weird because there’s no parentheses around this but remember with arrow functions you don’t need to have parentheses if it’s just one parameter so what we’re saying here is We’re looping through we get can get each word and then we’re testing that word and seeing if the length is greater than six Okay now what’s this is going to return this line right here is an array with only the words that pass this test or only the elements in the array that pass this test so the result will be these words right here because they’re greater than six if they’re not then they’re not going to be put into that array so we’re filtering out the words that don’t pass this test okay so let’s uh let’s try this on our own so that it’s more clear so we’ll say cons numbers and I’m going to set this to let’s just do one through ten nine and ten and then let’s say I want to filter out and I only filter out all the odd numbers so I just want the even numbers now I’m going to create a variable because it’s going to return something so we’ll say let’s say even even numbers and we’re going to set it to the numbers array dot filter and again this will take in a function I’ll just do a long form for now so we can say function and pass in here whatever whatever variable we want to use for each individual element or number so I’ll just say number in this case you could use item or whatever now what we want to do here is return from this function some kind of condition now if I want to get the even numbers I can do this I can say if the number and then modulus operator and then 2 if that is equal to zero so if it’s divisible by 2 then obviously it’s even right if we have zero remainder then it’s divisible by 2. so this is going to Loop through run this test on each of these and whichever ones pass will be put into a new array in this variable so let’s go ahead and console.l log here even numbers and if we take a look in our console you can see we get 2 4 6 8 10. if I add on to this 11 and 12 then 12 should be added now this is kind of the long way of doing this the shorter way let’s say short version and then I’m just going to comment this out so the short version would be to do even numbers equals numbers Dot filter and then we could pass in here just number use an arrow and then we just want uh the condition which is if the number modulus 2 equals zero save that we get the same thing okay now if you wanted to do this with a 4 each let’s say same with four each it’d be a little more complicated right if you want to pause the video and try it you can but let’s um let’s take numbers right and then do a four each so we can’t we’re not going to set like anything equal to this this is just to Loop through so what we can do is initialize a variable here we’ll just say let even numbers and then we can Loop through here and say number and then we’re going to have to do an if statement here if we want to test right so we’ll say if the number modulus 2 equals zero then we’re going to take the even numbers uh even numbers variable which is is uh you know we want to set this to an empty array so you can see how much more complicated this is then we would have to push onto it the number if it was even right so now if I save and we’ll get the same result so this right here this one line is the same giving us the same as this right here all right and we could use const here since we’re just pushing on we’re not reassigning anything yeah so that’s filter now I want to do this with uh an array that’s slightly more complicated with some other conditions other than just testing for an even number so let’s comment this out and then what I’m going to do is grab the array so we’re just going to use an array of of company objects all right so each company has a name a category a start date and an end date so if you want you can look at this as a challenge and pause the video and try to try to do this they’re all just using filter but the first one the first thing I want to do is get only retail companies okay so I just want companies where the category is equal to retail so if you want to pause the video and try that go ahead and do it now but what we’ll do is create a variable let’s say retail companies and you you can you can imagine how useful this is you know if you think about a UI where you’re filtering things this comes in handy so let’s say companies okay we want the company’s array and we want to filter and then we’re going to use a short form Arrow function so let’s say company so for each company we want to test if the company Dot category because it’s an object so we want to access the category and say if that is equal to the string of retail all right so now if we console log retail companies we should get three three values and let’s take a look here so we have company two company four and Company nine all right so if we look here company two is retail company four is retail and Company 9 is retail so let’s do another one let’s say let’s say we want to get get the companies that started in or after 1980 and ended in or before 2005. okay so companies get companies that started in or after 1980 and ended in or before 2005. okay if you again if you want to try it you can do that I’m going to create a variable we’ll just call it early companies put a space there early companies and we’re going to set that to again companies Dot filter and we should probably comment this console log out all right so companies filter and in here we’re going to have a function pass in our variable of company that’s our item and then we want to test to see if the company dot start is greater than or equal to 1980 right and then is that a string no it’s not a string and okay so we want to use the the double Ampersand the company dot end is less than or equal to 2005. so that should do it so let’s console log early companies and save and we get three so if we look at these it’s company 1 7 and 9. so company one was 1981 to 2004 company seven uh was 86 to 96 and Company 9 was 89 to uh what was it I’m sorry 80 81 to 89. so those were all in the in the realm of 1980 to 2005. these are the ones like this was the 2008 um this one was 2007 2010 so it filtered out by this this condition right here this truth test and then the last one we’re going to do is to get companies that lasted let’s say lasted 10 years or more so to do that we’ll say const and I’ll just say long companies and set that to companies dot filter and we want our function here and it’s gonna I’m gonna say company and then the truth test we want is the company dot end minus the company dot start is greater than or equal to 10 that means that it lasted 10 years or more so let’s console log long companies and let’s let’s comment this log out and you can see we get nine one two three four five six seven eight nine uh oh this should be minus okay so we get five one two four six seven so if we look at like three that only lasted what 99 to 2007 so that’s not quite 10 years what else uh four or five didn’t last 10 years 2009 to 2014. so yeah so hopefully this gives you an idea of how Filter Works this is very useful and we’ll you’ll use it all the time in your interfaces you know when you have a a search box and you’re filtering down by whatever it is location or anything like that this is going to come in handy all right now in the next video we’re going to look at map which allows us to basically return an array just like filter but we can return we can modify anything we want and return an array of anything we want all right so in the last video we looked at filter which is a high order array method and we saw how it returns a new array and it that’s based on a function that returns true or false anything that was true would be put into that array with map this works a little differently where the function what that we pass in can return anything that we want to be put into this new array in this example let’s make it a little bigger in this example we have some numbers in this array one variable and then we’re setting this new variable of map 1 to that array dot map and we’re saying for each value they’re using X here but you could use anything we’re taking that value and multiplying it by two so they’re doubling it and then that will get put into this new array so essentially what we’re doing is taking this array and then we run it through map and then we have an array of these numbers doubled okay so what I’m going to do is give you a similar example and then we’ll we’ll use the same companies array that we used in the last video and do some stuff with that so let’s just create a numbers variable and we’ll set this to we’ll just do one through five and then let’s create a variable here we’ll call it doubled numbers make it a little bit more specific than the the docs and then we’ll take the original numbers array and do a DOT map that’s going to take in a function and we’ll say for each number then we want to return and you could either do the short syntax or you could have curly braces and you could use the return keyword but this is shorter and cleaner so let’s say number times two all right then we’ll go ahead and console log here the doubled numbers and if we go and we look we should see 2 4 6 8 10. now the what I’m returning from eat from this function for each of these elements is each one times two but it could be anything like for instance if I wanted to return a string that had number space and then concatenate the number if I do that you’ll see now it’s going to run through the array it’s going to Loop through and take each one and just prefix it with the string of number so now I have an array of that so you can do absolutely anything here if I wanted to multiply it by 3 and triple it we could do that as well all right now if you wanted to do this with a four each I think it’s useful to know how to do that so let’s say same same with four each so just like we did with Filter when we used a 4-H we have to first just create a variable let’s say double we’ll say double numbers two set it to an empty array and then we could take the original numbers array and loop through so in here we want to say for each number then we’re going to take the double numbers to variable which is an empty array and push onto it the number times two and then if we console log double numbers two uh oh I said doubled oh yeah let’s do double numbers too and now you see it’s the same exact thing so this this line is a shorthand for doing this but now what I want to do is use that companies array that we used in the last video to do a couple things and again if you want to pause the video and do some of this on your own you can do that as well I would encourage that so let’s say we want to get or let’s say create an array of company names okay so just us an array with just the company name no objects or anything just strings so let’s say const company names and we’ll set that to companies which is our array of objects and then we want to map through and have a function where we say for each company we just want to return the company dot name okay so that’ll run for each element each object in the array and get put into a new array so then let’s console log that new array and there we go so now we have just a simple array that has all of those company names inside an array with just numbered indexes now let’s say we want to create a new object that has just the the company and the category so let’s say create an array with just company and category so if you want to pause and try it now you can do that so I’m going to call this company info and let’s set that to companies dot map and say for each company Let’s uh I’m just gonna put a code block here because I’m going to return an object I could just use parentheses and put my object in that but instead I’m just going to say return an object and then name is going to be the company dot name and then category is going to be the company Dot category okay and then we’ll go ahead and console.l log company info and let me just cut let me comment that one out and you can see now we have an array with all of the companies but only the category and the name okay because that’s all we chose and there’ll be plenty of times where you’ll have uh you’ll have a bunch of data but you want to strip some of it out like maybe you don’t need the start and end dates so you can simply manipulate that array or I mean this this will create a shallow copy and then you can manipulate that array to have whatever you want in it now let’s create an array of the length of each company in years so let’s try that we’ll say create an array of the length of each company in years so it’ll just be an array of numbers so for that let’s say const company years and let’s set that to companies.map and we’ll say for each company for each company I just want to take the company dot end date and just subtract the company Dot start date actually you know what let’s make this a little more complicated let’s say create an array of objects with the name and the length of company in years so instead of doing what I just did I think this is a little better this will yeah so we’ll do that we’ll say return an object with the name so we have access to company with all the properties so name and then let’s create a new property called length and that’s where we’ll take the company Dot what is it company dot end subtract the company dot start okay so now let’s do a console log of company years and now we should have objects with the name and the length of year so 23 16 all right and we could even just concatenate in here space years so 23 years 16 years and just to validate that if we look at company one it was from 81 to 2004 so 2001 would be 20 and then we have three more two three four yep so that is correct all right now another thing that you can do is chain let’s say chain map method so you can have more than one map method let’s say we want to square root we want to take a number we want to get the square root and then double it so I’ll call this Square we’ll say square and double and what we’ll do is we’ll set that to numbers dot map and the first thing I’m going to do is is square it so we’ll say for each number we want to use the math object and then we’ll use sqrt so square root that number right so right now if I console log this let’s say Square and double so if I do this right now it’s just going to give me the square root right now I want to double it so what I could do is add an additional map so this map which ends right here just to make this a little cleaner looking I’m going to put this dot map on the next line this is what you’ll commonly see get rid of that semicolon and continue on with a new map which will take in the square root and I could call this number if I want but let’s call it square root because whatever you return from the first map so this is going to be put into this parameter right here so now I’m going to take that square root and I’m going to double it so times two so now if we save that we now have the the square the number square root and then we take that square root and then we double it we multiply it by two all right so hopefully that makes sense and you can have as many of these as you want now just to kind of make it clear on what’s going on here I’m going to do I’m going to give you the long version as well so let’s say const square and double two set that to numbers dot map and what’s going on with passing in a function so I’m just going to put a long version in here and pass in here number right and then what we’re doing from this first function is returning math dot square root and passing in the number okay for each element in the array and then when we we can add the other map so here we’ll say you know I’m going to put this on a new line as well and then we’ll add our new DOT map our next dot map and in here we’re going to put a function and this is going to be the result of the last map which will be the square root so then here we’re going to return the square root multiplied by 2. okay so now if I console log square and double 2 and save we’re going to get the same result so this right here is just a shorter version of this just remember whatever you’ve returned from this map we’ll go in here if I were to have another dot map whatever I return from here we’ll go into there in fact I could say map again and pass in a function and here let’s just say square root doubled and then we’ll return let’s say I don’t know we’ll just let’s multiply that yeah we’ll just multiply that by three and Save oops this should be square root doubled okay I can’t access like this variable this right here the square root I can’t access it here what happens is whatever is returned is going to be put into here square root doubled and there we go all right so you can also chain with other methods it doesn’t just have to be map so let’s say that we want to first of all filter out and just get the even numbers then we want to double those even numbers so let’s say chaining multiple or chaining different methods so let’s say we still have we still have this numbers right here right this numbers array so that’s what I want to use so I’m going to say const and then even double so first I want to take numbers and I’m going to filter you know what let’s make this 10. so 5 6 7 8 9 10. okay so I’m going to say numbers filter and then for each number I want to remember we’re using filters so we want to say number and then we’re going to use modulus 2 equals zero so that should just filter out and give us the even number so let’s console log even double so right now it’s just going to give us 2 4 6 8 10 but now I want to add on a DOT map so I’m going to put this on a new line get rid of that semicolon and then do a DOT map so I’m chaining these these methods here I’m going to get let’s say number and it’s going to be the result of this this which is going to be an array of you know an array with the even numbers so now I’m going to take those numbers each one and multiply it by two save that now they’ve been doubled and you can do this as much as you want you can have 10 chained methods and they can all be different all right as long as it makes sense so hopefully this is giving you an idea of how these these methods work and there’s there’s a lot more we’re not going to look at all of them right now one more I do want to look at in the next video is reduce all right so now we’re going to look at a method called reduce which is used to reduce your array down to a single value and this can be a little tricky to grasp at least for me it was a little trickier than some of the others but a good use case for this and a good example is a shopping cart where you have you might have an array of products with different prices and you want to reduce that down to a total of the prices for your shopping cart that’s somewhere where you’ll see reduce a lot so if we look at this example here a very simple example there’s three arguments that I want you to understand here so basically reduce takes in a function just like the rest of them and there’s two arguments here previous value and current value so previous value is basically what’s returned from the last iteration or the last function that ran last callback this is also called the accumulator so if you hear accumulator in previous value those are both usually mean the same thing and then the current value is whatever the current element we’re on okay and then you can also pass in as an additional argument here the initial value which is whatever you want the initial previous value to be because obviously your first Loop through you’re not going to have a previous value so you can set that here and in most cases it’s going to be set to zero all right so let’s let’s look at a very similar example and then I’ll show you a like a shopping cart example so let’s say we have an array of just numbers and we’ll just use one to ten okay and then I want to get the sum of all of these numbers so I’m going to create a variable called sum and let’s use reduce on the numbers array and like I said it’s going to take in a function just like the rest of these array methods and actually Let’s do let’s do a long version of the function first just to kind of give you a better idea of what’s going on so the function will take in the either the previous value or accumulator I usually use accumulator and then the current value all right and then to set the initial value which isn’t actually required but if you want to set that you can add it after the the curly braces here and let’s say zero set to set that to zero oops and then in here what I want to do is return the accumulator so every time this runs I’m going to take the accumulator or the previous value and add it to the current value and that should in the end give us a sum of all the numbers so let’s come down here and console log sum and let’s go to our console and you see we get 55. so basically it started at zero because that’s what we set here then it went through ran a function for each element took the previous value so for instance when it was on 2 it took one and then added the current value so it added two then it the function ran again for the next element and it took 3 and added the previous item or value which is two and I kept doing that until we’re done with the array all right and then of course you can shorten it up and we could say const sum equals numbers Dot numbers dot reduce and pass in here an arrow function and you could shorten it up to like ACC is is commonly used and then c u r r c u r for current value and then we could just say we want the accumulator plus the current value and then for the initial value we’ll pass in zero and let’s just change the variable name to sum2 and we’ll console log sum2 and we should get the same thing now if I take this initial value and I set that to let’s say 10 and then I save that and run it you’ll see we get 65 and the reason for that is because now we’re starting at 10 okay before we do anything we’re starting at 10 and that’s what this accumulator is going to be on the first run through so now we’re going to get 10 more than than we normally would okay so I just want you to understand what these these arguments are now to make this even a little more clear I’m going to do this with a for Loop so we’ll say using a for Loop because there’s so many different ways to do the same thing and if you were to use a for Loop instead of reduce that’s not wrong at all it’s just a little longer so I’ll even put this into a function we’ll use a function expression so I’ll say const sum 3 and then set that to to a function so I’m going to initialize the accumulator so we’ll initialize that at zero and then we’ll do a for Loop and I’m actually going to use a 4 of since we’re going through an array so we can say const and we can call this number or we can even call it Cur like like we did above of numbers because that’s the name of the array and then all we have to do is set the accumulator equal to the accumulator Plus the current value okay now an easier way to do this or a shorter way to do this is to use the plus equals syntax we can just do that all right and then outside of the for Loop we’ll go ahead and return whatever the accumulator is and now if I come down here and I run a console log of sum 3 uh whoops this is a function I need to make sure we add the parentheses and now you can see we get 55. okay and there’s just so many ways to do this you could even do this same kind of thing within a four each so hopefully that kind of puts us into perspective a little bit now a more realistic example would to be to have a shopping cart so let’s do that I’ll say we have this cart which is an array of products we’ll say let’s give it an ID we’ll say ID and then name product one and then a price price will say 130 and then let’s say we have three products so this will be two three and product two product three and then the pricing let’s do 150 and then 175. all right so if you want to pause the video and try to get use reduced to get the total of these prices then you can do that now so we’re going to go ahead and create a variable of total and set that to cart dot reduce and we could we could either pass in a short Arrow function or we could do the long way which I’m going to do here and this is going to take in the accumulator and it’s going to take in the current value now instead of using like Cur or current value I’m just going to put in product because that’s that’s what it is right where We’re looping through these products and each value is going to be a product so that makes more sense to me and then we’re going to just return from here the accumulator plus now if I just do product right because that’s what we did up here we just plus the current value it’s not going to work here because these are objects these the the actual elements that We’re looping through and running the function on were the numbers we were adding in this case it’s a property of price so you want to make sure that here you add dot price all right and then for the initial value we’ll set that to zero and now if I go ahead and console log the total we get 455. okay if I add let’s say let’s make this 200 and save now it’s 480. so this is something that’s extremely common with things like shopping carts all right so that’s reduced now there there are other high order array methods and I want to get to those but I know that some of you are dying to just start to work with the Dom and actually put things in the browser and work with events and stuff so we’ll get to some of the other ones later when we can actually Implement Dom elements but before we do that I just want to give you a couple challenges in the next video okay so now we’re going to do a couple challenges with array methods and these aren’t too difficult if you watch the past three or four videos then you should be able to to get this at least one of them so the first challenge is to you can see we have an array of people has a first name last name email phone and age so the instruction is to take the people array and create an array called young people that stores objects with only the a name and email property of all the people that are under 25 or 25 and under and the name property should have their first and last name so basically we need to convert this into an array that has just a single name property with both their first and last name and only the people that are on over what is it no 25 and under okay and you should just have a name and email property and again the name should have both the first and last name so that’s what we want to get from this array is the the expected result so if we console log young people then we’re only going to get these three because they’re all 25 or under you can see we have a name property all right so if you want to try that out go ahead and pause the video and you can do it on your own all right so I’m going to copy this array so we can use this and then let’s come over here and let’s paste that in all right so we need to first of all I mean you can do this in different in a different order and you can use different methods I’m going to go ahead and filter out the the young people or I should say filter out the older people so that I only have young people so let’s say const young people and we’re going to set that to the people array we want to filter through that right so in filter let’s pass in a function and we’ll say for each person we want to return only if the person is less than or equal to 25 all right so we can go ahead and console log that let’s say Young people and save that and I get nothing let’s see what did I do wrong here people.filter person we’re going to return if they’re less than oh I forgot the age so I’m saying just person which is the entire object of course we want the age and if we check it out we get Jane Sarah and Jose that looks correct so Bob is 45 Jane is 25 so she’s included John is 30. he’s not included so it looks like we haven’t filtered down now we still have all the properties we want to narrow this down to only have a single name property with both first and last name and email so so what I’m going to do is is chain on a map method here so let’s say map and in here we’re going to pass in the person and remember what I’m passing in here is going to be the return from this so it’ll be the filtered persons that I’m accessing here and then I just want to basically rearrange it to just have the name and email so I could do a couple things I could do this and then and then use return return the object or since I’m just returning a straight object I could put parentheses here and use my curly braces and do it this way and say name and we’re going to set that to the person Dot first name and then I’ll just concatenate you can use template strings if you want but I’m just going to concatenate a space and then add on the person dot last name and we also want the email so we’ll set email to person Dot email so we’ll save that again and let’s see what we get so now we have an array and it only has the name and email and the name has the first and last name all right so that’s the first challenge so the Second Challenge is to add all the positive numbers in the array so here we have an array called numbers it has both positive and negative we want to be able to console log our our variable that has you know our solution and we should get 79 so 50 plus 20 plus 2 plus 7. all right so you don’t want to add the negative numbers so again if you want to pause the video and go for it then you can do that now so I’m just going to add comment here say this is challenge one and then let’s go down here and here is a challenge two so we have our numbers let’s actually just copy let’s grab this okay we’ll paste that in there all right so we want to be able to add we want to add all these numbers so let’s create a variable here called positive sum and again we’re going to be filtering out some stuff here so let’s say numbers and I’m going to go on to the next line and filter and what we want to filter let’s pass in our function and say for each number we want to let’s say we’re going to say if the number is if the number is greater than zero so that’s the truth test right if it’s if the number is greater than zero then it’s going to get put into the array now if we console log this positive sum I get 250 27 so right now we just have an array of the positive numbers now we need to get the sum of those prettier fix this for me I didn’t want it fixed but it’s all right now I’m going to come down here and I’m going to use reduce to add them together so remember reduce is going to take in the accumulator or the initial value and then the current value and then oops and then we want to run our function which is just going to take the accumulator and add on the current value and we’ll pass in zero as the initial value so now I’ll save that and there we go we get the single value of 79. all right for the next one we’re going to create so we have this this words array coder programmer developer all lowercase and now we want to create a new array called capitalized words with the words from this array but have the first letter capitalize so this is the result that we should get okay so shouldn’t be too difficult let’s go ahead and say challenge three and we want the words so let’s create that array first so the words are coder and programmer and these are all lower case and then developer okay so now I’m going to create a new variable just call it c word so capitalize words we want to set that to the original words array and we want to map through because that’s what we want to do is we want to map through and manipulate this and and create a new array with the capitalized words so this takes in a function I’ll use curly braces here and pass in word because for each word we want to then return and this is similar to a challenge we had I think in the first section where I had you uppercase the first letter of of a single word now we’re doing it in Array but what we did then was we used two uppercase now if I were to add to uppercase to the whole word then and then let’s return this I’m sorry console log this c words and save then all the letters are uppercase which we don’t want we just want the first one uppercase so there’s a few ways we can do this we could use the Char um uh method here or we could just use the index because even though it’s a string we can still use the index to get a specific character and we want to get the first character so if I save that now you’ll see that we’re just getting the first character in its uppercase now we just want to add on concatenate on the rest of the word and we can do that with slice remember if we take the word and we we use dot slice we can return a specific part of the word and this goes by index so I’m just going to put a 1 in here not a 2 a 1 and that will get basically from the one index which is the second starts at zero and it will get that over okay from there on or you could pass in a second argument to where you want to go which would be the entire length of the word so I could say word dot length as the second argument so if we save that now you’ll see we get Coda Pro grammar and developer and we have the first word uppercased all right so that’s it in the next section we’re finally going to get into working with the document object model and actually doing stuff within the body of the web page I know we’ve been doing a ton of console stuff but I think that this what we’ve been doing is really really important for you to understand before we move on to button events and doing you know moving things around in the browser or whatever I think the the fundamentals including iteration and control structures and data types that’s all really really important for you to understand all right so let’s move on to the next section all right guys so in this section we’re going to start to look at the Dom or the document object model and I’m sure that a lot of you have been waiting for this section many of you may have even started the course here I just want to mention that before you jump into the Dom you should have a good understanding of the fundamentals so things we’ve talked about like data types functions flow control loops even array methods I would suggest that you have a basic understanding of that stuff first now I’ll talk more about what the Dom is in the next video but it’s essentially an interface that allows us to interact with page elements dynamically from a language like JavaScript and in this section we’re going to look at things like the properties and methods available on the document object including methods to select elements we’re going to look at how to Traverse the Dom and navigate it so that we can change and add and remove elements from the page dynamically also change Styles and attributes so there’s a lot of different methods and functions that you’re going to learn so I would suggest following along and keeping the sandbox handy so that you can reference it at any time now after we learn how to manipulate the Dom in the next section we’re going to start to get into events so that we can have even more Dynamic functionality alright so let’s get started okay so now we’re going to jump into the document object model and we’re going to spend half the half this video in some slides and trying to give you like a visualization of the Dom and then I want to jump into some code and we’ll look at the the window object which has a child object called the document object now as far as what the Dom is it is essentially a programming interface for web or HTML elements we already know we can display the content of web pages using HTML tags with text and we can style it using CSS you guys should definitely know that at this point and the Dom is is the structure of the web page that we can interact with we can interface with using JavaScript and you can use other languages as well but for the most part you’re going to be using JavaScript and it generally includes all the HTML tags so you have access to those attributes the text between Queen tags those are called text nodes and when you visualize the Dom you usually visualize it as like a tree structure similar to what you see here on the right and what you see on the right is a tree structure of this web page here which is very simple so we just have our HTML tags head and body tags we have a div an H1 a paragraph so over here I’m going to talk about window and document in a few minutes so let’s just look at HTML now this HTML element here represents this HTML tag in our page structure okay and we will be able to access that through the document object and in that HTML tag we have two children or child tags or elements we have the head and then we have the body now in the head we have another title element and in that title element is a text node so a lot of people when they start out a lot of them think that the Dom just it just refers to the tags right the elements well it also refers to text nodes it also refers to attributes so you can see in the head tag we have a meta tag and that has a character set a Char set attribute on it which we can easily access and and do things to add to remove or whatever on the bot in the body we have a div and that div has an attribute on it of ID and then in that in the div with the ID of main we have an H1 that H1 has both an attribute has a class on it and it has a text node in it all right and then the paragraph has a text node in it as well so when you look at HTML structure you should be able to kind of picture this type of thing in your head when you’re dealing with the Dom all right now I want to just jump into vs code now and just kind of look at some of this real quick so in the console I’ve already showed you this if we type in window it’s going to show us that the window object which is the the topmost or the global object in the browser that has a ton of stuff on it including the document object and we can of course access that from within our code as well all right that’s going to give us the same thing and in that window object is the document object so right here and that has a bunch of properties and a bunch of helpful methods that we can use as well so we could do a console log window dot document and I’m just going to comment this out so now you’ll see document and since we did a console log to the document it’s going to just show us the element if we want to see like the properties and methods and stuff then we can do a console.dir and now if we take a look you can see all this stuff here and I’m going to go over a lot of the different properties in the next video now I’m just going to show you a couple things and we’re going to touch on all this stuff much more later on but let’s just do a console log here and we’ll say document now we don’t have to prefix it with window you can because it is on the window object but since window is the top level object you don’t need to prefix this stuff with window in fact you’ll very rarely see window dot document so as you can see over here there’s a body property here and that that references the body element so if I say document.body and save that it’s going to show me the actual element okay so you see the body element you can see the H1 and the script tag some of this stuff is injected by live server but we can see everything in the body right and then there’s properties we can use on this like let’s say we just want the HTML in the body we could use inner HTML save that and now you can see we have an H1 and our script tag and if we look at the HTML page that’s exactly what’s there if we wanted to get let’s say just the text we could use in our text save that and we just get Dom intro all right if I were to add something else in here and just put a paragraph with hello just the text is going to show here if I go back to using in our HTML it’s going to show the paragraph as well all right now typically you don’t access elements with direct properties like this because there’s methods like like get element by D and query selector that I’m going to show you very soon that helps you target what you want much more easily I but I do want to just show you some of the I guess the the more difficult ways of doing it first so let’s say we want to get all the links on a page all right and I shouldn’t say more difficult but but using properties rather than using the the methods so let’s create a link here and I’ll just have it go to my site travestymedia.com and say Traverse media for the text all right and then let’s say I wanted to access all the links I could say console log and then document and if we look over here in the properties there should be a link so you can see there’s images to access all the images and then you also have links now since there’s more than one link on the page what this gives us is something called an HTML collection which is very similar to an array you can access each link by index just like you could in Array so let’s say document.links and we’ll console log that in fact let’s comment out this stuff here so as you can see I get an HTML collection and there’s a single Link in there it has an index of zero so if I want to access that I can simply put brackets just like I would with an array and then put the zero and there it shows me the link okay and if there were if there was another link I could use one as the index there’s not so it’s going to just be undefined now this for instance this document.body this is not read only I can change that from here I could say document.body equals or actually let’s say document.body dot in our HTML equals and then we’ll just put an H1 in here and we’ll say hello world all right so if I go ahead and save that it’s going to replace everything that’s in the body with just this H1 even if we had you know a ton of content on the page if I set the body in our HTML to this H1 it just replaces it now I’m going to show you all kinds of methods to insert things where you want but this is just saying well I just want the entire page to show this H1 which is something you’re not going to do now there’s also methods I’m just going to comment that out there’s also methods on the document on the document object so one of them which you don’t see very much is right so right will actually take whatever you put in here and write it to the browser so if I say hello from JS and I save it gets added now the reason you don’t see this used very much is because there’s no targeting it just basically puts it at the whatever at the end of the file and it’s not it’s just not very helpful but this is a method right it’s a function now there there’s also methods to select certain elements in the Dom and those are very very helpful and we’ll be going over those you know in depth but just to give you an idea let’s go to the HTML and let’s wrap I’m going to wrap all this the H1 and the link with an ID of main okay so I have this div with the ID of Main and I’m going to move the H1 and the link inside of that and let’s say I want to select that Main that main ID so I’m going to just console.log document Dot and then the method I want to use is get element by ID okay so we’ll say get element by D and in here is going to be the ID I want to grab which is main if I save that and you see it grabs that div with the ID of main now I can do what I want with that I could say document Dot get element by D main I could also put this into a variable so for instance const main equals that and then I could say main dot inner HTML equals and then we’ll put an H1 and we’ll say hello from Main okay save that and it’s going to replace everything within that that div with the ID of main with this H1 okay just like I replaced it up here I replace the body this is just replacing this specific element okay and there’s there’s even better selectors like query selector where you can select anything you want so for example if I wanted to select just the H1 I could say document dot query and don’t worry we’re going to go over this much much more in depth so I could say query selector uh and let’s say I want the ID of main so I would use the number sign here because you can choose classes or or just straight elements whatever and then I want the H1 so it’s basically like if you were styling this with CSS you can put any selector in here and let’s say I want to take the inner we’ll do the inner text of that H1 and let’s set it to hello save that and now just the H1 gets changed so this is just a very very high level example of some of the things that we can do all right so in the next video I want to look more at some of the properties on this document object all right so in the last video we looked at the document object model and what that is we looked at the actual document object that we have access to within the window object and some of its properties and some of the methods we can use so I want to take a look at some more properties that’s on that object that you have accessible to you that you can you can access you can also use to overwrite and you know add things through JavaScript so a lot of these you’re not really going to use because instead of selecting them the elements with these properties you’re going to use methods like get element by D and query selector but I do want you to at least know that they exist all right so you’ll notice that we actually have some life in the browser finally so this is a UI for the shopping list application that we’re going to build in a little bit and it’s not functioning you’ll see I cannot add anything I can’t delete anything that’s because there’s no JavaScript at all it’s just HTML and CSS and you’ll have this in the sandbox you’ll also have it in you should have it in this the current video module that you’re watching all right and just to take a quick look at the HTML we’re just bringing in font awesome which is a library to use icons like this right here I believe is actually no that’s not how to font awesome the think just the delete buttons are here but yeah so we’re just bringing that in the bringing the CDN and then we’re linking in our style sheet so this is just custom CSS so very simple we’re not using like Tailwind or any CSS framework and then we have our header our container with our header just has this little image and and heading and then the form here with the input to add an item the button to add an item then we have a filter input as well so we’ll be able to filter these items down then we have the unordered list which is the item list and then we have the clear all button so that’s pretty much it and then we’re linking in a script JS which is completely empty That’s why nothing works okay and and a little later on we’ll create this whole application and get it functioning but I want to use it just as an example UI for the next few videos so that I can show you how to manipulate the Dom and you know access certain elements change things and so on so again I want to look at some of the properties on the document object so I’m going to just initialize a variable here called output so that I can console logs different things and let’s open up our console over here so the first property I’m going to show you is actually deprecated but I still think you should know it and that’s document.all so I want to set output to that so we can log it now you’ll see it actually has a strike through in vs code because it says it is deprecated but if we look over here what it gives us is an HTML all collection so this is similar to an array and you can see it has brackets and it’s basically an array or a collection of all of the different parts of the this page the Dom for this page so HTML tags a script tag head tag everything in here the form the inputs everything is going to be in this HTML all collection and we can even access axis Elements by index so if I do 10 that gives us the body if I do 11 that gives us the container so you can access items or elements like this but this is not like the way you want to do it this is not very convenient and this is the reason I wanted to to teach you like what arrays are and how to use them and stuff because if if you didn’t know what an array is you wouldn’t understand an index or what this is right so it’s important to learn the basics now you can also use like the length property just like you can on a regular array so you can see there’s 38 items in there but it is deprecated I wouldn’t suggest using it but I want you to know what it is just in case you run into it now we also have if you want to get everything that’s in the HTML element or tag you can use document element and that will just give us the HTML tag and then everything in it head body and so on then we can also access just the head or just the body so if we say document dot head and we save that that gives us the head we can do the body I showed you that in the last video as well now if you want to get the children in the head or the body so if you want to get the children in a collection you can it’s actually do that so you can just do dot children and now what we have here is a collection of everything that’s in the head the script tag meta tag link tag we can do the same with the body so if I do that that gives us everything that’s in directly in the body that’s why there’s only a single div here because if we look there’s a this div with the class of container everything else all the other HTML is inside of that so it’s only going to give you the the parent I should say the direct child of the body if I were to put an H1 in here and save that that H1 will get added to this collection because it’s at the top level right where container is so that is dot children which you can use on the header body now some other properties we can get are the the doctype so let’s say output equals document dot doctype if for some reason you need to get that we also have the domain domain I believe is deprecated as well but as you can see we can get the domain which for me is my Local Host we can get the URL the full URL as well so that’s going to be the domain plus any page that we’re on we can get the character set so character set which is utf-8 so just some things that you can get for your application if you need them the content type so we can say document dot content type which is going to be Text slash HTML now I showed you that we could get links as an HTML collection in the last video and I’ll go over that again in a minute but we can also do that with forms so I could say document dot forms and save that you see that gives me an HTML collection of the forms if I want to access a specific form I could use an index because again an HTML collection it works like an array as far as indexes go so you’ll see I get my my item form here now I can also get specific attributes on elements as well so let’s say I want to get the ID I can say dot ID and you’ll see I get item form okay I could get the method of the form so we can say method save that and it’s going to be get because we don’t have a method described here but a form is always going to it’s always it’s always going to be get as the method unless you set it specifically like if I set it to post so if I say method post and save then it’s going to be post and we’ll get into what that means later on there’s also no action which is where it submits to if there isn’t an action it’s going to submit to that page but I could get the action with DOT action and it should just be the same page so the page that I’m on now if I wanted to change the ID of the form I could do that by saying document dot forms and grab the first form in the document and take the ID and set it to let’s say new Dash ID right so if I save that now and I come over let’s go to the elements Tab and take a look at the form I’m going to close that up and you’ll see form has an ID of new ID so I set that from my JavaScript all right um I’m just going to comment that out though now I could do the same thing with links as I showed you in the last video so I could say document dot links which do I even have any links in here let’s go back to the console here yeah so it’s just an empty collection because I don’t have any links if I did if I put like let’s say https google.com and I’m going to get rid of this after but just to show you if I have a link then that’s going to get added to the collection and then I can access the first and only link with the index of zero and if I want to access just the just the link the href I can use the href property so I’ll say dot href all right if I wanted to set an ID onto this link I could say dot ID and set that to let’s say Google Dash link and if we go back into elements and we look at the link which is let’s see where is it um I think it’s in here yeah so ID Google link I could even change the href so let’s copy that down and set that to https facebook.com and save and now if we look again at the link right here you’ll see the ahref is now Facebook okay and then for classes like um for those CSS classes you could change now you can’t do this you can’t say dot class but you can do class name and I’ll set it to I don’t know Google class and save and now you’ll see we have a class of Google class and then if we want to access all of the classes we can get a collection of those with class list so let’s say dot class list and I’m not going to set this I just want to log it so we’ll save that and go to our console and you’ll see that now we have it’s actually called a Dom token list so any classes on that element will be in this list all right now we can do the same with Let’s see we did forms links we can also do images so let’s say output equals document dot images which will give us an HTML collection if I can spell this right document so that gives us an HTML collection of images let’s get the first image so this index of zero and that’s going to be this right here this note PNG which is the first and and only image if I wanted to get the source of that image we could use the source property all right so I just want you guys to know these these different properties that we can use to access these elements now the this is not the best way to do this if you want to access a form if you want to select it for something you don’t really want to do this or this for links or this for images but I want you to know that this does exist because you might run into it and there might be some reason why you do have to use it now I’m just going to get rid of this Google link it’s going to throw an error because it’s looking for links and I don’t have any so I’m just going to comment this block of code out and then the last thing I want to mention is that what we’re getting back when we do this document forms document images is an HTML collection which is array like we can access the specific uh forms for instance using an index just like an array but if we try to use a for each on it it’s not going to work so let’s actually try that out if we say document let’s use form so we’ll say document.forms.4h you guys should know this we went over this in the last section and this takes in a function we’ll say for each form then we just want to console.log the form right now if I save that it’s going to say that for each or forms.4h is not a function okay because 4H is not a function for what we have here which is an HTML collection okay later on when we use Query selector that actually gives us something called the node list which is different than an HTML collection and we can use for each on that but for an HTML collection if you do want to use four each you would have to first convert it to an array and you can do that with the array from method that we looked at a while back so I could say const forms right create a variable called forms and set it to array capital a DOT from and then pass in our document dot forms HTML collection and then I should be able to take that forms array and then Loop through it and now you can see it’s outputting this uh this form here okay because we only have one form if we had more it would show them here because it’s looping through and logging it okay so I just want you to understand an HTML collection is array like but it’s not actually an array and this is how you can turn it into one now in the next video we’re going to start to look at methods that we can use to to more easily select elements from the Dom all right guys so in the last video we looked at many of the properties available on the document object including properties that allowed us to select elements from the Dom in the form of HTML collections now in this video we’re going to look at a much more common and practical way to select elements and the methods that we’re going to use here are to select single elements on the page so if you want to get let’s say all of the paragraphs on the page you wouldn’t use these methods we’re going to look at those in the next video methods to select multiple elements for this is like if I wanted to select this particular H1 or this particular input then we would use these methods all right so the first one has been around for a while and it’s going to be document.getelement by ID so basically it does just that it’ll allow us to get any element in the Dom by its ID so if we look at let’s see if we look at the elements tab here and in the dev tools you’ll see that this H1 has an ID of app title so I want to get that let’s go ahead and we’ll do a console log of it first so document dot get element by ID and it has an ID of app dash title so if I were to log that in the console we’re going to see that H1 now there’s going to be cases where you want to get a specific attribute so what we could do is there are properties available such as ID and there is an ID on this element so I could just add on dot ID now that doesn’t work for every single attribute for instance if I do dot class I get undefined and I know there isn’t actually a class on here but I’ll show you real quick if I were to add a class onto this H1 of say hello if I do that we still get undefined because class is not a property now there is a class name property and you’ll see that does get it but there’s no that’s not always going to be the case get rid of that so what you can do is use a method called get attribute so I’m going to copy this down and instead of this dot class name I’m going to say dot get attribute and that’s a method so it takes parentheses and then we can pass in whatever attribute we want I’ll pass in ID and you’ll see now we get app title now there’s going to be cases where you want to set attributes not just get them so there’s a few ways to do that so one is to grab the element so let’s say app dash title and let’s say I wanted to change the ID I could say dot ID and set that to let’s say new Dash ID and if we look at the element now it has an ID of new ID now if I keep this here and then I try to select by ID and I use app title again it’s not going to work because that’s been changed so let’s change this to something else we’ll add a title attribute and we’ll just say shopping list and a title will typically you know if you hover over this it’ll whatever the title is will show all right now like I said there’s not always a property for that that we can use so there’s also a set attribute method so let’s copy this down and what we’ll do is get rid of this and we just want to do dot set attribute and that’s going to take in two things the first is going to be the attribute you want to set let’s just use class and then what you want to set it to so I’ll say title and if we look here you see now class is equal to title I could have said dot class name equals title so there’s many ways to do the same thing but I just want to show you that there’s both a get attribute and set attribute and we’ll talk more about this later as well now there’s going to be times where you don’t want to type all this out like if you have to use this selector more than once you might want to put it into a variable so we can do that by just setting a variable and then setting this to get element by D and app dash title so now if I were to console log title then that’s going to give us the element now I know that this video is showing you these different selectors and we’ve only looked at get element by D we’re going to look at query selector next but I want to show you some of the things that we can do when we bring these in when we when we grab an element from the Dom all right and and we’ll go into some of this stuff more in depth later on but one of the things you’ll do is either you either want to get or change or add the content that’s within that element right so what we could do is say well it’s console log first title which is our element our title element and we could do text content which is a property that will get the content inside of it in this case you can see shopping list okay now we can also change it as well by saying title dot text content and setting that to something else let’s just say hello world save that now you see we’ve changed change that element’s text there also is intertext so if I say inner text like that and we’ll just set it to hello again that’ll basically do the same thing there are some differences between these two but I’m not going to get into that right now you’ll most commonly see in our text at least in my experience now if you want to use HTML tags then there’s a property called inner HTML so you’ll use this a lot with vanilla JavaScript but with this I could set it to let’s add some strong tags and we’ll just set it back to shopping list so let’s say shopping list let’s close our strong tag and save that and now you can see now it’s strong or bold so another thing we can do is change Styles so we can actually edit our CSS from here so for example if I say title Dot and then we use style and then whatever CSS property we want so for instance color I’m going to set that to red and you’ll see I can change that color to Red now it’s important to know that if you’re if your style has if your property has two words like let’s say background color in CSS you would do this right bat Dash color background Dash color you can’t have a hyphen here so in JavaScript what you do is just use camel case like that and then let’s just set that to we’ll say black okay and then maybe you want to add some padding so we could change the property here to padding and set that to let’s say 10 pixels right and then we’ll just do a border radius it’s a border radius so it’s two words so it’s camel case now you might be saying why the hell would I want to use JavaScript to edit Styles well you wouldn’t do it like this just to edit a static page styles on a static page when you want to have your your interface be dynamic that’s when you you do this type of thing so for example if you want to have a pop-up if I were to hit this button and have something pop on the screen a modal you would be changing your yours or adding CSS to your JavaScript okay or you would just change classes you would change a class to like show or hidden or whatever and we’ll get into that later but I just want to show you now that you can select elements from the Dom and then you can change things or add or remove whatever you want okay so you have full control of your interface through JavaScript and the Dom so now we’re going to move on to the other selector that you’ll use for for single elements and that is document Dot query selector now this was a game changer when it came out before that if you’re using vanilla JavaScript we had to use get element by D so whatever you selected you had to have an ID on uh and in some cases you didn’t have full control of the HTML so that’s where jQuery came in and gave us a big Advantage because we could select anything we could just select an H1 with no class or attribute we could select by class we could select by anything at all so that’s really what query selector gives us and this came along with the es6 or es2015 update and kind of put jQuery out of business as as like a Dom manipulator so let’s start off by just we’ll do a console log here and let’s say document Dot and then query selector there’s also query selector all which is for multiple elements and we’ll get into that next in the next video but if I if I want to select just by the selector I can do that so H1 and you’ll see it’s showing our H1 along with all the styling and all the stuff we did up here to it now remember this only selects single elements that’s kind of the difference between jQuery and this if I did this with jQuery it would select I believe it would select all H1s I haven’t used it in so long but I believe it would select all of them in this case it’s going to select only the first one if there are multiple on the page all right but usually you’re going to use this to select like a class or something like that something that you know there’s only one of otherwise you’ll use Query selector all so another thing we could select by is ID so we could say app dash title okay so that’s going to log the same thing the H1 with that that ID we can select by class so if I say dot container and we select that you can see that we get the container and you can do all the same stuff with Doc query selector right you can change Styles content and all that we could even do it by attributes so for instance if we want to get the input that has a type of text we could say input and then in Brackets here I could say type equals text actually that takes takes quotes I believe okay and if I go ahead and log that you can see now it’s it’s grabbing this input here now we can even use pseudo selectors so basically anything you can use within CSS so let’s get rid of this and instead I’m going to say an A List item if I do this it’ll just give me the first list item by default let’s say I want the second list item so I could say Li and I could use the pseudo selector of nth Dash child and pass in here two so that should give me the second list item which is orange juice and let’s actually we’ll do the inner text save that and there we go orange juice so you can select and you can Target anything on the page you want so let’s do this let’s take the document query selector and the inner text and let’s put that into a variable so we’ll say const and I’ll call it second item and we’ll set it to that okay so that’ll give us the inner text actually you know what let’s not do the inner text because I just want the element and then let’s set the inner text so we’ll say second item and then dot enter text and let’s set that to let’s say apple juice if I save now we get apple juice okay if I wanted to change the color of it then I could take the second item and change the color I’m sorry we need style so style Dot color and set that to red all right and I would encourage you to maybe you know after this video try and change some things around with what you’ve learned try to change this this interface up maybe change the color of the button change the text of the button things like that now another thing that I want to mention is that you can use you can use these use these methods on other elements other than the document so for example let’s select the entire UL so we’ll say list and then we’ll set this to let’s say document dot query selector and we’re going to select the unordered list okay which is just this right here right apples apple juice Oreos Etc so that gives us the the entire UL if I console log list it gives us the UL now if I want to select something in that list like say the first item we can use Query selector on list okay it doesn’t have to be on the the document so let’s take list and then let’s say query selector and let’s say we want to get we’ll just get the first list item and yeah we’ll just do that and then let’s actually put that into a variable we’ll just call it uh we’ll call it first item so first item equals that and then we’ll take first item and let’s change the we’ll just change the color we’ll say dot style dot color and set that to Blue save and ioc apples is now blue so you can use Query selector on any element it doesn’t have to be just on the document all right now in the next video like I said we’re going to get into selecting multiple items all right so in the last video we looked at get element by D and we looked at query selector which are the two methods you can use to select single elements now if you want to select multiple elements like let’s say all of these list items then there’s some other methods you can use now query selector all is the method that you’ll use probably a hundred percent of the time there’s some older ones like get Elements by class name and get Elements by tag name which I will show you just so you know but you’re probably just going to use Query selector all so you can get by just using this and query selector for multiple elements now as far as what this gives us let’s go ahead and I’m just gonna I’m gonna create a variable here called list items and what I want to put in here is all of these these Li tags all of these list items if I go to my elements tab here and click on that you’ll see that we have these these Li tags and they have a class of item I could use that as well for my selector but let’s say we want this to equal document dot query selector all and I can put Li in here I could also like I said I could do class item and that will select all of those let’s leave it at that because if you were to add other allies on the page somewhere else those would also get included if you just use Li now if I console log list items I just want to show you what that gives us so let’s go to our console and what what it gives us is a node list and a node list is an array-like structure much like an HTML collection which we saw in the past in fact the older methods I’m going to show you do return an HTML collection as opposed to a node list now there are some differences one key difference is you can use high order array methods on a node list you can’t do it with an HTML collection with an HTML collection you would have to first convert it to an array and I’ll show you a for each Loop in a minute but I want to show you you can also get if you want an individual item just like an array you can use the bracket syntax if I put a 1 in here that gives me the the second element let’s say I just want the text I could do let’s say inner tab okay and that gives me orange juice because it’s zero one two three and I’m getting the one the index of one getting the inner text you can access individual elements like that like an array now if I were to let’s say I want to make all the the I want to make the color of these red so I couldn’t just do list items.style dot color and set that to red if I try that that’s not going to work because I’m trying to run I’m trying to access Style on a node list okay style is is for a specific element now I could do this I could say one and change that’ll change just that but what I would do if I wanted to change all of them is is a for each Loop right so I could say list items dot for each and in here we’ll say for each item and then we’ll take the that specific item and let’s take the style set the color to Red save that and now they’re all red okay now this is different from jQuery for those of you that that have worked with jQuery because with jQuery you could in fact take the you know list items variable and do dot style color and they would all turn red but it’s a little different with vanilla JavaScript and you can do whatever you want in here like we could say if let’s say if item and remember we can access the index so I could actually do this because we already know how four each works we can pass in an index and we’ll say if the index is equal to one then let’s take the item and let’s remove it so we’ll say dot remove and we’ll get into methods like this later but now you can see that that has been removed now let’s say we wanted to change the the text of the first one from apples to oranges so we could do if and then say if the index is equal to zero then let’s take this particular item and change the inner text we’ll change it to oranges save that now notice the text does change but the delete button is also gone whenever you’re working with elements you have to know exactly what you’re working with if we look at a list item here it doesn’t only include the text it also includes a delete button so you have to take that into an account into account so what we could do is just take everything that’s in the list item and copy it and then here this there is HTML in this so we would say enter HTML and then I’ll use a template string just so it’s easier so use some backticks here and paste this in and then change apples two oranges save and now we have oranges and the delete button is also there so you see a lot of stuff like this template strings um within your in vanilla JavaScript all right now I want to show you some of the other methods that we can use that you probably won’t but I do just want to show them to you so I’m going to comment this out just so we have our original our original list back and then let’s say we want to select all these with the get Elements by class name so I’m going to say cons list items we’ll call it list items two and say document Dot and then it’s get Elements by class name okay and then we know that they all have a class of item and this is kind of restrictive because you can only do classes and you don’t want the dot actually because it’s always going to be a class just like with get element by D you don’t put the the number sign now if I console log list items two we get an HTML collection as opposed to a node list okay we can still access individual items like like we would with an array like if I put a 2 here and save actually let’s do two and then Dot in our text and we get Oreos okay so you can use you can pass in an index like this but if I were to do a four each so let’s say list items two dot four each say for each item then we’re going to just let’s just do a console log of that item and the enter text save that and it says for each is not a function because it’s not a function for this list items two which is an array I’m sorry an HTML collection now what we could do is use array Dot from to convert it to an array so I could say const list items let’s just call it list items array and then set it to array Dot from and then pass in our list items two which is an HTML collection and then if we run the four each on list items array then we’re going to see that that works all right so just keep that in mind if you have an HTML collection and you want to use for each or any other method you want to First convert it to an array now the um and then the last one I want to show you is similar to this but it’s called get Elements by tag name so I’ll call this one list item three and let’s say get Elements by tag name and then you would put in the tag like Li list item so if I console log list items three again it’s an HTML collection so if you wanted to use a four each you would have to first turn it into an array but you can access specific things like let’s say we wanted the first item that gives us the first item if we want to get the inner text we get apples okay and I’m not going to do much more with these because I’m pretty sure that this is the only time we’re using these in the course okay you want to stick with query selector all for most cases so you can get by with just using query selector and query selector all all right so in the last few videos we looked at how to select elements from the Dom and do whatever we want with them now in this video I want to start to look at the relationships between element nodes okay everything in the Dom is a node and there’s other types of nodes like text node comments nodes we’re going to talk about those in the next video because there’s certain properties if you want to work with those types of nodes in this video we’re specifically going to look at element nodes okay so any HTML tag on the page is an element and I also want you to just be familiar with relationships which you should you should be if you know HTML if we look at this basically it’s pretty simple to tell that this div is a parent of these three divs inside of it and I even gave them the class names of parent and child and then any div that is on the same level such as these three children are siblings right so these are sibling nodes or sibling elements and I didn’t want to use the the shopping list UI just because I want something very very simple so that I can explain these methods and and show you how to use them I’m sorry not methods these are actually properties and the properties I’m talking about are these ones here okay so we’re going to look at all these so we have our parent element which we just saw it was a div with the class of parent and then we have our three child elements and there’s different properties for us to basically Traverse the Dom move up and down so we have we have a property called parent element which does just that we have a first element child a last element child next element sibling previous element sibling and then we also have a property of children which gives us I believe it’s a node list of all the children alright so let’s start to look at this in our code so I’m going to just close that up and I have this open I’m going to open up my script.js here which is completely empty and we’re going to start to look at some of these so what we’re doing here is still just selecting stuff from the Dom but in a way where we do we’re not directly selecting it we’re using elements we’ve already selected we’re using properties on those to kind of navigate and Traverse to the children the parent the siblings Etc so the first thing I want to show you is how we can get child elements from the parent so let’s create a variable here I guess we’ll we can call it parent and let’s say document Dot and then query selector and I want to get the div with the class of parent okay so that gives me if I console log parent gives me that div all right now I just want to create an output variable so let’s say output just because I’m going to be console logging quite a few things so we can just then set it to Output all right and what I want to show you is how to get the the children property so if we look at this diagram here there’s this children property that gives us an HTML collection of all the children so let’s say output and set that to parent and then children now this is a property or an attribute it’s not a method if I put parentheses here it’s going to tell me that children is not a function because it’s not it’s a property and what it gives me is an HTML collection which is an array-like structure of all the divs in here all the child divs now since this is an array-like structure I can access each individual element here with an index so I put if I put a 1 in here I’m going to get child 2 right because it’s zero base so child two would be the one index and I just want to show you if I instead of logging this if I do a console dir it’ll show me like all the properties and methods that I can use on this so we can access like the ID with DOT ID the class list um even the children of this we can access just all this stuff here so just to give you kind of an example let’s put this back to console.log and let’s uh let’s get the inner text save that we get child two right if I do let’s say class name I get child because remember it has a class of child we could even do like the node name which will give us a div because that’s what this is if I take the second one here and change it to An Li then node name is going to be Li all right so we can treat it just like we could treat a directly selected element now I can change things as well so if I want to grab let’s say parent Dot children and then one and let’s set um we’ll say text not text inner text or text content whichever one let’s set that to I’ll just uh we’ll say child and then we’ll spell out the word two so that should replace the child number two and I could also add styles to this so I could say one dot style Dot color and set that to Red so we could do that as well now in addition to the children HTML collection there’s also two other properties that we can use on our parent and that is first element child and last element child now there is just a first child that’s not what you want because that isn’t just element nodes that’s other nodes as well which I’ll talk about in the next video what we want to use is first element child okay so and it’s a property it’s not a method so don’t put uh parentheses and let’s just change this let’s say dot text our inner text and we’ll set that to child one save that and you’ll see it change the first one here and again just to look just to reference this diagram from the parent we called this right here first element child and as you can see there’s also a last element child so if we come back here let’s copy this down let’s change this one to child three and change the property from first element child to last element child and now you can see that that’s been changed so now what I want to show you is how we can get parent elements so get parent elements from a child because if we look at the diagram again it goes the other way as well these child has they have a property of parent element okay and we can also access siblings as well which I’ll get to so let’s go ahead and select from the Dom let’s select it we’ll say child and set that to document Dot and let’s use Query selector and we’re just going to select the first child we’re not going to use Query selector all because I don’t want that I just want to get one of these elements and show you how we can access the parent from it okay so we have the child now let’s set output because I want to show you how we can access let’s say child and then we can use the parent element property so if I save that we output now you’ll see we’re outputting the parent by using the child by using this property on the child now let’s say we wanted to add a border around the parent div from the child so I could say parent element and let’s set dot style dot border and we’ll set that to let’s say one pixel solid and we’ll do Triple C for the color and then let’s say we wanted to add some padding so we’ll say 10 pixels and change this padding and save and now you can see there’s a border around the div with the class of parent and I didn’t apply that to parent directly that I selected I selected a child but then I used the parent element property to access and change the style of the parent so now let’s look at sibling elements so sibling elements oops put two L’s in there all right so let’s grab let’s grab the second item right so I’m going to create a variable called second item and we’re going to use document Dot query selector and remember we can use we can put any selector we want in here so I’m going to say I want the class of child now remember there’s three of those I want the second one so I’m going to use this the CSS pseudo selector of nth Dash child and pass in a 2 here so that will give me the second item all right and just to show you let’s do output set that to second item and save that and you’ll see that now this gives us child two this one right here now if I want to access the next sibling from second item which would be the third one that I could use next sibling right so let’s set output equal to second item and then we’re going to do dot next I’m sorry it’s not next sibling that will do the next node no matter what it is next element sibling will give you the next element sibling so let’s do that now you see it’s we get child three and if I wanted to let’s see let’s just grab this and copy it and we could do something to this like I don’t know let’s set we’ll say style dot color and we’ll set that to Green okay so what I’ve done here is I’ve selected the second item directly using query selector and then I use the next element sibling property to get the next sibling and then I turned it green now we also have previous elements sibling so let’s copy this down and this one let’s say orange and I’m going to change next element sibling to previous element sibling and now you’ll see that first one is now orange because that’s the previous to the second item okay so hopefully this just gives you an idea of how to kind of how to navigate around if you select an item but then you want to get it sibling or its parent or its child there’s different ways to do that now as I said there’s other types of elements I’m sorry other types of nodes other than elements so we’re going to start to look at that in the next video okay now as I mentioned in the last video when it comes to Dom nodes there’s different types and in the last video we strictly worked with element nodes and that’s the most common type of node basically an HTML tag now if we look at this chart here this is actually from w3schools and you can see these are the different types of node types there’s 12 of them now a lot of these you’re not even going to need to know or work with but as you can see the first one here is an element node it represents an element and that’s what we were looking at in the last video and there’s specific properties that we can use that pertain to element nodes now some other types of nodes are attributes okay an attribute like an ID or whatever it might be an attribute on an HTML tag those are attribute nodes we also have text nodes which represent textual content okay so any text written within some HTML tags would be a text node we also have this C data section which represents a c data section in a document which is text that will not be parched by a parser we also have entities and entity references this stuff isn’t really that important to you right now comments so if you have a comment that is also a separate type of node so what I want to do is look at some of these other methods that are available to use with with not just element nodes but other types of nodes as well and this looks pretty similar to what we already saw but these are actually different methods okay same structure we have a parent with three children but we have for instance first child instead of first element child last child instead of last element child parent node instead of parent element node next sibling in previous sibling instead of next element in previous element sibling and there’s also a property it’s kind of cut off here but it’s child nodes instead of children okay so just remember that this works with all nodes while this works with just element nodes which is usually what you’re going to be working with what I’m going to show you here in this video probably you’re probably not going to use too much but I do want to mention it I want this to be a front to back course all right so the only difference between this HTML and the last is I simply have a comment here that says children because I want to show you that a comment is looked at as a specific type of node all right so let’s jump into the JavaScript here and I think the first thing we’ll do is look at the child nodes property just like we had a children property but we want to do that on the parent so let’s go ahead and again create parent document we’re going to query selector and we want to select the class of parent okay and then I’m also going to create a variable called output and then oops and then we’re going to console log that output and let’s just open up our console here okay so right now that’s undefined but I’m going to set output equal to and then take that parent element that we selected and look at not children but child nodes and it’s a property not a method so no parentheses and now you’ll see what we get back is not an HTML collection but a node list and that node list includes all different types of nodes so we have a text node a comment so what I want to do is is go back here and kind of go through and show you what what this pertains to and this goes from the where the parent class as it did with the parent class starts which is right here to where it ends which is right here so all of these nodes are in between that and you might be saying well how I mean where the first one is a text node where is this I don’t see any text well white space actually counts as text so this comment goes on to the next line so this right here is actually that first text node okay if I were to I mean I’m going to have to disable format on Save so if I search for format yeah right here format on Save otherwise it’ll knock it on to the next line but if I take this comment and I put this right here and then get rid of that white space see how right now this is 0 to 8 which is a length of nine because the text node if I save this and look at it now there’s no more text node and it’s a length of eight zero to seven so that text node is gone because that white space is gone if I put that back and I save it then that text node is there again so that’s the first thing next is the comment okay comments of their own nodes if I get rid of this and save then you can see that that com not only is the comment node gone but also is the white space after it okay this right here if I put that back it’s going to go back to a length of 9 and the comment and the white space after it okay this right here then we have our element node which is a div with a child okay div with the class of child then we have our white space which is the text then another div element then another white space with text then another div and then another white space okay so that’s what this is so as you can see this navigating this instead of just the elements like in the last video is much more difficult so you probably won’t be doing this that much unless you specifically need to access text nodes all right let me just put format on Save back on okay so now what I want to look at is we’ll we’ll stick with child nodes just just for a bit just to kind of see how we what we can access here so if I say output and set that to parent dot child nodes and we grab zero that’s going to be that the white space the text node as you can see gives us this text node and we can get all this this stuff from it right like we can get um let’s say text content not with a zero and that just it’s just nothing right if we look at let’s say node name that’s going to be text right so we have we have access to all these properties let’s look at a different one so we’ll copy this down and let’s do three I believe was the first element so if we do three yeah three node name is div if we just look at let’s say the text content we get child one if we look at the we know that that’s the element so we can get the inner HTML which is still child one because there’s no HTML in it if we want the HTML that surrounds it we can use out our HTML which is one t so now it gives us the div with the class of child and child one all right so we’re essentially doing the same thing we just have access to all of the nodes and not just element nodes if I wanted to change let’s say um let’s say dot in our text and I believe this should be the first one so let’s change it to child one spelled out yep so if I if it’s just it’s more difficult to figure out what you need to access because there’s so many of these other types of nodes um what else we could change we could change the color so we could do I think six would be the second one so six dot style dot color equals red or maybe not forget which one was it seven or was it five yeah it was five so that’s the second element all right now in addition to child nodes we also have first child and last child so let’s say output equals parent DOT first child just like we had remember we had first element child but that’s going to give us the text node the white space right if I were to I’m not going to turn off my format on Save again but if I were to put this up here uh not that if I were to put this up here that would get rid of the text node and the comment would be the first one but if I save I have format on save so it’s not going to allow me to do that all right we also have last child which is also a text node um what else let’s see and I could since it’s a text note I could say parent dot last child Dot text content and set that to hello so that’ll replace the text node which was originally white space with hello so now I want to look at parent nodes or getting parent nodes from the child right so what we’ll do is create just like we did in the last video create a child we’ll use document.query selector and we want to select a class of child okay so what we’re doing is selecting this right here now to get its parent node we can use the parent node property so let’s say output equals child dot parent node and that’s going to be the the actual div all right and if we look back at this chart what we’re doing is accessing this parent node now it’s going to be the same as parent element right even though we have these other types of node like text and comment the parent is still going to be the same so if we were to for instance do here parent element and I say we’re going to get the same exact thing so you could use either in in this case and if I wanted to say like child Dot parent node dot style Dot uh back we’ll say background color and set that to hex value actually let’s do let’s do something a little darker yeah so we could do that all right so that’s pretty much it as far as accessing the parent because there’s only one parent node right when it comes to children you have multiple children nodes now as far as siblings siblings I’m gonna once again get the second item so I’m going to do that with document Dot query selector and we’re going to get the class child but we want to get the nth so nth child two that’ll give us the second one so just a make sure that’s correct let’s set output equal to second item okay so we have the second item now if we were to get the oops Let’s uh let’s bring this up here so if we were to get the um next sibling right not next element sibling but next sibling it’s a text node okay because of that white space because we’re right here right now and the next node not the next element would be this but the next node would be the white space here if I were to take this and and close that white space then yes the next one would be the element and then just like we have next sibling we also have previous sibling which is also going to be a text node so hopefully this gives you a good understanding of nodes in general versus element nodes which is what we looked at in the last video and for the most part you’re going to be working with element nodes so the other properties we looked at like next element sibling previous element sibling parent element uh what else children as the as the an HTML collection as opposed to these child nodes so that stuff you’ll probably be working with more but again I want this to be a front to back course I want you to know everything you know as far as I know all right so that’s it in the next video we’re going to be looking at actually creating elements from our JavaScript okay so we can select elements from the Dom using multiple methods we can navigate to related elements using certain properties and we can manipulate Elements by changing their inner text in our HTML we can change the Styles now I want to show you how we can create elements in JavaScript so we can create any Dom element that we want and then insert it into the document wherever we want using specific methods so in many cases you’ll want to create a new element and then insert it into the document on some kind of event so an example would be with this shopping list ultimately we want to type something in here click the button add item and have it get added to the list now we’re going to go over events in the next section but the next few videos in this section we’re going to do some of the stuff that usually would happen after an event is fired off all right I just want you to know how to insert thing to remove things Etc create things alright so let’s jump into our script JS for this section and what I’m going to do is create a variable here called div because that’s what I want to do is I want to create a new div so we can take our document object and there’s a method called create element so we’re going to run that but we need to pass in the type of element that we want to create and of course it’s going to be a div judging by the name of the variable now we can console log that div and this doesn’t do anything to the page just yet all it does is basically just creates it in memory from our JavaScript it’s not placed in the page just yet now we can add attributes to this div so I’ll go right here and I’ll say let’s do div Dot and we’ve already looked at some of these like class name so let’s say I want to add a class name of my element and if I save now you’ll see that I have a div and it now has a class attribute of my element if I wanted to add an ID I could say div ID and set that to we’ll just use my element again so now it has a class and an ID we can also use the set attribute remember that set attribute method so we can say div dot set attribute and let’s say we wanted to add a title to the div and we’ll just say my element and if I save that now you can see it also has a title so you can create it and then you can add whatever you want to it now as far as what I want to put in it because right now that it’s just an empty div so we can add something to it by using well there’s a few ways to do it the the easy way to do it would be to use inner text so we could do like div Dot enter text and set that to whatever hello world if I save that now you’ll see in the console this div has the text of hello world however using inner text is not the best way to do this when creating a new element it is it’s really meant to Inner text is really meant to get and change the text of an already existing element it’s better to create a new text node with the create text node method and then append it to the element okay because remember when we talked about nodes there’s element nodes there’s also text nodes and we can create those so what I’m going to do is just comment that out and let’s create a new variable called text and set that to document Dot and then let’s say create text node and then in here we’ll put the text that we want in it which will be hello world okay and then we need to add that text node to our div and we can do that by using the append child method so we can say a pen child and then text I save and now down here you can see that hello world has been put into this div now a pen child is a very important method that you’re going to need to understand because you’re going to use it all the time and it’s it’s easy to understand it appends a child to whether that’s an element or whether that’s a tech node a tech node a text node it appends it to or inserts it into whatever this is so in this case we’re putting the text inside of the div now we want to use a pen child to put it on the page as well and where you want to put it or what you want to append it to is is up to you it could be anything so let’s get rid of this console log and let’s say we just want to put it at the at the end of the body or you know at the end of inside of the body we could just do document.body append child and then pass in our div and if I save that you’ll see that hello world is now put at the very bottom so if we were to inspect our element here it’s right before the the ending body tag okay it’s above the scripts and stuff and the live server stuff but it’s after everything else all right now if you wanted to put it let’s say at the end of this UL this this unordered list then instead of document.body we could do document and then we could select let’s say query selector and select the UL and then we could just uh just say a pen child and then append the div there I save and now it’s it’s going to be inside of the UL at the very end now what I want to do in the next video is actually insert an item that looks just like this with the the text and the the button so I’m going to actually give that to you as a challenge because everything you need to know we’ve already gone through and and most of it is right here for you to be able to do that so we can do it as a challenge if you don’t want to you just want to follow along that’s absolutely fine but that’s what we’ll do next all right guys in the last video we scratched the surface on creating elements and adding them to the Dom and there’s two main methods for that one is create element which allows us to do just that and then also a pen child which will allow us to append whatever we want to any element that we want now in this video I want to show you I want to get more deeper into that and show you how we can create a function to add a new list item to this shopping list and it has to include not only the the title of the the item but also the button this is a button that has an icon within it so it has to be the title the title and then the button and then also this I tag with along with these classes and I’m going to show you two ways to do it one is kind of a quick and dirty way of doing it which is using inner HTML and the second is a cleaner and more performant way of doing it where you’re creating all your elements not only the Li but also the button and and the eye tag here all right so and I’m not saying using enter HTML and doing it this the quick and dirty way is horrible it’s not you see it all the time but there is a better way to do it so ultimately we want to have a function which I’ll run down here called create list item and we want to be able to pass in whatever we want like let’s say eggs all right so let’s create the quick and dirty way first so we’ll say function create list item it’s going to take in an item now at the very least you have to create your Li element right I can’t do this I can’t say Li and set that to a string of let’s say Li at our Li tags here and then put in um actually we would use backticks here right because we want to put our item in here okay so we just have a string with list items and the item and then I want to append that to the to the unordered list so I would say document Dot and then we’ll use Query selector to get the UL uh we could do UL but it has a class of items so that’s more specific and then we can do append child and if I put the LI variable in here which is this this string let’s see what happens and this is this is what messes a lot of people up in the beginning it says fail to execute a pen child on node because the parameter one is not the type of node okay what I passed in here this Li is not a node it’s simply a string so this has to be a node meaning we have to actually create the element node and we do that with create element so we want to pass in here Li now the easy thing to do here the cheap thing to do is to just take Li and then set the inner HTML of that to a string or a template string and then I could just copy like all of this everything inside one of these Li tags and then replace apples with whatever that item is all right if I save that let’s see create element oh I forgot document all right so now if we look at the list you see eggs has now been added so we created an ally element node and then we just said well we want the inner HTML to be this and then we simply appended that Li node so next I’m going to show you a better way of doing this a cleaner way and that is to create all of the elements not just the LI but also the button also the I tag here and add the classes so let’s uh let’s call this something different so that we can run both we’ll just say create we’ll say create new item instead of create list item and it’s going to take in an item and let’s just call that down here so we’ll pass in say cheese and we’re going to call create new item all right now to start off here it’s going to start off the same we need to create our list item all right so we’ll say document Dot create element and we’re going to create our list item now we also have a button and an icon so let’s create the button as well I’ll say button equals document dot create element and we’re going to create a button all right and then that button has classes so we can say button dot class name and set that to a string of classes which are going to be these so I’ll grab those and paste those in and we should be able to console log here if we want the button just to see so we have a button with classes on it right now we also want an icon so let’s say const icon and set that to document Dot create element and that’s going to just be an I tag and then that also has classes on it so we’ll say I dot class name and set that to let’s see these two classes right here so we get the x mark all right so we’re setting that I’m sorry that should be icon I was wondering why it was white so now uh oh and one thing we I forgot to do is the text the text for the the LI is going to be a text node right so we’re we’re creating the LI element we’re creating the text node we’re creating the button element and we’re creating the icon element instead of just setting the inner HTML to whatever so for the text node let’s do we’ll just take the list item and then append we’re going to append child because the text node goes inside of it and then we can say document dot create text node we could put this in a variable if you wanted to and the text node is just going to be whatever the item that’s passed in here all right so now we need to put the icon right the I tag needs to be appended inside of the button so we can just say button dot append child and we’re going to pass in here the icon and then the button needs to go inside the list item right we have the list item the button will be appended inside that so let’s say list item dot append child and we want to pass in the button all right and if we do a console log right now of the list item well actually let’s look at the inner HTML in our HTML of the list item and that’s that’s the text node then we have the button with the classes and then the I tag with the classes so the only thing left to do now is to append that to the Dom to uh to the UL which is what we did at the end right here so let’s just paste that in and save and now you see cheese is added now is this a huge deal in this situation no it’s not just know that using inner HTML so using this this first method causes the web browser to re-pass and recreate all the Dom nodes inside the UL element so this is less efficient than creating new elements and appending them so the second way is going to be more performant also setting in our HTML HTML will not automatically reattach event handlers to the new elements it creates so you would have to keep track of them manually I know we haven’t gotten into events yet but it can cause some issues with uh with attaching event handlers but again I’m not going to sit here and tell you that this is a horrible way of doing it and you will see this quite a bit all right now in the next video I want to take it a step further and instead of having just a single function I want to create a separate function for creating the button and creating the icon making it pretty reusable if you want to create other buttons and icons and also just making it more readable all right guys in the last video I showed you a couple ways to add a new list item to our shopping list and one of the ways was kind of a quick and dirty where we just used in our HTML On An Li node and then we also had this function here where we create the LI element the button element icon text node and we just append them all and then ultimately append to the Dom so when it comes to clean code I think a lot of it is preference you know so obviously some things are objectively wrong or right but I think a lot of it most of it comes down to the developer’s preference so in this case if you wanted to keep this as one function that’s fine but to me I think it’s cleaner to cut it down where a function does one thing so we’ll have this create the item but then we’ll also have another function to create the button and another function to create the icon and then it makes it more reusable if you want to create a button or an icon somewhere else all right so this is completely optional what I’m doing here I just want to give you a couple different points of view you know so it’s up to you on on how you choose to write your code but I want to give you the options so so let’s create a function called create button okay because I want this to be a separate function that takes in the classes because each button has classes and then also the same thing with icons so let’s create another function called create icon all right and then basically all we want to do these two lines here we’re creating the button and then we’re adding the classes I’m going to cut that put this into here and then the classes we’re going to cut and then set button dot class name to the classes that are passed in as arguments all right and then ultimately from here we just want to return return the button and then what we can do in the create new item is just set a new variable of button to the return value of uh create button and then we can pass our classes in if I save that we’re going to get the same exact thing now I want to do the same thing with icons with the icon so I’m going to grab those two lines and in our create icon let’s paste that in and I’m going to cut these classes set that to the classes that come in as arguments and then return the icon and then that way we could come up here now this is another thing that you can you have preference on if you want to have the icon or create icon function called in here or in the button because the icon is inside the button so I’m going to choose to actually do it within here so I’ll say const icon set that to create icon and then pass in the classes and then this line here where we’re taking the the icon and appending it to the button that is going to go down here in this function okay so now if I save this we get the same result but to me it’s a little cleaner okay we have a separate create button and a separate create icon we’re just setting the button to the return value of of the create button we’re appending it to the list item and then ultimately we’re appending the list item to the the UL and the Dom all right so if I were to call another function here create new item and we’ll put in I don’t know sauce save that and you’ll see that gets added so it’s completely up to you I’ll talk about like clean code practices and stuff throughout the course but like I said I think a lot of it is preference all right guys so when it comes to inserting elements into the Dom we’ve looked at a pen child which is very common you’ll probably be using that a lot but there are other methods as well that you can use and I want to show you those in this video so the first three are they’re all related it just it’s the only difference is what you’re inserting so we have this insert adjacent element if you’re inserting a new custom element insert a Json text if you’re inserting text and insert a Json HTML if you’re inserting HTML so the way these work is they take in a position which is going to be one of these four so here I just put this example of a paragraph and if you choose to insert before begin it’s going to go above the paragraph okay or whatever element you’re using as a reference and then after begin would be directly inside of it at the top above all the content and then before end would be after the content but still within the paragraph and after n would be after the entire paragraph or whatever element all right so let’s start off with the insert adjacent element and I’m just going to create separate functions to run for each of these so this one will call insert element just so we’re not in the global scope and first thing we need is a reference element on the page so where do we want to insert our new element let’s say we want to do it before this filter items input so we need to bring in that filter items input so let’s say document Dot query selector and I believe that has a div around it with the class of filter so we want to choose that all right then we want to create our new element and this could be whatever anything you want to put on the page whether it’s a new list item or it’s some data from an API whatever it might be in our case I’m just going to create an H1 so let’s say document dot create element and we’re going to create a new H1 and then I’m just going to add some text to that with text content so let’s set this I’ll just put the the name of the method we’re looking at as the text all right and then to insert it we’re going to take the filter and then that’s where we call insert a Json element and it’s going to take in two things the first is going to be the position which is going to be one of these four I’m going to choose before begin all right so that that’ll put it right above it and the second is the element we want to insert all right so now let’s just run this function so that this code runs and we’ll say insert element save that oops and you can see that my H1 has been put above the filter form if I change this to let’s say after end it’s going to be put below it all right so it’s just another way to insert content onto the page through JavaScript now the text insert adjacent text works in a very similar way so let’s create a function here called insert text and we’re going to figure out what text do we want to choose or what element do we want to choose to put our text before or after I’m going to choose the first list item here so let’s say const and say item and document dot query selector and we’ll just put an Li here we could do Li colon first Dash child either one is going to give us the first one and then on that item we’re going to run the insert adjacent text method and that’s going to take in a position let’s say we’ll do after end and then we can put in I’m sorry not item whatever text we want which I’ll just do I’ll just do the name of the method save that actually we have to run it so let’s come down here insert text save that and now you can see that it’s after the first list item if I change it to before begin then it goes above it I can also do after begin that will put it inside or before end which will put it inside at the bottom and this is similar to what a pen child does right so for HTML that’s just pretty much the same thing we’ll say insert HTML and let’s choose let’s choose the clear button down at the bottom so we’ll say clear BTN and document dot query selector and it has an ID of clear and then on the clear button let’s say dot insert adjacent HTML and it’s going to take in a position so let’s say before begin and then we can just pass in basically a string with HTML so let’s put an H2 and we’ll say insert uh insert adjacent HTML and close our H2 save that I keep forgetting to run it insert HTML there we go so it’s put before if I do after then it’s put after okay so again these all work and they work the same way it just depends on what you’re inserting an element a text just regular text or HTML and this is insert HTML or insert a Json HTML works like in our HTML now there’s another function or method that I want to show you called insert before which is similar to a pen child and how it works but it’s a little more complicated because you what you do is you define a parent or you bring in a parent and then you choose the item inside that parent that you want to insert your item before all right so let’s create a function called insert before item and we’ll create the parent or select the parent which I’ll use the unordered list so let’s say document Dot um query query selector and then we’ll choose the UL so that’s the parent now we want to create the element we want to insert which will be a list item so we’ll say document Dot create element and create a list item and I’m just going to add some text to that so we’ll say text content and set that to set it to the name of the function method we’re looking at and then what we do is Select an item inside the parent where we want to insert before so let’s select the let’s get the the third item so I’ll say const third third item and we can do that with document dot query selector and then I’m going to do Li and then we’ll use nth Dash child three okay so that will give me the third one and what I want to do is insert my my li I want to put it before this third item insert before that what’s weird about this is you call it on the parent so on the UL is where I do my insert before uh insert oops insert before and then that will take in your element whatever you know we’re putting in which is our Li and then it takes in the reference which is the third item so if we run this insert before text or what is it insert before item okay and now you’ll see that Oreos was the third one right this is the first one second one third one and I chose to insert before that third item so it put that this is my element my new Li it put it before that third item what’s kind of strange is that you call it on the parent with a pen child you don’t do that you just basically select you know the item that you want to put it inside of and then you call a pen child on that now you might think that since there’s an insert before where is it right here insert before that there’d be an insert after but there isn’t so what we’re going to do in the next video and you guys can look at it as a challenge if you want to try it beforehand is to create our own custom insert after all right so we’ll do that next all right guys so this video can be looked at as a challenge if you want to try it yourself or you can just follow along like you would any other video so we saw in the last video the last lesson that there’s a bunch of different methods we can use to insert elements and other things like text and HTML onto the page and insert before was one of those now you might think that because there’s an insert before there’s an insert after but there isn’t so what I want you to do is create a custom insert after function where you can pass in a new element if you look down here at this example code here if you pass in a new element like this Li that we created and then some item that already exists in the Dom your new item should get put after the the existing so in this case I’m selecting the first li as the existing item and I’m passing my li here in as the new item so it should get put after the after apples okay after the first item and you can use new L for your first uh parameter and then existing L for the second now as far as hints you can remember some of the properties to get parent and sibling elements okay remember we looked at that a few videos back and you can combine some of those I’m not going to say which one with insert before so if you combine these together there is a pretty simple way that you can make this work and you can insert a new element after an existing element all right so if you want to pause the video and try it you can if not just follow along and I’m actually going to copy let’s see I want to go back to that because I just want to copy the this code right here because I want to run this exact code so paste that in and now we want to create our function which is called insert after so insert after and that’s being called right here which is getting passed in this custom element that I want to add to the page so we’ll call that new element and then the next thing we’re passing in is an existing element which is the first list item so let’s say existing element all right now remember some of the the properties we looked at such as parent element so if I were to console log my existing element and then the parent element of that I’m going to get the UL okay so I have access to that unordered list and you could use parent node in this case as well if I do parent node that’ll give me the same thing so what I want to do is take the the parent element so existing l dot parent element and then I’m going to call on that insert before okay so remember this from the last video what insert before takes in it gets called on the parent and then what it takes in is the new element that you want to insert and then whatever you want to put it before now obviously we want to put it after that’s what this function is supposed to do but we can go ahead and take the existing element now if I run that and save it insert me after it gets put it actually gets put before apples which obviously isn’t what we want we want this to insert it after but all we have to do is simply add on to the existing element the next sibling property save that and there we go now it’s put after because if we put our new element before the the existing elements next sibling which is the next one orange juice that’s the same as putting it after apples okay so hopefully that makes sense and that’s why it’s important to understand these properties like parent element and next sibling and methods like insert before now I’m not saying you have to remember all these right now but at least know that that they exist and know that you can go on the mdn docs and you can look them up if you need to and and I still need to reference this stuff even for this course there’s plenty of stuff that I had to go and reference but I know it’s there and I know that these things are possible and I’m sure that for some of you this this challenge seemed like really difficult where you didn’t even know where to start but then you see the answer and it’s like one line it’s it’s easy so hopefully this this helps some of you guys out let’s see in the next video we’re going to start to look at replacing elements in the Dom all right guys so we know how to insert elements into the Dom Now using multiple methods now we’re going to look at replacing elements and some of the methods that we can use for that so we’re going to be working with our shopping list UI again and we’re going to be replacing some of the list item elements in this in this shopping list and there’s of course more than one way to do this so I’m going to show you a couple now I’m going to create a couple functions just because we’re doing a few things so I want to be able to to run separate functions so let’s create a function and we’ll say replace first item okay so I want this function to replace the first item which right now is apples so first we want to bring in the item we want to replace so we’ll call this first item and we’ll select that from the Dom with query selector and just put in here you could do LI or you could do first child either way it’s going to select the first one and then we want to create our new element so document dot create element and notice we’ve been kind of repeating ourselves quite a bit throughout the this section and that’s a good thing because it’s drilling into your head how do I select elements how do I create them and start them and so on now we want to create a list item to replace it and I’m just going to add some text content and you can use text content or inner text and let’s just make that say replaced first now to replace and this again this is just one way we’re going to use the replace with function or replace with method so we call that on our first item because that’s what we want to replace and we’re going to call replace with and then simply pass in our new element all right so let’s run this function save that and you’ll see replaced first okay so that’s the first way of doing this is using replace with the next one let’s call this function replace second item and in this in this function we’re going to use outer HTML okay we’ve used inner HTML quite a bit and that pertains to the HTML that’s in the element outer HTML will also include the HTML for that element so in this case the LI tags so let’s get the second item first of all so second item and we want to get that let’s say query selector and to get the second one we could do Li and then use nth child and two so that’ll get the second item and then on the second item we’re going to set the outer HTML and set that let’s say Li and then replaced second Li okay so it’s it’s similar to setting the inner HTML except we’re also setting the outer tags if I save that actually I have to run it of course so let’s say replace second item and now you’ll see replace second now the next one I want to show you is is how we can replace all of the items in the list and there’s not a specific method we’re going to use for it what we’re going to do is Loop through all the Li’s with a four each and then change the outer HTML for each one and if you want to try this on your own of course you can do that as well so let’s call this replace all items and what we want to do is get all of the list items so we’ll just call this Li’s and then we’re going to use Query query selector all since we’re getting more than one and we want to get all the LI tags all right now since query selector all returns a node list we can use for each on that so let’s say for each and we pass in our function here and we’re going to pass in we’ll call this item but I also want to get the index as well okay and then here what we’ll do is just set the let’s say item for each item we’re going to set the outer HTML and let’s just set it to replace all okay and then if we run that down here let’s say replace all items and oh I forgot the Li tags okay so we could do that we could also use inner HTML like I could do item dot enter HTML and in that case I would just do replace all because I’m not replacing the the LI tags so you can see that does the same thing um if I wanted to choose a specific item and and do something else I could do that so for instance let’s say if the index is equal to let’s do the second one so we’ll choose the index one then Let’s uh let’s see we’ll put this actually I’ll just copy that and then let’s say this is the second second item else then we’re going to have replace all so if I save that now you’ll see second item now why don’t you guys go ahead and shorten this up so this for each right here we can have an implicit return we don’t need to use curly braces and we can use a ternary instead of an if okay so if you want to pause the video and try that you can but uh actually let’s go under the four each but all we have to do is say for each and pass in here function we’ll say for each item and we also want to get the index and then here we’ll we’ll just say the item Dot we’ll use outer outer HTML so we want to set that to a condition okay or a ternary so we’ll say if the index is equal to is equal to one then we want this this outer HTML to be list item and then second item okay else then we want this to be a list item and just say replace all or we’ll just say item like that okay so if I comment this one out and save then we get the same result it’s just a little cleaner and a little shorter now another way that we can replace something is by selecting the parent element and then using a method called replace child so I’m going to create another function here let’s call this replace child heading and what I want to do if we look at the HTML here in the header there’s an H1 that says shopping list so I actually want to replace that with an H2 so the way this works is we select the parent which is the header we select the item we want to replace and then we replace it with a new item so let’s go ahead and first of all select header so that’s going to be let’s say document dot query selector and that has I will just select it by the the element itself which is header and then let’s get the H1 so H1 and we’ll say header H1 and then let’s create a new element we’ll call this variable H2 say document dot create element create an H2 and let’s add an ID because I believe that has an ID or it doesn’t okay but we can still add an ID we’ll say dot ID equals app dash title and then for the content let’s say text content and I’m just going to keep the same shopping list okay and then all you have to do is on the header we can do replace child and we want to replace we want the H2 to replace the H1 all right so let’s run that function replace child heading save that and now this should be an H2 so if we check it out there we go H2 and it has the ID of app title okay so those are some of the ways that we can replace elements in the next video I want to show you how we can remove elements okay so now we’re going to look at removing Dom elements now just like with most of the stuff that we’ve talked about in this section the things we’re doing we’re usually going to do when we fire off an event such as click this delete button right here then we would remove this all right but I just want to show you that the methods to manipulate the Dom before we get into events and we’ll get into events in the next section so so there’s basically two methods I want to show you remove and remove child so they’re pretty self-explanatory remove is going to be called on the element you want to remove remove child is called on the parent element and then you pass in the item you want to remove so I’m going to give you a couple examples in the form of functions so let’s say we want to remove the clear button so all we have to do here is Select say query selector and we’ll select the clear button which has an ID of clear and then we can just call remove okay and then if I come down here and I say remove clear button and now it’s gone and you could put this you know you could put this into a variable like say clear button and then what you could do is just call on clear button variable removed same thing all right now the next one is remove child so I’m going to create a function called let’s say remove first we’ll say remove first item and we want to since we’re moving using remove child we want to get the parent which is the UL so let’s set that to document dot query selector and select the UL and then select the item we want to remove I’m going to call this variable Li and then as a selector we’ll pass in Li and we’ll do first child or you could just do Li so that’ll select the first one and then we want to call on the parent on UL we want to call remove child and then we’ll pass in our Li and then if I call that let’s say remove first item and now you’ll see apples is gone so that’s remove and remove child now we’ll do a couple other things just to you know explain it a little bit further so let’s create a function and let’s just call it remove we’ll just call it remove item and then I wanna I wanna pass in an item number or index and it’ll delete that item right so if you want to try this yourself then you can pause the video and do that but I’m going to comment out this remove first item so we have our apples back and what we’ll do is I’m going to show you a couple ways to do it we’ll use remove child in this one so we’ll get the UL so UL equals document dot query selector we want to get the UL and then for the LI let’s see I’ll just copy this down the LI we want it to be the specific item number and I want the item to be one two three four so so what we could do one of the ways we could do this is to put in backticks here for our selector and then do Li and then say nth Dash child and then in here we can put our variable of item number so that way if we come down here and we call remove item and we pass in one and save let’s see that didn’t work oh we did I didn’t actually call the remove so UL dot remove child and pass in the LI variable and now apples is gone if I pass in 2 then orange is gone all right now another way to do it is let’s see I’m gonna I’ll just copy this but I’m going to call this remove item 2 I guess and instead of we’ll still use remove child but instead of passing the variable into this pseudo selector I’m going to query selector all because remember what that gives us if I select all Li’s is an array-like structure called a node list and we can access the index so I can do this and what this will do is put the very first one the zero index which is Apples into this Li and then I I’ll remove that so to give you example let’s say remove item two and it doesn’t matter what I pass in just yet I’ll pass in one but Apple’s is still gone because I have 0 here so what I want to do is this item number I’m going to put that in here however remember it’s zero base so if I pass in one here like I am right now and I save it gets rid of the second one which is orange juice because this is zero base but I’m not making this like I don’t want to pass in zero so all we have to do is take that item number and just subtract one from it so now if I pass in one apples is gone if I pass in two then orange juice is gone all right now I’m going to give you one more example so let’s say function remove item and we’ll call this remove item three it’s going to take in item number now I don’t I’m going to use remove in this one instead of remove child so I don’t need to get the parent so what I’ll do is uh I’ll just copy this line here and I’m going to get all of the list items so I’m going to just get rid of these brackets here so we’re getting all the list items and then we can simply do Li which is a node list which is array like so we can say item number subtract one because it’s zero based and then on that item or on that element we’re going to just call remove so let’s go ahead and say remove three we’ll put pass in a one here and that should get rid of apples if I pass in 2 gets rid of orange juice pass in three gets rid of Oreos all right and uh and we can really shorten this up actually we could say const remove item three let’s call it four so remove item four and let’s make that an arrow function that takes in the item number and then it’s gonna return let’s say document dot query selector all right so query selector all and then we’re going to pass in here item number minus one and then call Dot remove so if I come down here we call remove item four and I pass in one that didn’t work let’s see oh I forgot to put the actual Li in here and there we go so now apples has gone now orange juice is gone so this is just a shorter way of doing this all right so that’s it in the next section we’re going to start to look at events which I’m sure a lot of you have been waiting for all right so what I want to do in this video is look at some of the properties we can use to manipulate CSS classes and just our CSS directly which we’ve done a little bit of this already but I want to really just just drill it down here so we’re not using the shopping list UI we just have uh we have a paragraph that has a class of card I have just this background and border and then a UL that has a class of item lists and items because I wanted to have something that has multiple classes and then a button that says run now we’re going to go over events in the next section but I wanted to have an event a button click here because 99 of the time when you’re changing classes and changing Styles it’s going to be on some kind of vent it’s not just when the page loads you would use CSS to just simply add Styles when you use JavaScript with CSS is when you want to have Dynamic functionality if you click on something like if you wanna display a menu or something on click like a hamburger menu that’s where you would use these kind of classes and and style manipulation as far as the style sheet I just have just I just changed the font I have a class of hidden with display none you’ll commonly see this if you want to hide something then we have a class of card that just designs this background here with the border and a class of dark which will give it a darker background and I haven’t used that yet anywhere in here so let’s jump into the script and I just want to bring in what we need so I’m going to bring in the paragraph so let’s say document dot query selector and we’ll select the paragraph all right then we’re going to Let’s copy this down we’re going to grab the item list so we could either put UL in here but it’s better to Target a class or an ID so let’s say item list and we’ll call this item list and then I also want to get all of the items so we’ll call this items and then what I’ll do is on the item list I’ll call query selector all and we’ll select all of the list items all right now as far as the The Click event goes I’m going to select the button so we’ll say query selector and select button usually you should have some kind of ID because you probably have multiple buttons on your page but in this case it’s fine and then I’m going to do dot on click okay and again I’m going to talk about events all in the next section that’s what the next section is based on so don’t worry about it right now if you don’t understand it but we’re just going to set the on click event to run a function called run and you don’t want to put parentheses here because that will automatically execute it so up here let’s create a function called run and if I just do a console log here and then let’s open up our console if I click it you should see a one all right now this is where I want to show you the different properties so the first one is class name so if I do a console log here of let’s take the item list and let’s say class name and I click this it’s going to show me all of the class names okay it’s just basically it gives you a string of all the class names now you can set the class name as well like I can say item list and let’s say dot class name and let’s say I set it to that dark class all right now actually you know what I want to use the the paragraph for this so the text so if I click on run notice it applies the dark class and we can check that out right here but it took the card class away so this is always going to overwrite whatever classes you have there so if you do do it this way you need to make sure that you also put the existing classes so in that case I could do that and then that would keep the Cod class as well all right now A Better Way for dealing with this is to use the classless property the classless object which has different methods you can use on it to add and remove classes or even toggle classes so let’s look at class list all right now if I were to console log here let’s say item list Dot class list okay so I’ll click let me just um we’ll comment this stuff out for now so if I click that you’ll see what we get is a it’s actually called a Dom token list which is similar to an array it’s basically an array of our classes all right and I could even Loop through that with a Dom token list you can use methods like for each so if we say item list Dot classlist dot for each and I’ll say for each class then let’s do a console.log of that class so now if I let me just comment this this one out so if I click run now you’ll see it’s just going to log each class so you can take each class and do whatever you want with it in this case I’m just logging it out now to add a class like let’s say we want to do this same thing we want to add the class of Doc but we also want to keep the class of card so I could take the text and say dot class list and then there’s an ad method that we can use and I want to add the class of Doc so now if I click that and that runs you can see it still has the formatting from the card class it just added the new class of Doc all right now we also have a remove so if we do let’s say dot remove and let’s remove the card class which will take away the padding and the the border and stuff so what happened is it added the dot class and then it removed the card class so there’s no more padding now we also have a toggle class which is very useful so let’s comment that out and Let’s uh let’s say text Dot class list and then we’re going to use toggle and let’s toggle the doc class so this is good if you want to have like a a doc light switcher a lot of websites have those so if I click on run it turns dock if I click it again it then removes the class in fact let’s go ahead and take a look at that you see this paragraph click run and dark it’s added click it again it gets removed so that that’s something that is very useful when you’re creating dynamic dynamic websites now I could also do let’s say we want to toggle the hidden class so what that’ll do is when I click it it goes away click it again it comes back so pretty cool now there’s also a replace class so if I wanted to do let’s say text.classlist I don’t use this one as much but it is available so if we wanted to replace let’s say we want to replace card with Doc so it’s going to take in two arguments so if I click now you can see the card is gone there’s no padding and the dot class has been applied so it just replaced it now if I want to change the style directly let’s say change Style then we could use the style property and we’ve already done this a few times but let’s say we want to take the I don’t know take the item list and let’s say Style and let’s change the line height now in normal CSS you would do line Dash height but we can’t do that here so if you have multiple words we just use camel case so it would be line height like that and we’ll set that to let’s set it to three so now when I click the button you’ll see that the line height is applied so you can do that with any CSS style or any CSS property if I wanted to change let’s say I wanted to um do something to all of these list items what I could do is there’s a few ways to do this but I could Loop through these right so item list I’m sorry not item list items which is the query selector all and let’s say for each actually I’ll put some parentheses in here because I want the item and the index and then for each item you can do whatever you want so let’s say we want to style the color and set that to Red all right so now I click that and all the items turn red and you can Target specific ones like let’s say we want to say if the index is equal to two then let’s make that item Style color we’ll make that one blue so now if I click it you’ll see that the third item is blue because that’s the index of two all right so that’s really the basics of of just dealing with uh classes and style in JavaScript all right guys so now that we’ve looked at all kinds of methods and properties on the document object to be able to add change and remove things from the Dom now we need to learn about the actions that the user takes to make these things happen and those are called events and any interaction that the user has with your web page all the way down to the actual loading of the page is an event and we can listen for those events and create something called event handlers so in this section we’re going to learn about all kinds of events most and keyboard events form submissions event delegation and bubbling and and much more so with the knowledge between this section and the last section you’ll be able to create some cool little front-end applications and then after this section we’re going to start on the shopping list project and we’re going to build that from scratch all right so in this video I want to show you how to listen for events but first of all what are events so the official mdn explanation is that events are actions or occurrences that happen in the system you are programming which the system tells you about so your code can react to them so that’s kind of uh an Overkill of an explanation basically an event is just when something happens okay or an action and that could be anything from the web page loading to clicking on an element typing into a text field hovering over an element submitting a form closing a window dragging an element resizing an element etc etc so just about anything is an event and you can listen for those events so that’s what I want to show you how to do now so I’m going to close that up and I just have our our good old shopping list UI here with an empty Javascript file and there’s a few ways that we can add an event listener onto an element so the first way I’m going to show you is is not recommended I don’t think any JavaScript developer would recommend it because it’s not flexible it can also pose a security risk and that is to put the listener in the HTML file as an attribute so for example this this clear button that’s what I want to work with so we could put in here an on click attribute and then I could actually put a JavaScript expression right in here like I could say alert and say clear and now if I come down here and click the button I’m going to get an alert box with clear all right now obviously you can only put so much JavaScript in here so you could actually put a function like on click or let’s call it on clear and as long as I have my script file linked to my HTML here I can create a function called on clear and then I can alert and we’ll say clear items all right so if I come over here and I click again we get an alert box with clear items but again this is not recommended you don’t want to have your HTML cluttered up with what are called inline listen event listeners so we’re going to get rid of that and then I’m going to show you the second way which is to use a JavaScript event listener so with this we can select our element let’s see I’m going to keep the on clear here but I want to comment it out but I’m going to bring in the clear button because I’m going to use it in a few different places so let’s say clear BTN we’re going to select it with query selector and it has an ID of clear all right so what we can do to add an event listener within our JavaScript is to say clear button and then just do a DOT on click and on click is one of many event listeners and then you would set that to a function and then do what you want in here so let’s do uh we’ll do we’ll do an alert so we’ll say alert and clear items okay so if I come over here I click and I get my alert box and I didn’t have to do anything in the HTML so that’s the second way the Third Way is what I would recommend it’s the most modern way and it’s what we’re going to do in this for the rest of this course and that is to use the add event listener method and what that does is it just allows you to do just that you take an HTML element or a Dom element and you add a listener for a specific type of event so let’s comment this out for the moment and let me just say add event listener so we would once again just take the clear button or whatever we want to put the listener on and simply say add event listener and then this takes in two arguments it’s going to take in the type of event which in this case I want it to be a click and then it takes in a callback function so I’ll just put an anonymous function in here and then I’ll do an alert and we’ll say clear items save that and if I come over here and click I get the same thing all right gives us the same result now you can shorten this up we can go ahead and turn this into an arrow function so we can do that and since it’s just a one liner we can even get rid of the curly braces like that and that should still work all right so this is what I would recommend and another kind of Advantage with this is you can have as many event listeners as you want on the same event and let me just show you if I uncomment this and then I copy it and then let’s say I want to do I want another event listener on the clear button and this time I’m going to just console.log clear items all right I’m going to comment this out for a minute so we have two event listeners same event same element but they do two different things so now come down here and let’s open our console and let’s click and you’ll see we get our console log but I never get that alert okay if I comment the second one oh then we should get the alert now with add event listener we can have as many as we want so I’m going to just copy this down and let’s see instead of on this for on the second one instead of alert let’s do console.log and now if I click this you’ll see we do get the alert and then when it once I clear that up then the it console logs all right and the reason that it doesn’t run at the same time like you don’t see the log at the same time is because an alert is a blocking operation and I’ll talk more about that when we get into synchronous versus asynchronous code but just know that an alert is it’s synchronous and it’s blocking so nothing is going to happen until that’s cleared up all right but it does run both of them so that’s an advantage of add event listener now for these we put in just an anonymous function but we can use a named function such as on clear so I’m going to just uncomment that and I’ll just comment one of these and then instead of passing in this Arrow function as the second argument let’s pass in the on clear function now when you do this you don’t want to put parentheses if I do that it’s just going to execute okay the function gets invoked because we’re using parentheses so you just want to pass in the Callback you want to pass in the function name so that way it only fires off when you fire the event all right now there is a remove event listener method and you don’t have to use it every time you add an event listener where you do want to use it is when you have an element that you’re removing from the Dom like we learned about the remove method remove child if you’re doing that then it’s a good idea to remove the event listener first so what I want to do is is call remove event listener but I want to call it five seconds after the browser low after the page loads and I’m going to use a function called set timeout to do that which we haven’t used yet so it might be a little confusing but we will get into set timeout which is an asynchronous JavaScript function and we’ll get into that later but basically it takes in two things a function and then it also takes in the number of milliseconds that I want to wait to fire this function off and I’m going to say 5000 which is five seconds and then in here is where I want to remove the event listener so I’ll say clear BTN dot remove event listener and what I’m going to pass into this is the event which is click and then I also need the reference function which is on clear okay and which we we have up here okay so that’s the function being passed in to add event listener also the function being passed in to remove out of uh event listener so if I save that you’ll see that this works fine I’m clicking it it’s it’s you know the box is popping up but once we get to five seconds you can see I can no longer click it because that event listener has been removed now the last thing I want to show you before we make this actually function and clear these items is that we can trigger an event programmatically so if I wanted to have my script actually do the click instead of coming over here and clicking I can do that so I’m going to actually use set time mode again because I want this to happen after a certain amount of time I’m going to comment this set timeout and once again we pass in a function and also the length of time we’ll do five seconds and I’m going to take the clear button and then from here I can do dot click like that okay so if I save that and then we just wait five seconds there we go we see the the alert box okay so we have this this event to this click event and here we’re waiting five seconds and then we’re basically clicking this just from within our script rather than coming over to the browser and clicking the button all right because there might be some cases where you need to do that where you need to actually fire off an event from um you know from your script so now what I want to do instead of just having this alert clear items is make this actually work or we click clear and all of these go away so what I want you guys to do is pause the video and see if you can do it and see how many different ways you can make that happen just for from what we’ve learned so far there’s there’s many ways you could do it so just pause the video and see if you can do that all right so the the easiest way would be to just take the uh not the clear button we need to have the the unordered list so we’ll say query selector and we’ll select the uh unordered list actually I’m going to put this in a variable let’s say item list okay now when it comes to setting these in variables it’s all preference if you’re just using it once in one function then I mean I would probably just use document query selector and not put it in a variable if you’re using it a bunch of times in your function then do something like this if we’re using it a bunch of times in the script then put it at the top you know in the global scope but different people have different preferences so what we could do is simply take that item list and set the inner HTML to nothing that would be the easiest way to do this clear it all right it isn’t the most performant but you’re not even going to notice a difference because this it’s such a simple task so that’s the first way of doing this second is to bring in the the actual list items so we’ll say items and we can set that to item list and then use Query selector all and select all of the list items and then we could Loop through the list items so items dot we could use a four each and that’s going to take in function we’ll say for each item then we want to do an item dot remove okay so if I do that I click clear they’re all going to go away all right and then the last way I want to show you is using a while loop and I I guess this is the most performant way to delete multiple items like this so we’ll say while it’s it’s a it’s a way that I didn’t really use before a little while ago so we can say item list and then we can use the first child property to just check to see if there’s a first child if there’s a first child that means that there’s there’s a list item and then we can take the item list and use remove child let’s say remove child and then we can pass in the first child with item list Dot first child all right so we’re basically checking for the first li if it’s there then we’re going to remove it and it’s going to do that until there’s no more children and that just fired off because of this let me just comment that out okay so I click and they go away all right so that’s it in the next video I want to start to look at some other Mouse events other than just click okay so now we’re going to get into some of the mouse events that we have that we can listen for and we’ve already looked at click but there’s many others as well so I’m going to just pick something on the page to assign these event listeners to I’m going to use the logo so I’ll say document dot query selector and I’ll just select the IMG because it’s the only IMG on the page and then I’m going to put all my event listeners at the bottom of the page which is my preference if I have my event listeners hooked to a function I like to put the functions up top and the event listeners at in the bottom so let’s do a click just so just to be consistent and have all the mouse events I know we’ve already looked at it but we’re going to say add event listener and we’re going to listen for a click and then we’ll have a function called on click all right and then we’ll create that function up here I’m going to use Arrow functions just to keep them shorter so I’ll say const on click and then I’m just going to do a console.log and say click event all right so if I come over here to the logo and I click I’m going to see click event so the next one I’m going to show you is double click now what we call the function like right here I can call it anything we’ll call this on double click this is is where you need to be specific so double click is DBL click and it’s all lower case it’s not like this right if you if you’ve used jQuery before and used events there it was camel case but in this case it’s going to be all lower so let’s copy this down and we’ll say on uh double click then let’s say double click event so now if I come over here and I if I click once I get click event if I double click I’m still going to get my my two click events but it’s also going to fire off the double click event all right and just to make this a little more fun let’s actually put some curly braces here make a code block and let’s have it do something else so I would encourage you if you’re just learning this stuff I’d encourage you to to just create events and just do some weird stuff you know like maybe we can take the body uh background color and change it so we’ll say style Dot uh background color and we’ll set that to purple so now if I come over here onto the logo and I double click we get a background of purple and maybe we want to toggle it so what we could do is put an if statement around this and say if it’s not equal to purple then we’re going to make it purple and we’re also going to make the text White so go like that and then set the style color to white else because we want to be able to toggle it so else then we’re going to set the background to White and we’ll set the we’ll set the text color to Black all right so now if I come over here and I double click changes the background in the text color I double click again it goes back to White and I can toggle it right because we just we have an if statement we’re checking that background color all right so I mean I know that’s kind of pointless and stupid but it helps you learn so I would encourage you to just do stuff like this as you’re learning all right the next I know that was kind of a tangent but the next one is to if you want to right click and the event is not called right click it’s called context menu because that’s what it usually does is open up a context menu but I’m going to call the function here on right click and then I’ll just um we’ll grab that and let’s change this to on right click and we’ll say right click event and again if you want to do something else other than just a console log you can but you’ll see now if I right click the context menu opens up but it also shows me the the console log okay the next one is the mouse down and mouse up so let’s do mouse down and then we’ll call this on Mouse down now oh we need to create our function say mouse Mouse down event and we’ll call this on Mouse down okay so what this pertains to is when you when you take your mouse and you just click and hold see I’m holding the the the left button down right now that’s the mouse down okay when I let go then it’ll say click event because the click consists of down and up a mouse down is just when you hold it down because you might have something maybe you’re creating a game where you like click and drag or something like that and you want to have something happen when that as soon as that mouse goes down and at the same time you can also have a mouse up so let’s say on Mouse up and we’re going to listen for Mouse up and we’ll just copy that up on Mouse up and Mouse up alright so now if I come over here and I click and hold I can see the mouse down event when I let go we’re going to see The Click but we also see the mouse up okay so most down Mouse up next one is wheel so if you want to have an event on the mouse wheel and the event is is called wheel so bring this down and let’s say on Mouse wheel okay so now if I just if I scroll and I’m not over that the the logo the the item with this that this is on then it’s not going to do anything down here but if I come over it and I scroll now we’ll see the mouse wheel event and it’s going to fire every time I do a little you know a little scroll or whatever so those are are the events for the buttons now we also have events for hovering there isn’t an actual hover event that I know that for me back in the day when I learned JavaScript I also learned jQuery at the same time which I wouldn’t recommend and there’s a hover event in jQuery but with JavaScript you have Mouse over and mouse out so let’s say let’s copy this down and let’s say mouse over and then we’ll say on Mouse over and then let’s copy this down and say mouse over event on Mouse over all right so now you’ll see that when I go into the logo that Mouse over event fires off okay if I come out it doesn’t do anything if I go back in again so every time I go in then it’s going to fire that off now the out does the opposite so let’s say on Mouse out and the event is called Mouse out and out all right so now if I go in I get mouse over if I come out I get mouse out all right so that’s how that works and then the last couple I want to show you have to do with dragging so let’s do we’ll get more into drag and drop later but the first one I want to show you is drag start so we’re going to say on drag start and the event name is drag drag start oops and then let’s go up here and copy that down we’ll call this on drag start drag start event okay so now what I’m going to do is come over to the logo I’m going to click and hold and then move it okay so you see that it only fires off when I click and I drag it it only fires once it doesn’t like keep going when I’m when I’m holding it and moving it around that’s the drag event so that’s what I want to show you next so if we do let’s say on drag and just drag and then we come up here and just say on drag and drag events so now as soon as I grab it and I pull it’s going to say drag star but as long as I’m holding on to it even if I don’t move barely it still is just going to keep firing off and the faster I go the faster you know the event is going to go off so that’s drag and then you also have drag end for when it ends so let’s say on drag end and say drag and drag and all right so now if I grab it so we can see drag and then when I Let Go we should get that drag end oh I put I did camel case here so if I let go there we go drag end event so it’ll just keep dragging until I let go and then we get the drag end all right so those are Mouse events in the next video I want to before we move on to like keyboard events and stuff I want to look at the event object so there’s actually an object when we fire off an event that we can get as uh as a parameter here that we can use to to get all kinds of information so I want to look at that in the next video all right guys so in this video I want to take a look at the event object that’s available to us when we add an event listener and then we run a function so these right here are just some of the properties on the event object that I want to take a look at we’ll get to that in a second but first let’s go ahead and take an element from the Dom let’s just do the logo again so that’s the image and I’m gonna add an event listener onto that so logo dot add event listener we’ll just use a click event and then I’ll pass in a function here now these functions that we pass in can take in an optional event object and you might see it as e you might see it as event you might see it as EVT e is usually what I use it’s just preference but it could it could technically be anything and then let’s just do a console log of that event object so now if I come over here and I click on the logo we’re going to see this in the console so this is the event object with a bunch of different properties and methods on it okay and these these are all in here but it’s not all of them I’m not going to go over every single one right now some of these you just will never use anyway now this doesn’t matter if you pass in an anonymous function like this or if we create a separate function like let’s say function on click so even if we do it this way we’re still going to have access to that event object so what I’ll do is just replace let’s replace this with that named function of on click and if I click on the logo we get the same thing all right now the first two that I want to show you are Target and current Target so Target is the element that triggered the event all right so basically the element that you click on so let’s go ahead and log e dot Target in this case when we click on the logo we’re going to see the image tag because that’s that’s what we clicked on now the current Target is the element that the event listener is attached to now in this case these are the same right so whether I do current Target or if I do current Target so if I do that I’m going to see image twice because it’s the same thing right it’s I clicked on the image and the event is also attached to the image now it can be different I’m going to show you that in a second but I just want to mention that you can use this e dot Target or current Target most of the time you’ll probably be using Target but you can use this to do certain things to that element so for instance I could take e dot Target and then take the style and change let’s say the background color and set that to Black so if I click this now you’ll see that the background turns black so if you need to access the event that’s clicked on you can use e dot Target and you can do anything to it as if it were just an element you brought in with query selector all right now as far as the difference here I want to show you I want to show you where it would be different so if we put on the body just document.body and then we add an event listener right so add event listener and we do a click event and then we have a function and then I’m going to copy both of these console logs here and paste this in now if I click on let’s say this this list item right here if I click on that oops I forgot to pass in the the event object if I click on that you’ll see I get two different things here because the the event is put onto the body and that’s what current Target is it’s whatever the event is attached to the Target is whatever I clicked and then in this case I click the LI which is in the body so basically what happens is events bubble up if I click on the list item that event bubbles up to the to the parent which would be the UL and then bubbles up to that pattern and that parent all the way up to the body up to the HTML and I’m going to go over event bubbling soon but that causes us to get two different things for Target and current Target if we put a listener on something like the body when we put it on the image there’s obviously nothing is is like is nested inside of that that would click on we’re clicking on the image and that’s where the event is but there is a difference between those two all right so let’s look at some of these other ones we have type so I’ll uh let’s see I’ll just comment these out and let’s console log e DOT type so now if I go and I click on the logo the type is a click so that’s that’s the type of event that was triggered okay so if you want to access that the timestamp so I guess we’ll just copy that down and let’s say time stamp if I click on it that gave me undefined that’s because it should be an uppercase s okay so it gives us a time stamp and that’s going to change obviously whenever I click on it but if you need to access that for some reason then we also have these positioning coordinates so client X and client y this is the X and Y position of the mouse click relative to the window all right so let’s try that let’s uh let’s do e dot client X so the x-axis is always going to be horizontal okay so it’s from right to left and then Y is going to be top to bottom so if we save that and let’s click on the corner of this this image right here and you might get something slightly different but what we get is 27 and 58. so what that means is my cursor my my arrow when I click is 27 over from the left on the x-axis and 58 down from the y-axis if I move down a little bit you’ll see now I get 26 for the X and I get 105 for the Y because I’m further down okay so that’s what that those coordinates are now we have some other ones as well like offset X and offset y that’s going to be the mouse click relative to the element all right so what I’ll do is um let’s copy these and then what are we looking at offset so we’ll take these and change that to offset and now if I click in the corner here I get 10 and 11 so I’m slightly over to the left and down if I go up a little bit and over to the left 3 and 8 if I come way down here to this corner 42.53 so it’s the coordinates of where I click within this element okay not from the page like the client but the offset is going to be within within that element then we have the page X and Y which is going to be the position of the mouse click relative to the page okay not the window but the page which is going to be very similar so uh if we were to let’s go let’s change this and this to page and if we come over here and click if I click Like right here it’s going to be from the page you know from the the y or the x is 29 and the Y is 61. now if I make this bigger to where this is pushed way over and I click now you see we get 503 on the X so there’s a lot of space right here and still 62 here that that’s not going to change unless I resize the browser the other way all right so that’s getting the page now you can also do the screen there’s a screen X and Screen Y and that’s going to be your entire monitor so if we were to do that and this is going to be different depending on the size of your screen I have a Ultra wide so the x is going to be pretty large so if I do that so we get 366 from the top and 2916 from the from the left all right so and there’s others those other properties on here but I’m not going to go over every single one right now let’s see I wanted to talk about the method prevent default that’s something that you’re going to use quite a bit when you’re dealing with forms and what that does is it stops the prevent default of the behavior and with a form when if you’re if you’re dealing with front-end JavaScript for validation or maybe you’re making a fetch request or whatever it might be and you don’t want the form to actually submit to the page then you would use prevent default okay you could even use it on a link so if we come over here to the HTML and they’ll just put a temporary link somewhere in here all right so let’s just say we have a link to say Google Google and save so right now if I click on that obviously it takes me to Google but let’s say I want to put an event on that link and I want to stop that that behavior of bringing me to google.com so I’ll say document dot query selector and it’s the only link on the page so I’m just going to use a and then let’s add an event listener oops let’s say we want a click event and then we have our function pass in our event object and then instead of going to the page I want to stop it with prevent default which is a method so we want our parentheses okay and then let’s say I just want to have a console log instead and just say link was clicked so if I save that now and I come over here and I click the Google link you’ll see it doesn’t take me anywhere because of this it’s it prevents the default behavior and then it will do whatever JavaScript I have underneath okay so like I said that’s really common when you have when you have a form that you don’t actually want to submit to a page because you’ll see it actually submits to this page you see how that changes to the the spinner you can stop that with event e dot prevent default which we’ll be doing quite a bit throughout the course now some of these values can be dynamic like the the client X client y if we have let’s say a drag event then that will constantly change so let me just give you uh give you an example here so I’m gonna see we’ll just add another event listener to the logo let’s say logo dot add event listener and this time I’m going to listen for a drag event remember we looked at that in the LA I think it was yeah the last video and then we’ll do on drag oops I don’t want to do that so we’ll create a function here called on drag and we’ll pass in our event object and then what I want to do here we could console log but let’s go ahead and add it to the page so we’ll select let’s say query selector and we’ll select the H1 and then let’s set the text content and set it to some back ticks so a template string and then we can say we’ll say x and then we’ll give the x value by putting in a variable or a JavaScript expression here of e dot client X remember because we have access to that event object so we can use that for anything all right then we’ll do y and let’s put in here e dot client y so now if I save and then I click on this and drag it you’ll see that the H1 now changes to the X and Y values so that’s how you can create really Dynamic stuff within the browser like games and and so on is tracking positions and using events but this is what I mean when I say just try out like stupid little things like this which obviously doesn’t make much sense you wouldn’t have this in a real project but it gives you practice on everything really creating events selecting items or elements using the event object whatever okay so that is the event object we’ll be using much more of it throughout the course in the next video we’re going to look at some keyboard events all right guys so now we’re going to look at some keyboard events we’re also going to look at certain properties on the event object when we use these keyboard events and the element that I’m going to work with is this item input right here so when we type in here we want to basically detect these keyboard events and there’s three main ones that I’m going to show you key down key up and key press so let’s start off by bringing in that input I’m going to call this item input and I’m just going to use get element by D just to switch things up a little bit because it has an ID of item input item Dash input all right so we have this element and now I’m going to take that item input and add an event listener onto it and let’s listen for the key press event and when that fires off then we’re going to run a function called on key press all right we’ll come up here and let’s create a function I’m just going to use an arrow function and we’ll say on key press and remember when you use an arrow function if you only have one parameter here you don’t need you don’t need parentheses around it although my editor will add them automatically when I save but let’s go ahead and just console log here for now we’ll just say key press so we know when that’s fired off and I’m going to go in here I’m going to just hit any key and hold it down so hit the letter K and you’ll see it it fires off if I Let Go nothing else happens it’s basically as when you tap any key and it doesn’t matter if you just tap it quickly or hold it down it fires off that event just once all right now the next two key up and key down let’s comment this one out and let’s look at let’s look at Key up first so we’ll say on key up it’s the key up event and then I’m just going to copy this down say whoops on key up and key up okay so now what I’m going to do is again just just hit a key and hold it and nothing happens yet but when I release then that fires the key up event all right and that function gets called so when you release is when this is this event now let’s go ahead and do the key down so key down and I’ll just whoops that’s not what we want I want to copy this down and we’ll call this on key down key down okay now I’m going to choose a key I’ll just do the letter H and I’m going to hold it down now notice it fires off but it keeps firing off as I’m holding it down until I release and then it stops so that’s the difference between key press and key down key press is basically just it as if you were to tap it once where key down it’s going to keep going if you hold it down now there’s a couple properties on this event object where you can get the key that’s pressed because in many cases you’re going to need to know that let’s say you’re creating a game where you can hit the arrow keys and you can move something in different directions so obviously you need to know what what arrows which keys are being pressed or you might simply have an input field without a submit button and you want to know when they hit enter so that you can do something so there’s many cases where you’ll need to do this so what we’re going to do is first of all let me just put the comments in here so this there’s actually three we can use there’s key there’s key code and there’s code all right now key is probably the easiest however there are some older browsers that don’t support this um I think you you’d probably be fine using it but you might want to use another one in combination or instead of it but let’s just do a console log here of e dot key so I’ll just type in let’s say B so you can see it’s logging in the console whatever I’m typing and you could do whatever you want with this like we could say uh document Dot I’m not going to keep this but just to show you real quick if I select the H1 and then we could set the let’s say in our text equal to e dot key and now if I type in here b r a d it’s gonna it’s gonna replace it it’s not going to append it we could have it appended if we wanted to but it’s just going to replace with whatever I type all right so again just something kind of cool you can experiment with but let’s get rid of this and I just want to show you if you want to test for a certain key what you could do is you could just put this in an if statement and we could say if key equals let’s say enter capital E enter and then we want to do an alert and we’ll say you pressed you pressed enter all right now in this case if I hit enter it actually is going to submit the the form to the page however alerts are they’re blocking they’re blocking events so it will fire the alert before it actually tries to submit so if I hit enter you’ll see that I get the alert if I type anything else it doesn’t until I hit enter all right so that’s key now for key code it’s a little bit different it’s going to give you an actual number a key code so I’m going to paste this link in here and this is a link to a page that will give you the key codes so you can see like enter is 13 shift is 16. so every key on the keyboard has one of these codes these key codes so if I wanted to for instance check for enter I could say if and then say e Dot key code so if e key code is equal to the number 13 then we’ll just same thing we’ll just alert and say you pressed enter and I’m just going to comment this one out all right so if I save that I type in here and I hit enter you can see that’s another way we can test it and then we also have code so for this it’s going to look like let me just we’ll console log e dot code so if I hit like the letter F it says key f key D if I hit the number one we get digit one so of course if we wanted to check for that we could say if and let’s say we want to check for if we hit the number one so we could say equal to and then the string of Digit one and then we’ll just we’ll do a console log and say you pressed one so now if I hit in here if I go two three four but if I hit one then we get the console log all right now there’s also a repeat property and you’re gonna usually use this on the key down because what it does is it it lets your script know if you’re holding a key down or not all right so if you just tap a key it’s going to be false if you hold the key down then it’s going to be true so what we can do is let’s just do an if here and we’ll say if e dot repeat and that’s going to be true or false so we can just pass that in then we’ll console log and we’ll say you are holding down and then I’m just going to concatenate on that e dot key so now if I click in here and I just tap let’s say the letter L you’ll see that nothing happens in the console however if I if I hit and hold l we get you are holding down L because that repeat property is true as long as I’m holding a key down so you can really just tell like whatever whatever the user’s pressing as well as how they’re pressing it you can also test to see if they’re holding shift or control or alt so let’s come down here and I’m just going to console log these so these are properties we have shift key control key and ALT key so let’s console log and I’m just going to put the text shift and we’ll do shift colon and then I’m going to just concatenate on the shift so shift key property all right so now if I come over here if I just hit the letter D we get shift false if I hold shift and hit D we get shift true okay so that you can tell if they’re doing these combinations same thing with control and ALT so if we say um what is it Ctrl so control and then we also have alt which would be option on a Mac so this will be ALT key all right so come over here and I’ll do just hit L everything’s false if I do control L you can see control is true if I do option or alt L true so you can tell that the key combinations and you can you could do an if statement here as well and of course you could say if e Dot say e dot shift key and we want to check if let’s say e dot key is equal to K and then we’ll just do a console log here and say you hit shift plus k so now I’m going to come in here and I’m going to hold shift and hit K it says you hit shift plus k all right so those are keyboard events along with these different properties you can use to to figure out which key is actually being pressed all right guys so now we’re going to actually build a little project using the the key code information that we learned in the last video so this is actually a production application at toptel.com developer key code and it says press any key to get the JavaScript event key code info which is the stuff we looked at in the last video so I’m just going to hit a random key I’ll use the letter L and what it’s going to give us this 76 this is actually the event dot key code remember we have a number for every every key and then down here you can see what you get for event dot key which would be L you have event dot code which would be key L we’re not going to do these other things which you could because these are also on the event object but what I want to do is kind of recreate this application and just show the event dot key the event dot keycode and the event dot code all right now what you’ll have in the starter file is simply the HTML and CSS if I hit a key nothing’s going to happen right now because it’s just HTML and CSS now this is actually from my 50 projects in 50 days course however in the course we did it kind of the quick and dirty way where we just used in our HTML and then set these three basically these three divs okay I’m going to show you that way but I’m also going to show you a better cleaner more performant way where we actually create each of these key elements in the Dom and then we insert them and we’re going to be using a 4 in loop we’re going to be using an object we’re going to be you know doing stuff we’re going to use pretty much everything we’ve been talking about up to this point so I think it’s a good project for this point in time now if we go to the HTML you can see I just have everything hard coded right and there is some styling just some very basic styling here I didn’t want to go through the CSS or type out the CSS but just a background color on the body and then each of these boxes are going to be a div with the class of key so I have the border the background and then we have a small tag which is going to be each of these so if we look at our HTML each of those those titles are in small tags okay but what we want this to do is be dynamic so that this changes this changes and this changes based on whatever key we hit now if you want to pause the video and try this on your own I would encourage you to do that but it’s understandable if you know if you’re just learning this stuff you might not be able to do that just yet so and again I’m going to show you two ways of doing it the first way is is really simple but I would actually recommend the second way so let’s say I’m just going to call this method one of doing this and there’s so many different ways you could do it so we’re going to take what I’m going to do is just listen on the window for an event all right because I don’t want we’re not going to have a specific element where you push a key like we did in the last video with the input form as long as it’s on the window then we want to fire this off so let’s say window dot add event listener and we want to listen for a key down event and then I’m going to call a function actually for this one I’ll just put the function right in here and I’ll use an arrow function so we want to pass in our event object and then what I’m going to do is take the insert element this right here and pretty much just create all this HTML but with have having this Dynamic these three items here these should be all com they should come from those those key code properties so let’s uh I guess yeah we’ll just bring the insert in right here so let’s say insert equals document Dot and we’ll use we’ll just use get element by D and insert and then I’m simply going to take insert and just edit the inner HTML so I’m going to set that to some back text and then all we really have to do is bring in this stuff as a template so I’m going to just grab these three divs with the class of key and cut those and for now as far as when you just come first come to the page we’ll just have a message that says press any key to get the key code okay so when we come to this to the to the website it’ll just show us this all right and then I’m gonna just paste in those three divs here and you might just have to kind of format this a little bit to uh to look a little better so we’ll just push these over all right now we just want to replace these three so the first one is going to be the E dot key so let’s simply replace that with our syntax our dollar sign curly braces and just say e dot key and then we’ll come down here and replace this and make this Dynamic so this will be e Dot key code and then this one will be whoops that should be money sign this should be e dot code all right and that should actually do it and if I come over here and I hit let’s say the F key you see I get f for the the key property 70 for the key code and key f for the code if I hit W if I hit n if I hit enter if I hit the the digit one now the one thing that you want to look out for is with the space so with the space button the key is actually just an empty string or a space in the string so what we can do here is just say right in here we’ll say if the uh we’ll we’ll have a condition so we’ll say if this is equal to a space like that then let’s just have the word space else then we’ll show whatever the key is so now if we hit space now space will get put in there instead of just an empty string I shouldn’t say an empty string but a space all right so that’s kind of the easy quick and dirty way of doing it and there’s nothing wrong with this I’m I’m not like one of those sticklers that thinks everything has to be perfect this works just fine but I do want to show you an alternate way of doing it as well so let’s go ahead and just comment this out and then I’m going to come down here and we’ll say method two and this is going to show us not just we’re going to touch on a lot of things that we’ve talked about so far so again we’re going to add on the window object we’re going to add an event listener and we want to listen for our key down and then I’ll put this in a separate function let’s call it show key codes if you want to keep it in uh you know just a regular Anonymous function that’s fine oops we definitely don’t want those so let’s come up here and let’s say function and show key codes okay we want to pass in our event object and then we want to select the insert again so I’m just going to grab that okay so we have our insert that’s what we’re obviously where we want to insert these Keys into and then the way that I’m going to do this remember there’s so many ways to do the same thing but what I’m going to do is create an object kind of a map I could even use a JavaScript map but we haven’t gone over that yet so let’s say key codes set that to an object literal and then for the key I want to use you know e dot key e dot key code Etc but since there’s a DOT we have to if we want this to work as an object with key value pairs we have to put quotes around that okay because that’s that’s the key it’s the title the actual key is going to go in here so e dot key now we do want to test for space again so basically we can do this same thing that we did right here so I’ll just put that in there it’s just going to test to see if it’s a empty space if it is it’ll just replace it with a string space so next we want the key code property so for the for the title here we’ll just say key code make sure you put quotes around that and the value is going to be e dot key code which will be the actual value and then we also want e dot code the value for that is going to be e dot code so what we’ll do now is let’s just do a console log of key codes and see what that gives us so if I come over here and we open up our console and if I just type something in I’ll hit the letter F so now we’re going to get an object that has our key our key code and our code if I hit the enter and so any key it’s going to just give us this object now I want to actually Loop through this object and remember to do that we can use a 4 in Loop because the idea here is to Loop through them and create one of those divs but one of these divs for each of these all right so I did with the class of key for each of these we want to create that we want to insert the text node which will be the whatever the value is also will create a small tag and append that into the key and add a text node to small as well so we’re just we’re basically like it we’re building it up okay we’re building it from scratch rather than just replacing the HTML so to do that let’s say four and what we want to have in here is let’s say let key in key codes which is the name of the object and I want to start to build up our our elements so let’s say cons div and we’ll set that to document Dot and we want to create a new element so create element we want to create a div element okay and then let’s add the key class to that so we’ll say div dot class name and we’ll set that to key right now we also want a small element so I’m going to create that as well say small equals document Dot and then create element and that’s going to be a small tag all right now for the text for that we want to put in here I’m going to create a variable for let’s say key text okay so this is basically um uh let’s see it’s it’s it’s this right here so what we want to be in the small text okay so let’s say key text and set that to document Dot and we want to create a text node and then pass in here just key okay because remember when we say let’s key and key code that pertains to this and this is a little confusing because when you look at an object it’s a key value but these are we’re also looking at Key Properties so it is a little confusing you could call this something else if you want now we also want the text for the actual key code that comes from the event object so that will be the value right it’ll be this the value of the object this is the key this is the value so let’s call this one we’ll call this one value text and then what we want to pass in here to get the value we can say key codes and then use the index of the key right so we could say key codes and then in Brackets put any of these and it will give us the value and that’s going to go in here now we just want to append the text nodes to the elements so let’s take the small element and let’s say a pen child and we want to append into the small the key text which is like the title which is this right here okay then we want to put the actual value into the key div so let’s say div Dot a pen child and we’re going to add in here the value text all right and then we need to append the small element into the div element so let’s say div a pen child again and we want to pass in here small and then the last thing to do is to add the div to the Dom so we’re going to take that insert element and we’re going to append child and then we’re going to put the div in there all right so let’s try that I’m going to save come over here I’m going to hit just uh we’ll hit the letter k now a couple things one we don’t want this to show two if I hit another key it just adds to it right every time it’s just going to keep adding so what I’m going to do is just clear the inner HTML of insert before we do anything so we’ll say insert Dot in our HTML and we’ll set that to just nothing okay so now when I hit a key let’s say the letter L the the welcome message goes away also if I hit another one it replaces it okay because what we’re doing is clearing everything before we actually before we go on and do any of this all right now obviously this is much easier than doing this but here we created you know we looped through what we need the data here and then we just created a new div element for each one and then inserted it into the Dom so in my opinion this is a better way of doing it but again I’m not bashing this this way either alright so hopefully you enjoyed this little project and we’ll do more of these throughout the course as we go all right guys so now we’re going to look at input events and how you can get the values for a form input and just for this video I’ve added a couple additional inputs so we had the text field right here which is this input and then I added this select list so just for a priority like a shopping item priority and basically I just have an ID of priority input and each option has a value 0 1 2 3 and then I also just added a check box here so we want to be able to tell if this is checked or not now if you’re submitting a form to some kind of backend technology like like PHP or node.js you would probably have like an action in your form and then submit to a page and then to access the value from the back end you would usually use this name attribute so whatever you have assigned to that now in front-end JavaScript it’s a little bit different you would not have have it submit to a back end because you would basically take over in your JavaScript and and do whatever and in that case you need to be able to get these these inputs all right so let’s go into our script JS here and I’m going to bring in those inputs so let’s say item input and I’m just I’m going to use document dot get element by D that has an ID of item Dash input okay and then I’ll just copy this down a few times the next one has an ID of priority input that’s going to be the select list so we’ll call this priority input and then this one here let’s call it check box and that has an ID I believe of check blocks and then I’m also going to select the heading the shopping list heading just so we can use it to output something if we need so we’ll call this heading and that I don’t think it has an ID so I’m going to use Query selector on that one and just select the the H1 all right so let’s start off with the text input or the item input so we’ll say item input and I’m going to add an event listener onto it now there’s a few different types of events or different events that you can use to be able to get the value and work with this input so you may see key down used so I’ll say key down I’m going to create a function called on input and run that so let’s say function on input pass in our event object and then for now we’ll just console log input so now when I come in here and I start to type you’ll see it’s going to fire off every time I hit a key every time I type in the field all right now you can use key down but I would suggest not I’d suggest using the input event which in this case will do the same thing it fires off whenever we type in but you can also use this on other other input Fields like a select list like a key down isn’t going to work for a select list because you’re not pushing any key so I would suggest using input for your your most your input Fields now to get the value remember we have we have access to e dot Target which will give us the actual Target so if I start to type every time I hit a key it gives me the Target element which is the the input tag itself now of course we don’t want that we want the value that’s typed in so there’s a value property that we can access with e.target.value so now if I start to type in here you’ll see that it’ll give me whatever is in the the form field and it’s giving me the entire input it’s not just giving me the key that I press like we saw in in the LA or the video before a last in fact if I were to do e dot key here shouldn’t even yeah it gives me undefined because it’s an input event if I do like a key press event then I can get the individual keys but see how it’s not like accumulating it’s not appending on to the last because it’s just giving me the key with this e dot Target value it’s giving me whatever is in the input so that’s what you want to use in this case all right now before I move on to the next input let’s just we’ll set the heading just to show you we can take this heading and let’s take the text content and let’s bind whatever isn’t whatever is typed in that form which will make this Dynamic where we can type and it gets put into the heading in real time which is which is cool but not very useful I mean it might be useful in some cases um but yeah and obviously that’s only on your own machine and that’s only you know in your browser and if you reload that’s going to come back now the next thing let’s look at the priority input which is the select list so let’s change this to priority uh priority input and then change actually no I’ll just leave it like that uh oh I spelled those wrong okay so now if I select something here what’s going to happen is it’s going to fire this input event and this is going to run and I can still get the target dot value with this with the select list so if I choose 2 you’ll see now the H1 is actually outputting two three so whatever I choose and it’s always going to be the value obviously you know in the HTML it’s not going to be what you put in the middle here that’s just for the user to see this is the actual value that’s being chosen okay now you can use input for this but there’s also a and that’s probably what I would recommend but there’s also a change event that you can use on a select list as well which will do the same thing in this case okay but uh I would I I’d suggest using input but I’ll just leave it at change just so it’s there and you know you can come back to it now check boxes work a little differently instead of using e.target.value there’s actually an uh checked E dot Target dot checked so what I’m going to do is on the check box say check box and we’re going to listen for an event so let’s listen for um we’re going to use input here but I’m not going to do the on input I’m going to do on checked okay and then we’ll come over here and we’ll say function on checked pass in our event object and then I’m just going to console log here e dot Target Dot checked okay now when I select it you’ll see that it would get true if I unselect it then we get false so it’s as simple as that to get if the check box is checked or not so what we could do is we could take the let’s say heading and we’ll say text content and let’s say if the check box [Music] um how should we do this we could put this in a variable we could say caused is checked and set that to that value and then say if is checked then we’ll say checked else we’ll say not checked so let’s save that and then I’m going to go ahead and check it and now you’ll see the H1 changes to checked uncheck it we get not checked all right now there’s two other input events that I want to show you and that’s focus and blur which has to do with clicking in and activating the input and clicking out of it and unactivating so clicking in it is going to be focus and and clicking outside will be blur so let’s use this on the item input so what I’ll do is change Let’s do let’s do Focus and I’ll change this to say on Focus and we’ll actually just copy this down and let’s say on blur and let’s change that to blur and then we’ll come up here and create a function called on Focus and usually the reason that you would use this is like if you want to have a specific outline or something like that and I’ll just do a console log here first and say input is focused right so oh I have to create my own blur as well so we’ll say function on blur and we’ll say do a console log and say input input is not focused okay so if I click inside I get input as Focus if I click outside I get input is not focused but again usually what you would use this for is for styling so I could say item input and say Style and we’ll say outline style and let’s set that to solid okay and then we’ll do let’s copy that down and then in addition to outline style let’s do the outline with and we’ll set that to say one pixel and then we can also set the outline color and let’s set that to Green and then on blur what I’m going to do is just set the outline Style so outline style we’re going to set that to none all right so now if I come over here and I click in here now you see I get this green outline if I click out of it then it goes away we can change it to red okay so it’s it this is good for for just visual effects and UI um and this is what I mean earlier when I said you know you’re not going to use JavaScript just to change the style of a web page a static web page that doesn’t do anything but you use it to make your page Dynamic to have things happen to have styles change and borders at it and stuff like that um but yeah so that’s focus and blur now in the next video I want to look at form submission so when we how do we you know catch when we submit this because if I just submit it as is it actually submits it to the page which you could you know you could have it submit to like a backend PHP page or something like that but of course we’re dealing with front-end JavaScript so I’m going to show you how to prevent it from doing that and then doing what you want all right guys so now we’re going to look at form submission in the last video we looked at events on specific inputs so that you could do something when something in that input changed now we’re dealing with actually submitting the form now as I mentioned in the end of the last video if you’re working with a back-end technology like let’s say node.js or PHP or something like that then your form tag may have an action that submits to you know some file on your back end it could be node.js it could be PHP or whatever it might be but we’re dealing with front-end JavaScript so what we want to do is go into our script file and let’s uh let’s get the form and I think the form has an ID yeah it has an ID of item form so let’s say const and we’ll get our form we’ll set that to document Dot get element by D and it has an ID of item Dash form all right so now we just want to add an event listener to that form and we want to listen for the submit event and when that happens we’ll have a function called on submit fire off so let’s add that let’s say function on submit pass in our event object okay now I’m just going to do a console log here and we’ll say submit and I’m going to open up the console and by the way I add I still have the priority select list here because I want to use that as well but you’ll see if I put something in here and I click add item watch down here so notice how it just flashed submit real quick that’s because it did do the console log but then it’s submitted to the actual file if you don’t have an action attribute on your form where you’re submitting to some kind of backend then it’s going to submit to this the same page all right now to stop that you can just say e dot prevent default okay we looked at this a while back this prevents the default Behavior so now if I put something in here and I click add item it doesn’t submit to the file okay it just it stops and then it does whatever I want in the front-end JavaScript which in this case is just a console log now obviously if you’re doing this you’re going to want to get the values that are being submitted to the form so there’s actually a few ways to do that I’m going to show you the first way which I really already showed you and that’s to use the the value Target dot value but there’s also a form data object that you can use as well so to use the the value what I’ll do is I’ll put the basically we have the item and we have the priority so we have two Fields so I’m going to set item to document Dot and we’ll say get element by D and that has an ID of item Dash input and then we also want the priority input and I’ll just set this variable to priority Okay so to get the value now obviously like if I console log here let’s do item and priority whoops okay and if I put something in here milk one so it’s giving me the actual element which I don’t want so we can just add on to this dot value you could do it like this where you set the initial variable to value and then print it or you can set it this to the element and then when you’re ready to use it you can then say dot value so both of these will work if I put milk one and add we get milk in one so it’s up to you on how you how you want to do this I usually do it this way but of course there’s all kinds of different use different uh scenarios now this is where you know your front end JavaScript this is where you do you’ll do some validation and you you should have both front end and back end validation if you’re submitting to some kind of backend API you should do validation here but you should also do it on the server side so whatever route you’re submitting to you want to check your form fields and and stuff like that on the server as well I’m just going to add dot value here just to be consistent all right and then what I want to do is just check let’s say if and we’ll say if item we just want to make sure it’s filled so we’ll say if item equals nothing and then we also want to check we want to do an or here not an and because we want to check either or and priority if that is equal to in this case let’s say 0 because it has an initial value right if we look at the form here select priority we don’t want this to be selected and that has a value of zero so we want to just check for that and then if if either of those are true then let’s just alert and we’ll say let’s say please fill in all fields and then we’re just going to return from that okay so if I leave both empty and I click add item I get please fill in all Fields if I just do milk and I don’t select the priority I get the fill in all fields and notice it’s not console logging these because I returned from the function here so let’s choose a priority and make sure we have that filled in and now we don’t get the alert and we get the console log so this is just very very simple form validation now I also want to show you how to use the form data object so what I’m going to do is create another function and I’ll call this on submit to and let’s have this now submit to that function and we do we still want to prevent the default Behavior and then what I’ll do is initialize a form data variable and set that to new and then form data with a capital f okay and then we want to pass in our form which we have up here so it this is in the global scope meaning I can access it anywhere else so I’ll just pass in my form here and then what I want to do is just console log that form data and see and show you what that gives us all right so if we submit this with milk Priority One and if we look in here it might not work how you how you may think we don’t just have direct access to the values like an object of values but in the Prototype you can see that there’s a bunch of methods here so if you just want to get each individual entry then you can use the the get method so let’s do that let’s set let’s say const item and we’re going to set that to our form data variable and then there’s a get method and what we’ll do is pass in the item into here all right now this item is actually the name so if we look at the input here the name so if you if you’re using the form data object you want to make sure you have a name for these the name for this one is priority so the next one just copy that down and set that to priority because that’s the name that we assigned and this is a this is a newer way of doing this and getting values so console log item and priority so now I’m going to again just choose milk choose one and add item and now I’m getting those values now we can also get all of the entries using the entries method which which is a little weird but I’ll show you how that works so let’s say const entries and we’re going to set that to our form data variable and then dot entries with parentheses because it’s a method and I’m just going to comment these out and then let’s console log What entries gives us so again I’ll choose milk one and add and what we get is an iterator so this iterator basically it allows us to to Loop through it or to iterate through it so an easy way of doing this is to use a four of so we could come down here and say four and let’s say let entry so we’ll call each entry of and then the iterator which is entries okay and then in here if I console log entry comment this one out and select milk and one so what it gives me is for each input or each item it gives me an array that has both the name and the value so if I wanted to access the value I could do let’s say entry and one because this is just a simple array with a zero index and a one index so if I do that and I submit this again then I get milk and I get one and of course you can get the title as well I should say the name so item and priority so you can get either one of those and there’s a lot more to the form data object that we might get into later but I wanted to show you at least the the basics of that but in most cases for something simple like this I mean just using dot value is fine now in the next video we’re going to get into something that’s pretty important and that’s called event bubbling so in this video we’re going to talk about something that is pretty important when it comes to handling events and that’s event bubbling so when we add an event listener onto an element that event moves up the Dom tree and if it finds a parent element that has a listener for that event it’ll fire that as well so even if we click on the the button it’ll bubble all the way up to the document okay now it’s a little hard to understand with just me explaining it so let’s I’m going to show you how that works so let’s grab the the this button right here in the form so we’ll say const and we’ll just call this button and we’ll set document Dot query selector and I’ll just say form and then I want to grab the button in the form all right and then I want to add an event listener onto that button so add event listener and we’re going to listen for a click and then we’ll just put the function right in here and let’s do an alert and say the button was clicked all right so very simple if we click that we get button was clicked now what we’re going to do is bring in the parent to that button so if we go to our index.html and we look at that button so right here this is the button that we clicked and the parent to that would be this div which is the second it’s the second div in the form so we can Target it like that I’m going to come up here and I’ll say const and we’ll just call this div and set that to document Dot query selector and let’s say in the form we want the second div so we’ll say div and then nth Dash child and pass in two so that’ll give us that second div and then what I’m going to do is add an event listener onto that so click we want to click event and then let’s just do an alert here and this time we’ll say div div was clicked all right so now what I’m going to do is come over here to just to the right of the button and I’m going to click that because that’s the parent says div was clicked but now you’ll see if I click the button I get button was clicked if I click OK I get div was clicked so what’s happening here is we’re firing off this this click event here and then it’s bubbling up and then any any of its parents that have a click event listener it’s going to fire that as well okay now to show demonstrate this even further let’s bring in the form because the form is apparent to the the div so let’s say form and set that to document Dot query selector and we’ll get the form and then I’m going to do the same thing I’ll just change that to form and let’s say form was clicked so now if I click on the form I get forms clicked if I click on the button I get button was clicked it’s going to Bubble Up div was clicked it’s going to Bubble Up form was clicked okay so we can even go a step further and say document.body and add an event listener onto that and say click and then we’ll say let’s do uh alert and say body was clicked so now if I click on the button we get button was clicked div was clicked form was clicked body was clicked so this pertains to this diagram right here where we click the button and that event is going to Bubble Up through all of its parents and anything that has a click event on it that will also get fired off now there might be cases where you don’t want this to happen because it will just kind of mess your application up so that’s where the stop propagation method comes in and that’s part of the event object so if we go back up to where we have our button let’s pass in our event object here and I’m just going to go after the alert and say e dot stop propagation okay so now if I come over here and I click the button we get button was clicked and then nothing happens after that okay so event bubbling is is really not that difficult to understand I know it does intimidate a lot of people that are getting started with with JavaScript but it’s just that it just bubbles up and if you have another click event on a parent that’s going to fire off unless you stop propagation now you should only call stock propagation if you have a reason for it for instance if we actually had a parent and child with that with the same event listener and don’t just call it for the hell of it and then there’s also a method called stop immediate propagation and this is used if you have multiple handlers on a single event and you want to stop the event for all of them but yeah so that’s event bubbling now in the next video I want to talk about something called event delegation all right so we’ve talked about events quite a bit and we know how to add an event listener onto a single element but what about when there’s multiple elements and a good example is for these list items if you want to delete these we have multiple delete buttons where we would want to add an event listener to now there’s a few ways we can do this we could basically select all of the LI tags or all of the buttons whatever it is we want to click on and then add an event listener for every single one which isn’t really efficient so this is where event delegation comes into play which is a a powerful event handling pattern so so I’m going to show you the the first way which is to basically just add an event listener on to everyone so let’s do that by selecting the list items and we’re going to say document we want to use Query selector all because we’re selecting all of the all of the LI tags all right and then what we can do is we can list through our Loop through the list items and say for each item and then just to show you if I console log here um we’re actually going to want to well no let’s add the list let’s add the event listener first so I’ll say for each item let’s add an event listener for click and then we’ll have our function here and I’m going to just console log e Dot Target so if I click on these you’ll see it’ll give me whatever list item I’m clicking on so now I can take that Target and I can remove whatever I whatever that element is whatever I’m clicking on so I can say e dot Target dot remove and we learned about the remove method a couple sections back so now if I click on let’s say orange juice goes away click on milk Oreos apples and of course this is just in the Dom it’s just in the in our browser if I reload that all comes back that’s because we’re not persisting that we’re not persisting the data or persisting those actions to any database or anything like that all right now as I said this isn’t really efficient especially if you have a ton of of elements that you’re putting a listener on instead we can use event delegation to basically add just a single event listener onto the parent and then Target whichever one we want to delete so let me just show you what that looks like so we’re going to select the parent which is the UL so let’s say document Dot query selector and we’re going to select the UL and I’m just going to comment this this out for now and we want to put the event listener on the parent so list dot add event listener and listen for click and then we’ll have a function all right so now I’m going to go ahead and just console log here and then I want to log e dot Target so I’m going to come in here and click and notice it’s still giving me the list item right I have the event listener on the UL so even if I click Like right here then it gives me the UL if I’m not clicking on the list item so what I can do is just Target the list item that I’m clicking on this e dot Target and remember Target is going to give you what you click on current Target is going to give you what the uh what the event listener is on so if I do current if we say e dot current Target and I click on the list item it’s still going to give me the UL so you want to make sure that you’re dealing with Target and we what we can do is just test and say if e dot Target dot tag name or class or whatever it is that you want to check if that is equal to in this case Li then we can just take that e dot Target which is what we click on and we can remove it from the Dom so now if I click on any one of these it just deletes them and now instead of adding multiple event listeners I’m just simply adding one and then I’m testing whatever it is I’m clicking on and then deleting that and and of course you’re not limited to just deleting if I wanted to let’s say let’s say instead of a click we do a mouse over and again we just want to check to make sure it’s a list item and then instead of removing it let’s change the style dot color and we’ll set that to Red so now if I come over here and I hover over a list item you see it will only it’ll change the ones that I hover over to red all right so that’s how you want to handle adding an event listener onto multiple elements is using event delegation now in this case we just use the list item so if I click anywhere it deletes when we actually build our project which is very soon we’re going to have to Target the button which is going to be a little bit more difficult because we have to kind of navigate to the child to the button and then there’s an icon in the button so it’ll be a little more difficult but it’ll it’ll be fun and we’ll you’ll learn quite a bit going through this project in the next video though I want to talk a little bit about some of the the events that we can use on the window and about just the window object in general all right so the window object we’ve we’ve looked at a few times and I think it was the execution context section where I showed you that that’s the first thing the execution context does is it loads This Global window object that has a ton of properties and methods and apis and also events now the first events that I want to talk about are page loading events on this window object so you’ll notice that in the HTML for this section or for this lesson I have the script tag in the head and this was something that was very common practice back in like the 2000s so I just want to show you if we if we keep the script tag in the head and then we select let’s say query selector and all I have on this page is just an H1 and and some paragraphs so I’m going to select the H1 and I’ll set the text content to hello world and I’m going to save so you’ll notice that we get an error in the console it says cannot set properties of null setting text content so what it’s saying is that this is null and the reason for that is when we put our script tag in the head like this where we’re do we’re running our JavaScript before the page is loaded and before the Dom is loaded so it doesn’t know what this is yet so a common practice would be to use the load event so we could say on window we could say dot add actually I’ll show you the the on load which was what we saw a lot of back then so window dot on load and this was kind of a hack to do window on load set it to function and then put our code in there so you’ll see if I save now the H1 is replaced and we don’t get an error anymore so by using on load we’re waiting for the entire page to load and that includes resources like images and stuff like that and of course we could use add event listener which wasn’t around back then what I’m talking about but you can use this with load as well so we’ll just put a function in here and let’s just copy that and paste that in I’ll comment that out and you’ll see that just get rid of that semicolon that does the same thing now there’s also an event called Dom content loaded so what I’m going to do is copy this and then paste it in I’m going to change load to Dom all caps and then content loaded and then I’ll save and we get the same result now the difference between load and Dom content loaded is load waits for the the entire page to load including all resources such as images where Dom content loaded runs as soon as the Dom is parsed and loaded so if I were to run both of these let’s actually you know what we’ll do is uh let’s just replace this with a console log so I’m going to say console log and we’ll say page loaded and then I’m going to replace this one with a console log and we’ll say here Dom uh what happened here let’s say Dom loaded and notice that the Dom gets loaded first obviously because the page load includes the Dom and everything else any obviously there’s no images here but any other resources that need to be loaded now if I were to do a console log in the global scope down here and we’ll just say run me if I save that that gets run before either of these because we’re not in any of these events where we’re waiting for the page to load which is fine when the script is down you know under the page down above the ending body tag but if you have to access any Dom elements from the global scope then you’re going to get an error if the script tag is in the head now the exception to this is if you use the fairly new defer attribute so if I come to the script that’s in the head here and then I add on to it defer like that and I save and then let’s come over here and we’ll take I will not take let’s just go in back into the global scope here and say document and we’ll select the H1 and then let’s set the inner text and set that to hello world and if I save that you’ll notice that it works okay so I’m not getting the error even though my script is in the head but I use this defer attribute which basically will do just that it will defer the JavaScript code from running until it can run until the pages are the Dom is loaded so this is this is pretty new I don’t know when exactly this was available but if you want to do it this way and put your scripts in the head that’s absolutely fine just make sure you use defer I still prefer to keep my my scripts down above the ending body tag but from this point on if you want to use defer and put them in the head that’s fine now there’s just a couple other events that I want to show you that we can use on the windows so let’s say window dot add event listener and we can listen for a resize okay so there’s a resize event and what I’m going to do here is I’m gonna actually take this and move this into here but I’m going to set the the text to show the size of the window so we’ll put some backticks in here and we’ll say resized resized two and we can remember we can get the inner width and the inner height on the window object so let’s say window Dot in our width and then we’ll also put the window Dot inner height so I’m going to save that and now if I resize it’s going to change the H1 to show the the inner width and inner height and you’ll see it’s just it keeps changing because that event just fires off every time the browser is resized also it stayed at 276 because we didn’t change the height if I move this console then that’s going to change the height also listen for a scroll event so this can be helpful for certain UI effects that you want to create so I’m going to add an event listener onto the window and I’m going to listen for scroll and of course you could do window dot on scroll equals a function if you want to do it like that and then let’s create a function and what I’m going to do is console log and we’ll use some back ticks and we’ll say scrolled and let’s add in here because on the window object we have access to scroll X which is the position when you’re you know scrolling horizontal and then we also have the um scroll y so window Dot scroll Y and now if I scroll down you’ll see the the x is going to stay at zero because I’m not scrolling horizontal at all but the more I scroll down you’ll see the higher that that scroll X I’m sorry scroll y value gets and we could do some cool stuff here like if you have a navigation bar at the top and you want to have it be like translucent or something when you start to scroll you can just test where that scroll y value is so in fact we could do something like this we could say if the window Dot scroll Y is let’s say greater than 70. then let’s take the document body and on the style we’ll take the color or let’s do background so background color and we’ll set that to Black and then we’ll set the color to white the text color change that to color all right if I do that and then I start to scroll as soon as it hits 70 the background turns black now it’s going to stay black because I didn’t specify anything else but I could put an else on here and then we could take this and then just change this back to White and change the text Back to Black so now if I come down I hit 70 it turns black I go back up it turns White so this is the start of learning how to create really cool Dynamic functionality or dynamic effects within your UI so what else we also have focus in blur and just to give you a quick example of that we’ll say window dot add event listener and just like you have on inputs we focus in blur it’s just when you click in and when you click out so let’s just mess around with this for a second and let’s take document Dot query selector and we’ll select the paragraph actually let’s select all paragraphs so we’ll say all and then let’s look through those so we’ll say four each P so for each paragraph then let’s say p dot Style dot color and set that to Blue and then let’s put one for blur so on blur which is when you click out of the window then we’ll set it to bla Back to Black so now if I click in here you can see the scroll thing’s still working too but you can see that they’re all it’s all blue if I click outside of the window so anywhere else then it turns black Back to Black and there’s other events on the window object as well if you want to check the mdn docs of course you can do that but yeah so that those are window events and also the the page loading events

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • JavaScript Programming: From Fundamentals to Practical Applications

    JavaScript Programming: From Fundamentals to Practical Applications

    This YouTube transcript presents a comprehensive JavaScript course designed for beginners. The course covers fundamental concepts such as variables, data types, operators, control flow, functions, objects, classes, and the Document Object Model (DOM). It emphasizes practical application through real-world projects like a notes app, quiz app, and e-commerce product page. The transcript also includes explanations of JavaScript scope, event handling, and advanced topics like constructor functions and prototypes. Finally, there are instructions for building applications like a digital clock and a form validation project.

    JavaScript Fundamentals Study Guide

    Quiz

    Instructions: Answer the following questions in 2-3 sentences each.

    1. What is JavaScript, and what are two common uses for it in web development?
    2. Describe three different ways you can embed JavaScript code in an HTML file.
    3. Explain the difference between the var, let, and const keywords when declaring variables in JavaScript.
    4. Define “scope” in JavaScript, and name the three types of scope.
    5. Name four of the seven primitive data types in JavaScript and give an example of each.
    6. Explain the difference between the == and === operators in JavaScript.
    7. Describe the purpose of control flow statements in JavaScript and give one example of a conditional statement.
    8. Explain the difference between the break and continue statements within a JavaScript loop.
    9. What is a JavaScript function, and how is it defined and called?
    10. What is a JavaScript object, and how do you access properties and methods within it?

    Quiz Answer Key

    1. JavaScript is a scripting language used to create interactive and dynamic websites. It’s commonly used for front-end web development to add interactivity, such as button clicks and form validation, and also used in back-end web development with Node.js.
    2. JavaScript code can be embedded in an HTML file in the <head> tag within <script> tags, within the <body> tag, or through an external JavaScript file linked using the src attribute in the <script> tag.
    3. var is the oldest and most common way to declare variables, with function scope. let is a newer keyword that declares block-scoped variables, meaning they are only visible within the block in which they are declared. const is used to declare constants, which are variables that cannot be reassigned once they are declared.
    4. Scope refers to the visibility of variables and functions within a program. There are three types of scope in JavaScript: global scope, function scope, and block scope.
    5. Four primitive data types in JavaScript are: string (e.g., “Hello World”), number (e.g., 3.14), boolean (e.g., true), and undefined (a variable that has been declared but not assigned a value).
    6. The == operator checks for equality of values after type coercion, meaning it may convert the types of the operands before comparison. The === operator checks for strict equality, meaning it compares both the value and the type of the operands without type coercion.
    7. Control flow statements are used to control the order in which code is executed in a JavaScript program. An example of a conditional statement is the if statement, which executes a block of code only if a specified condition is true.
    8. The break statement is used to terminate a loop immediately, while the continue statement skips the current iteration of the loop and proceeds to the next iteration.
    9. A JavaScript function is a reusable block of code that performs a specific task. It’s defined using the function keyword followed by the function name, parameters (optional), and the code block enclosed in curly braces. It’s called by using the function name followed by parentheses.
    10. A JavaScript object is a non-primitive data type that stores a collection of data in key-value pairs. You can access properties using dot notation (e.g., object.property) or bracket notation (e.g., object[“property”]). Methods are functions associated with the object and are accessed the same way as properties (e.g. object.method()).

    Essay Questions

    1. Discuss the importance of understanding variable scope in JavaScript and how different types of scope can affect the behavior of your code. Provide examples to illustrate your points.
    2. Explain the concept of data types in JavaScript, differentiating between primitive and reference data types. How does an understanding of data types contribute to writing robust and error-free code?
    3. Describe the various operators available in JavaScript, categorizing them by function (arithmetic, assignment, comparison, logical). Explain how operator precedence and associativity impact the evaluation of expressions.
    4. Compare and contrast the different looping structures available in JavaScript (for, while, do…while). Provide scenarios where each type of loop would be most appropriate and justify your choices.
    5. Explain the concept of DOM (Document Object Model). Discuss DOM manipulation techniques using JavaScript. What is the importance of DOM manipulation in web development?

    Glossary of Key Terms

    • JavaScript: A scripting language primarily used to create interactive and dynamic websites.
    • DOM (Document Object Model): A programming interface for HTML and XML documents. It represents the page so that programs can change the document structure, style, and content.
    • Variable: A storage location that holds a value.
    • Keyword: A reserved word that has a special meaning in the JavaScript language.
    • Scope: The visibility of variables and functions in a JavaScript program.
    • Global Scope: Variables declared outside any function or block, accessible from anywhere in the script.
    • Function Scope: Variables declared inside a function, only accessible within that function.
    • Block Scope: Variables declared inside a block (e.g., within an if statement or loop), only accessible within that block (introduced with let and const).
    • Data Type: The type of value that a variable can hold (e.g., string, number, boolean).
    • Primitive Data Type: Basic data types that represent a single value (string, number, boolean, null, undefined, symbol, bigInt).
    • String: A sequence of characters enclosed in single or double quotes.
    • Number: Represents numeric values, including integers and floating-point numbers.
    • Boolean: A data type with two possible values: true or false.
    • Undefined: A value assigned to a variable that has been declared but not yet assigned a value.
    • Operator: A symbol that performs an operation on one or more operands.
    • Arithmetic Operators: Operators used to perform mathematical calculations (e.g., +, -, *, /).
    • Assignment Operators: Operators used to assign values to variables (e.g., =, +=, -=).
    • Comparison Operators: Operators used to compare two values (e.g., ==, ===, >, <).
    • Logical Operators: Operators used to perform logical operations (e.g., &&, ||, !).
    • Operator Precedence: The order in which operators are evaluated in an expression.
    • Operator Associativity: The direction in which operators of the same precedence are evaluated (left-to-right or right-to-left).
    • Control Flow Statements: Statements that control the order in which code is executed (e.g., if, else, switch, for, while).
    • Conditional Statement: A statement that executes different code based on a condition (e.g., if, else if, else).
    • Loop: A control flow statement that repeats a block of code multiple times (e.g., for, while, do…while).
    • Function: A reusable block of code that performs a specific task.
    • Parameter: A variable declared in a function definition that receives a value when the function is called.
    • Argument: The actual value passed to a function when it is called.
    • Return Statement: A statement that ends the execution of a function and returns a value (optional).
    • Object: A collection of properties (key-value pairs).
    • Property: A key-value pair in an object, where the key is a string (or symbol) and the value can be any data type.
    • Method: A function that is a property of an object.
    • this Keyword: A keyword that refers to the current object in a method.
    • Constructor Function: A function used to create objects.
    • new Keyword: An operator used to create an instance of an object from a constructor function.
    • class Keyword: A keyword used to define a class, which is a blueprint for creating objects (introduced in ES6).
    • Getter: A special method in JavaScript that is called when a property is accessed, used to retrieve property values.
    • Setter: A special method in JavaScript that is called when a property is modified, used to set property values.
    • Event: An action that occurs in the web browser, such as a click, mouseover, or keypress.
    • Event Listener: A function that is executed when a specific event occurs.
    • Element: An individual component of an HTML document.
    • Node: A generic term for any type of object in the DOM tree (e.g., element, text, comment).
    • Parent Node: The node directly above another node in the DOM tree.
    • Child Node: A node directly below another node in the DOM tree.
    • Sibling Node: Nodes that share the same parent node in the DOM tree.
    • document.getElementById(): A DOM method to select a specific element.
    • document.querySelector(): A DOM method to select an element using CSS selectors.
    • document.querySelectorAll(): A DOM method to select a set of elements using CSS selectors.
    • element.parentNode: Returns parent element of specified node.
    • element.children: Returns HTMLCollection of an element’s child elements.
    • element.innerHTML: Sets or returns the content of an element.
    • element.textContent: Sets or returns the text content of an element.
    • element.setAttribute(): Sets the value of an attribute on the specified element.
    • element.classList: Returns the class names of an element.
    • Event Bubbling: Is an event flow model in which event flows from the most specific element to the least specific.
    • Event Capturing: Is an event flow model in which event flows from the least specific element to the most specific.

    JavaScript Tutorial: A Beginner’s Guide

    Okay, here’s a detailed briefing document summarizing the main themes and important ideas from the provided JavaScript tutorial excerpts.

    Briefing Document: JavaScript Tutorial Overview

    I. Main Themes

    • Introduction to JavaScript: The core of the excerpts focuses on introducing JavaScript as a scripting language essential for creating interactive and dynamic websites. It emphasizes its widespread use and relevance in modern web development.
    • Beginner-Friendly Approach: The tutorial is explicitly designed for individuals with no prior coding experience. It promises clear explanations, practical examples, and complete notes to facilitate learning.
    • Practical Application and Projects: A key element is the emphasis on learning by doing. The tutorial promises real-world projects (online notes app, quiz app, etc.) to solidify understanding.
    • Fundamental Concepts: The tutorial covers essential JavaScript concepts, including variables, data types, operators, control flow statements, functions, objects, and DOM manipulation.
    • Modern JavaScript Features: The excerpts touch on newer JavaScript features introduced in ES6, such as the let keyword and default parameters.
    • Emphasis on DOM (Document Object Model): A significant portion is dedicated to understanding and manipulating the DOM, enabling dynamic interaction with web page elements.
    • Event Handling: An introduction to JavaScript events, detailing how to make web pages interactive.
    • Project-Based Learning: Several mini-projects are outlined to provide hands-on experience in applying JavaScript concepts.

    II. Important Ideas and Facts

    • What is JavaScript?“JavaScript is a scripting language that is used to create interactive and dynamic websites.”
    • Interactive websites: enable user actions like “button click, submit a form, write comments, and live chat.”
    • Dynamic websites: change content/layout like “sliding effect, e-commerce website and quiz website.”
    • Why Learn JavaScript?“JavaScript is the most popular programming language in the world.”
    • Used by major websites: “Google, Facebook, Twitter, Amazon, Netflix.”
    • Vast ecosystem: “tons of Frameworks and libraries to reduce your time to create websites and mobile apps some of the popular Frameworks are react angular and vuejs.”
    • Career opportunities: “if you learn JavaScript it opens a lot of job opportunities in the software development Industries.”
    • Uses of JavaScript:Beyond front-end: “not only limited to front-end web development it is also used in backend web development mobile app development desktop app development game development and API creation.”
    • Setting Up a Development Environment:Requires a web browser (e.g., Google Chrome) and a code editor (e.g., Visual Studio Code).
    • Adding JavaScript to HTML:Inline: Within <script> tags in the <head> or <body>.
    • External: Using <script src=”script.js”></script>, linking to an external .js file.
    • “There are multiple options to display the output of JavaScript on the web page or browser.”
    • alert(“message”): Displays an alert box.
    • document.write(“message”): Writes directly to the HTML document.
    • console.log(“message”): Logs messages to the browser’s console.
    • Variables:“Variables are used to store data.”
    • Declaration: var, let, const.
    • var: Oldest, most common way.
    • let: Block-scoped (ES6).
    • const: Declares constants (cannot be reassigned).
    • Naming: Must begin with “alphabet dollar sign or underscore”.
    • Case-sensitive: “JavaScript is case sensitive”.
    • Scope:Global: Accessible from anywhere.
    • “variables and functions declared in the global scope are visible from anywhere in the program”
    • Function: Only accessible within the function.
    • “variables and functions declared in a functions scope are only ual within that function”
    • Block: Only accessible within the block (e.g., within an if statement).
    • “variables and functions declared in a block scope are only visible within that block”
    • Data Types:Primitive: String, Number, Boolean, Null, Undefined, BigInt, Symbol.
    • String: “a string is a sequence of zero or more characters”
    • Number: represents integer and floating point numbers
    • Boolean: true or false values
    • Reference: Object, Array, Function.
    • Object: “a non-primitive data type that allows you to store multiple collections of data”
    • Array: “arrays are a type of object that stores a collection of values”
    • Function: “functions are a type of object that can be used to execute code”
    • Dynamic Typing: “JavaScript is a dynamically typed language so we can store different data type in the same variable.”
    • Operators:Arithmetic: +, -, *, /, % (modulus), ** (exponentiation).
    • Assignment: =, +=, -=, *=, /=, %=, **=.
    • Increment/Decrement: ++, — (prefix and postfix).
    • Comparison: <, >, <=, >=, == (equality), != (inequality), === (strict equality), !== (strict inequality).
    • Logical: && (AND), || (OR), ! (NOT).
    • String: + (concatenation).
    • Operator Precedence and Associativity:Precedence: Determines the order of operations.
    • Associativity: Determines the order when operators have the same precedence (left-to-right or right-to-left).
    • Control Flow Statements:Conditional: if, else if, else, switch, ternary operator (condition ? valueIfTrue : valueIfFalse).
    • Loops: for, while, do…while.
    • break: Terminates a loop.
    • continue: Skips the current iteration.
    • Functions:“a block of code that performs the specific task.”
    • Declaration: function functionName(parameters) { … }.
    • Parameters and Arguments: Parameters are variables in the function definition; arguments are the values passed when calling the function.
    • Default Parameters: function myFunction(param1 = defaultValue) { … }.
    • return: Returns a value from the function.
    • Recursive Functions: Functions that call themselves.
    • Anonymous Functions: Functions without a name.
    • Callback Functions: Functions passed as arguments to other functions.
    • Objects:“a non-primitive data type that allows you to store multiple collections of data”
    • Key-value pairs: const myObject = { key1: value1, key2: value2 };.
    • Accessing properties: objectName.propertyName or objectName[“propertyName”].
    • Methods: Functions within objects.
    • this keyword: Refers to the current object.
    • Getters and Setters: Special methods to control property access and modification.
    • Classes:A blueprint for creating objects.
    • constructor: A special method to initialize object properties.
    • Methods: Functions within classes.
    • Inheritance: Creating new classes based on existing ones (using extends).
    • Private methods: A method inside of the class that can not be accessed from outside the class.
    • Static methods: can be accessed without creating an object of the class
    • DOM (Document Object Model):Represents the structure of an HTML document as a tree.
    • Nodes: Elements, text, attributes, etc.
    • Traversing: Moving through the DOM tree (parent, children, siblings).
    • parentNode: Returns the parent element of a node.
    • firstChild, lastChild: First and last child nodes.
    • childNodes: All child nodes.
    • nextElementSibling, previousElementSibling: Next and previous sibling elements.
    • Selecting Elements:
    • document.getElementById(“id”): Selects an element by its ID.
    • document.getElementsByClassName(“class”): Selects elements by class name (returns an HTMLCollection).
    • document.getElementsByTagName(“tag”): Selects elements by tag name (returns an HTMLCollection).
    • document.querySelector(“selector”): Selects the first element matching a CSS selector.
    • document.querySelectorAll(“selector”): Selects all elements matching a CSS selector (returns a NodeList).
    • Manipulating Elements:
    • document.createElement(“tag”): Creates a new HTML element.
    • element.appendChild(newNode): Adds a node as a child to an element.
    • element.textContent = “text”: Sets the text content of an element.
    • element.innerHTML = “html”: Sets the HTML content of an element.
    • element.setAttribute(“attribute”, “value”): Sets the value of an attribute.
    • element.removeAttribute(“attribute”): Removes an attribute.
    • element.classList: For adding, removing, and toggling CSS classes.
    • Adding and Removing elements:
    • element.insertAdjacentHTML(): A method to add HTML adjacent to an element.
    • replaceChild(): replaces a child element with a new one.
    • cloneNode(): clones a node.
    • removeChild(): removes a child element of a node.
    • insertBefore(): insert a new node before an existing node.
    • Attributes:
    • “The ID is the attribute name username is the attribute value”
    • to get the attributes of any HTML element use javaScript.
    • hasAttribute(): used to check whether an element has a specified attribute or not.
    • getAttribute(): method use to get the value of specified attribute.
    • setAttribute(): set the attribute.
    • removeAttribute(): remove the attribute.
    • Events:Actions that occur in the browser (e.g., click, mouseover, load).
    • Event bubbling: Event flow from the most specific element to the least.
    • Event capturing: Starts from the least specific element.

    III. Examples of Projects Mentioned

    • Online Notes App
    • Quiz App
    • Form Validation
    • Image Slider
    • Digital Clock
    • E-commerce Product Page
    • To-Do List App
    • Weather App
    • Calculator
    • Image Gallery

    IV. Conclusion

    The provided excerpts outline a comprehensive JavaScript tutorial suitable for beginners. It covers fundamental concepts, practical application through projects, and introduces modern JavaScript features. The emphasis on DOM manipulation and event handling highlights the tutorial’s focus on building interactive web experiences. By following this course, individuals with no prior programming experience can become proficient in JavaScript and be able to develop real-world applications.

    JavaScript FAQs: A Quick Reference

    Frequently Asked Questions about JavaScript

    1. What is JavaScript and what are its primary uses?

    JavaScript is a scripting language primarily used to create interactive and dynamic websites. It enables user actions like button clicks, form submissions, live chats, and website content or layout changes such as sliding effects, e-commerce functionalities, and quizzes. It can be used in front-end web development, back-end web development, mobile app development, desktop app development, game development, and API creation.

    2. Why should I learn JavaScript?

    JavaScript is the most popular programming language globally, used by almost all popular websites like Google, Facebook, Twitter, Amazon, and Netflix. It has numerous frameworks and libraries like React, Angular, and Vue.js, which help reduce development time. Learning JavaScript opens many job opportunities in the software development industry.

    3. How can I get started with writing JavaScript code?

    To start writing JavaScript, you need a web browser (like Google Chrome) and a code editor (like Visual Studio Code). You can add JavaScript code directly within the HTML file using the <script> tag in the <head> or <body>, or you can link an external JavaScript file using <script src=”script.js”></script>.

    4. What are variables in JavaScript and how do I declare them?

    Variables are used to store data. In JavaScript, you declare variables using the var, let, or const keywords. For example: var x = 30;, let x = 10;, or const a = 4;. var is the oldest and most common way, let is a newer keyword introduced in ES6 for block-scoped variables, and const is used for variables that should not be reassigned. Variable names must begin with an alphabet, dollar sign ($), or underscore (_).

    5. What is scope in JavaScript and what are the different types?

    Scope refers to the visibility of variables and functions within a program. There are three types of scope in JavaScript:

    • Global scope: Variables and functions declared in the global scope are visible from anywhere in the program.
    • Function scope: Variables and functions declared within a function are only visible within that function.
    • Block scope: Variables and functions declared within a block of code (enclosed in curly braces) are only visible within that block (using let or const).

    6. What are the different data types in JavaScript?

    JavaScript has two main categories of data types:

    • Primitive data types: These include string, number, boolean, null, undefined, bigint, and symbol.
    • Reference data types: These include object, array, and function.

    JavaScript is a dynamically typed language, allowing you to store different data types in the same variable during its lifecycle.

    7. What are operators in JavaScript and what are some common types?

    Operators are symbols used to perform operations on operands (values and variables). Common types include:

    • Arithmetic operators: Used for mathematical operations (e.g., +, -, *, /, %).
    • Assignment operators: Used to assign values to variables (e.g., =, +=, -=).
    • Comparison operators: Used to compare two values (e.g., ==, ===, !=, >, <). They return Boolean values.
    • Logical operators: Used to perform logical operations (e.g., && (AND), || (OR), ! (NOT)).
    • String operators: Used to concatenate strings (e.g., +).

    8. What are control flow statements in JavaScript and how are they used?

    Control flow statements are used to control the flow of execution in a JavaScript program. There are three main types:

    • Conditional statements: (e.g., if, else if, else, switch) used to execute different code based on different conditions.
    • Loops: (e.g., for, while, do…while) used to repeat a block of code.
    • try…catch statements: Used to handle errors.

    9. What are functions in JavaScript and how are they used?

    Functions are reusable blocks of code that perform specific tasks. You can define a function using the function keyword, followed by the function name, parameters (optional), and the function body. Functions can return values using the return statement. Parameters act as placeholders that receive argument values passed during the function call.

    10. How do parameters and arguments work in Javascript functions?

    Parameters are declared in the function definition, while arguments are the actual values passed to the function when it’s called. You can also use default parameters, which provide a default value if an argument is not provided when calling the function. JavaScript functions can be declared without names, also known as anonymous functions and can call upon themselves, known as recursion.

    11. What are objects in JavaScript and how do I work with them?

    Objects are non-primitive data types that store collections of data in key-value pairs. You can create objects using curly braces {}. Access properties using dot notation (e.g., object.property) or bracket notation (e.g., object[‘property’]). You can add, modify, and delete properties of an object. Objects can contain other objects, which are called nested objects, and methods.

    12. How do I define and use methods within JavaScript objects?

    Methods are functions that are properties of an object. You can define methods within an object using function expressions or by directly assigning a function to a property. You can call object methods using dot notation followed by parentheses (e.g., object.method()). To access other properties of the object within a method, you can use the this keyword.

    13. What is the DOM (Document Object Model) and how do I use it to manipulate web pages?

    The Document Object Model (DOM) is a programming interface for HTML and XML documents. It represents the page so that programs can change the document structure, style, and content. It allows JavaScript to dynamically access and update the content, structure, and style of web pages. You can select elements using methods like getElementById, getElementsByClassName, getElementsByTagName, querySelector, and querySelectorAll. You can traverse the DOM to navigate between parent, child, and sibling elements. You can manipulate elements by creating new elements, appending or inserting them, modifying content and attributes, and removing elements.

    14. How do I handle events in JavaScript?

    Events are actions that occur in the web browser (e.g., clicks, mouse movements, page loads). You can handle events using event listeners, which are functions that are executed when a specific event occurs. The two event models are event bubbling (event flows from the most specific element to the least) and event capturing (event flows from the least specific element to the most).

    15. What are classes in JavaScript and how do I use them?

    Classes are a template for creating objects. They are a way to organize and structure your code using object-oriented programming principles. A constructor is a special method within a class that is called when a new object is created from the class. The new keyword is used to create an instance of a class. Getters and setters are special methods that allow you to control how properties are accessed and modified. Using the # prefix indicates that the method is private. Static methods and properties are associated with the class itself, rather than with individual instances of the class. This means that you can access them directly using the class name without having to create an object.

    JavaScript Fundamentals: Variables, Data Types, and DOM Manipulation

    JavaScript is a scripting language utilized to create dynamic and interactive websites. A dynamic website can alter its content and layout, while an interactive website enables user actions like button clicks or form submissions.

    Key aspects of JavaScript covered in the sources include:

    • Variables and Scope Variables are used to store data and are declared using keywords like var, let, and const. The let keyword declares block-scoped variables, visible only within their defined block, while const declares variables that cannot be reassigned. JavaScript recognizes three types of scope: global, function, and block scope.
    • Data Types JavaScript divides data types into primitive and reference types. Primitive data types include string, number, boolean, null, undefined, bigint, and symbol. Reference data types include object, array, and function. JavaScript is a dynamically typed language, allowing variables to store different data types.
    • Operators Operators are symbols that perform operations on operands (values and variables). Types include arithmetic, assignment, comparison, logical, and string operators. Operator precedence determines the order in which operators are processed.
    • Control Flow Statements These statements manage the execution flow in a JavaScript program, enabling decisions, loops, and error handling. Common conditional statements are if, else if, and else. Loops include for, while, and do while loops. The break statement exits a loop, and the continue statement skips the current iteration.
    • Functions Functions are reusable code blocks that perform specific tasks. They are defined using the function keyword and can accept parameters and return values. Functions can be recursive, calling themselves within their own code. A callback is a function passed as an argument to another function.
    • Objects Objects store collections of data in key-value pairs. Objects can contain properties (data) and methods (functions). The this keyword refers to the object in which it is used. A constructor function is used to create objects.
    • Prototypes Every JavaScript object has a prototype property. Prototypes allow objects to inherit properties and methods.
    • Classes Introduced in ES6, classes are templates for creating objects. They contain a constructor method for initializing object properties and can have other methods.
    • DOM (Document Object Model) The DOM represents HTML documents, allowing JavaScript to manipulate webpage content and structure. Methods like getElementById, getElementsByName, getElementsByTagName, querySelector, and querySelectorAll are used to select HTML elements. JavaScript can modify element attributes, styles, and classes using DOM manipulation techniques.
    • Events Events are actions that occur in a web browser, like clicks or mouse movements. Event listeners are used to execute code in response to specific events. Common events include mousemove, mousedown, mouseup, mouseover, mouseout, keydown, keyup, and scroll.

    JavaScript DOM Manipulation Essentials

    DOM (Document Object Model) is an API for manipulating HTML documents. The DOM represents an HTML document as a tree of nodes, where each HTML tag, attribute, or text is a node.

    Selecting Elements To access and manipulate elements within an HTML document, JavaScript provides several DOM methods:

    • getElementById(id): Retrieves the element with the specified id attribute.
    • getElementsByName(name): Returns a collection of elements with the given name attribute.
    • getElementsByTagName(tagname): Returns a collection of elements with the specified tag name.
    • getElementsByClassName(classname): Returns a collection of elements with the given class name.
    • querySelector(selector): Returns the first element that matches the specified CSS selector.
    • querySelectorAll(selector): Returns a collection of all elements that match the specified CSS selector.

    Traversing Elements Once an element is selected, you can navigate the DOM tree to access its related nodes:

    • parentNode: Gets the parent node of the specified node.
    • firstChild: Gets the first child node of the specified element.
    • lastChild: Gets the last child node of the specified element.
    • childNodes: Gets all child nodes of the specified element.
    • firstElementChild: Gets the first element child of the specified element.
    • lastElementChild: Gets the last element child of the specified element.
    • nextElementSibling: Gets the next sibling element of the specified element.
    • previousElementSibling: Gets the previous sibling element of the specified element.

    Modifying Elements JavaScript provides several ways to modify HTML elements:

    • createElement(tagname): Creates a new HTML element with the specified tag name.
    • appendChild(node): Adds a node to the end of the list of child nodes for a specified parent node.
    • textContent: Gets or sets the text content of a node and its descendants.
    • innerHTML: Gets or sets the HTML code within an element.
    • after(node or string): Inserts one or more nodes or strings after the element.
    • append(node or string): Appends new nodes or strings to the end of the children of an element.
    • prepend(node): Adds a new node as the first child of an element.
    • insertAdjacentHTML(position, text): Inserts HTML code at a specified position relative to the element.
    • replaceChild(newchild, oldchild): Replaces a child element with a new one.
    • cloneNode(deep): Clones an element, optionally including its descendants (deep is a boolean value).
    • removeChild(child): Removes a child element from a node.
    • insertBefore(newnode, existingnode): Inserts a new node before an existing node as a child of a parent node.

    Attribute Manipulation HTML attributes can be accessed and modified using the following methods:

    • attributes: Returns a collection of all attributes of an element.
    • getAttribute(name): Gets the value of the attribute with the specified name.
    • setAttribute(name, value): Sets the value of an attribute.
    • hasAttribute(name): Returns a boolean value indicating whether the element has the specified attribute.
    • removeAttribute(name): Removes the attribute with the specified name.

    Style Manipulation The style of an element can be manipulated using the style property:

    • element.style.property: Gets or sets the value of an inline style property.

    Class Manipulation CSS classes of an element can be manipulated using the following properties:

    • className: Gets or sets the class name of an element as a string.
    • classList: Returns a collection of CSS classes of an element, providing methods to add, remove, toggle, and check classes.
    • add(classname): Adds a CSS class to the element.
    • remove(classname): Removes a CSS class from the element.
    • replace(oldclass, newclass): Replaces an existing class with a new one.
    • contains(classname): Checks if the element contains a specific class.
    • toggle(classname): Adds the class if it doesn’t exist or removes it if it does.

    Events Events are actions that occur in a web browser. Event listeners are used to execute code in response to specific events. There are three ways to assign event handlers:

    • Using HTML attributes.
    • Assigning event handler names in JavaScript.
    • Using the addEventListener method.

    The addEventListener method accepts three arguments: the event type, the function to be executed when the event fires, and an optional boolean value indicating whether to use capture. The removeEventListener method removes an event listener that was added using addEventListener.

    JavaScript Events and Event Handlers

    Events are actions that occur in a web browser, like clicks or mouse movements. An event handler, also known as an event listener, is a piece of code that will be executed when the event occurs.

    There are three ways to assign event handlers:

    1. Using HTML attributes: For each event, there is an event handler, and their names typically begin with on. For example, the event handler for a click event is onclick. The JavaScript code can be added within the quotes of the HTML attribute. The event handler attribute can also call a function. When the event occurs, the web browser passes an event object to the event handler. Inside the event handler, the this keyword refers to the target element on which the event occurs.
    2. Assigning event handler names in JavaScript: The event handler can be added to the HTML element in the JavaScript code. For example, element.onclick = function(){}. In this method also, the this keyword refers to the target element. To remove the event handler, assign null to the event handler.
    3. Using the addEventListener method: The addEventListener method registers an event handler, and the removeEventListener method removes an event handler that was added using addEventListener. The addEventListener accepts three arguments: the event type, the function to be executed when the event fires, and an optional boolean value indicating whether to use capture.

    Some useful JavaScript events:

    • mousemove: Fires repeatedly when you move the mouse cursor around the element.
    • mousedown: Fires when you press the mouse button on the element.
    • mouseup: Fires when you release the mouse button on the element.
    • mouseover: Occurs when the mouse cursor moves from outside to inside the boundaries of the element.
    • mouseout: Occurs when the mouse cursor is over an element and then moves to another element.
    • keydown: Fires when you press a key on the keyboard and fires repeatedly while you are holding down the key.
    • keyup: Fires when you release a key on the keyboard.
    • keypress: Occurs when you press a character keyboard like ABC and fires repeatedly while you hold down the key on the keyboard.
    • scroll: Occurs when you scroll a document or an element.

    When an event occurs, the event flows from the most specific element to the least specific element; this is event bubbling. When the event starts at the least specific element and flows towards the most specific element, this event model is known as event capturing.

    JavaScript Prototypes: Inheritance, Properties, and Methods

    In JavaScript, every function and object has its own property called prototype. A prototype itself is also an object, creating a prototype chain.

    Key aspects of JavaScript prototypes include:

    • Prototype Inheritance You can use the prototype to add properties and methods to a Constructor function, and objects inherit the properties and methods from a prototype.
    • Adding Properties To add a new property to a constructor function, use function name.prototype.property name = value.
    • Adding Methods To add a method, use function name.prototype.method name = function(){}.
    • Accessing Properties and Methods Objects created with the constructor function can access the properties and methods defined in the prototype.
    • Changing Prototype Values If a prototype value is changed, all new objects will have the changed property value, while previously created objects will have the previous value.

    For example, consider a constructor function Person:

    function Person(first, last) {

    this.firstName = first;

    this.lastName = last;

    }

    To add a new property called gender to the Person constructor function, use the prototype:

    Person.prototype.gender = “male”;

    To add a method called getFullName, use the prototype as well:

    Person.prototype.getFullName = function() {

    return this.firstName + ” ” + this.lastName;

    }

    Now, create two objects using the Person constructor function:

    const person1 = new Person(“Elon”, “Musk”);

    const person2 = new Person(“Bill”, “Gates”);

    The objects person1 and person2 can access the gender property and getFullName method:

    console.log(person1.gender); // Output: male

    console.log(person2.getFullName()); // Output: Bill Gates

    JavaScript and the DOM: Manipulating HTML Elements

    The sources provide information on manipulating HTML elements using JavaScript, primarily through the DOM (Document Object Model).

    Selecting HTML Elements To begin manipulating HTML elements, they must first be selected. Several DOM methods are available for this purpose:

    • getElementById(id): Selects an element by its id attribute.
    • getElementsByName(name): Retrieves all elements with a specific name attribute.
    • getElementsByTagName(tagname): Selects all elements with a given tag name.
    • getElementsByClassName(classname): Selects all elements with a specified class name.
    • querySelector(selector): Selects the first element that matches a CSS selector.
    • querySelectorAll(selector): Selects all elements that match a CSS selector.

    Traversing HTML Elements After selecting an element, it’s possible to navigate the DOM tree to reach related elements:

    • parentNode: Accesses the parent node of an element.
    • firstChild: Accesses the first child node of an element.
    • lastChild: Accesses the last child node of an element.
    • childNodes: Provides a collection of all child nodes of an element.
    • firstElementChild: Accesses the first element child of an element.
    • lastElementChild: Accesses the last element child of an element.
    • nextElementSibling: Accesses the next sibling element of an element.
    • previousElementSibling: Accesses the previous sibling element of an element.

    Modifying HTML Elements JavaScript offers various methods for modifying HTML elements:

    • createElement(tagname): Creates a new HTML element with the specified tag name.
    • appendChild(node): Adds a node as the last child of a parent node.
    • textContent: Sets or retrieves the text content of an element, ignoring HTML tags.
    • innerHTML: Sets or retrieves the HTML content within an element, interpreting HTML tags.
    • after(node or string): Inserts a node or string after a specified element.
    • append(node or string): Appends a node or string to the end of an element’s children.
    • prepend(node): Adds a node as the first child of an element.
    • insertAdjacentHTML(position, text): Inserts HTML at a specified position relative to an element.
    • replaceChild(newchild, oldchild): Replaces one child element of a node with another.
    • cloneNode(deep): Clones an HTML element. The deep argument specifies whether to clone all descendant nodes as well.
    • removeChild(child): Removes a child element from a node.
    • insertBefore(newnode, existingnode): Inserts a new node before an existing node.

    Working with HTML Attributes Attributes of HTML elements can be accessed and changed with these methods:

    • attributes: Returns a collection of all attributes of an element.
    • getAttribute(name): Retrieves the value of the attribute with the specified name.
    • setAttribute(name, value): Sets the value of an attribute.
    • hasAttribute(name): Checks if an element has a specific attribute.
    • removeAttribute(name): Removes an attribute from an element.

    Manipulating Element Style The style property is used to manipulate the inline styles of an HTML element:

    • element.style.property: Retrieves or sets the value of a CSS property.
    • element.style.cssText: Sets multiple CSS properties at once. Using += with cssText allows appending new styles without overriding existing ones.
    • getComputedStyle(element): Returns an object containing the values of all CSS properties of an element, including those from external stylesheets.

    Manipulating Classes CSS classes can be manipulated for styling purposes:

    • className: Gets or sets the class name of an element. Assigning a new value overwrites existing classes, but concatenation can be used to add classes without removing existing ones.
    • classList: Provides methods for adding, removing, and toggling CSS classes.
    • add(classname): Adds a class to an element.
    • remove(classname): Removes a class from an element.
    • replace(oldclass, newclass): Replaces one class with another.
    • contains(classname): Checks if an element has a specific class.
    • toggle(classname): Adds or removes a class, depending on its presence.
    JavaScript Full Course For Beginners With JavaScript Projects Tutorial And Notes 2024

    The Original Text

    hi guys welcome back to another video of greatest tack if you think JavaScript is difficult to learn and tired of watching multiple tutorials of JavaScript and still not feeling confident well you have come to the right video by the way this is not just a simple video but it is an ultimate course to start your journey into the exciting world of JavaScript in this JavaScript course we will start from the absolute Basics and I will guide you through the fundamentals of JavaScript that will help you to build a solid foundation in this course we will cover the introduction of JavaScript then we will see the basics of JavaScript where we will learn about the variables scope operators keyword reserved keywords and expression then we will see the data types and after that we will see the difference between primitive and reference values then we will move to operate s where we will learn about the arithmetic operator assignment operator logical operator comparison and then we will move to control flow statements where we will learn about if if else statements for while and do while loop and break and continue statement after that we will see the functions functions are important Concepts in JavaScript so in the function we will learn about the function parameters arguments return keyword in the function then we will see the anonymous function recursive function and default parameters after that we will learn about the objects and prototype where we will learn about the key values and method in the object then we will see the Constructor function prototype object D structuring and object literal syntax extensions after completing the object we will learn about the classes classes are also very important in JavaScript so in the classes we will learn about about the class getter and Setter methods then we’ll see the class Expressions inheritance static methods and private methods after completing the classes we will move to the Dom which is document object model so in this Dom we will learn about the notes then we will learn about get elements and query selected methods then we will see the create and clone element then we will learn add nodes to document then we will see get elements details using the Dom then we will learn about the modifying element using Dom then we will see get and modify the element class using the Dom then we will learn about the events available in this Dom each concept is clearly made to be beginner friendly with clear explanation and practical examples along with this I will also provide you the complete notes of this course in the video description but here is the best part it’s not just Theory at at the end of this tutorial we will make some real world projects like online Notes app Quiz app form validation image slider digital clock and e-commerce product page don’t worry you will not need any prior coding experience before starting this course by the end of this course you will be writing JavaScript code with confidence so are you ready to master JavaScript hit that subscribe button and help me to get the 5,000 likes on this course now let’s dive into the world of JavaScript together welcome to JavaScript introduction tutorial in this tutorial we will learn what is Javascript why you should learn JavaScript what is the use of JavaScript and how to write your first JavaScript program so what is Javascript JavaScript is a scripting language that is used to create interactive and dynamic websites interactive website means user can perform some action on website for example button click submit a form write comments and live chat Dynamic website means the website that changes its content or layout like sliding effect e-commerce website and quiz website why you should learn JavaScript JavaScript is the most popular programming language in the world it is used in almost all popular websites like Google Facebook Twitter Amazon Netflix and many others great thing about JavaScript is that you will find tons of Frameworks and libraries to reduce your time to create websites and mobile apps some of the popular Frameworks are react angular and vuejs if you learn JavaScript it opens a lot of job opportunities in the software development Industries what what is the use of JavaScript uses of JavaScript is not only limited to front-end web development it is also used in backend web development mobile app development desktop app development game development and API creation using JavaScript you can easily create websites like Amazon and Netflix mobile apps like Instagram and WhatsApp games like Tic Tac to and snake game you can also create mini JavaScript projects like to-do list app Quiz app Notes app weather app calculator or image gallery I already have 30 mini JavaScript projects on my YouTube channel that you can check out from the link given in the video description and these projects are more than enough to learn and practice JavaScript how to write your first JavaScript program to start with JavaScript you need to have a web browser and a code editor I’m using Google Chrome web browser and visual studio code editor I already have a tutorial how to download and install Visual Studio code editor you can find the video link in the description so let me open my code editor here I have one HTML file with basic HTML structure in this HTML page you can see we have the head open tag and head closing tag and this is the body open p and closing tag so the first option is to add the JavaScript code within the head tag so before closing of this head tag we can add our JavaScript code so let me add one a script tag a script open and closing tag like this and within this script we can add our JavaScript code so let me add one line of JavaScript here alert welcome to greatest stack this JavaScript code will give instruction to browser to alert this message welcome to greatest stack so let’s open this web page you can see this message welcome to greatest tack click okay so this was the first option to add the JavaScript code in the SML file now the second option is to write the JavaScript code within the body tag let me remove this script from here we have to add the code within this body tag so I will add it here a script open and closing tag within this we have the JavaScript code to alert one message welcome to greatest tag now let’s open the web page again and again you can see this message welcome to greatest tag so this JavaScript code written within the body tag is also working now let me remove it from here also there is another option to add the JavaScript code in the HTML file that is external Javascript so to add the external Javascript we will use a script SRC and the new file name so here let’s create a new file name and write the file name script.js you can write your own file name but the file name extension should bejs I’m writing a script.js you can write main.js index.js anything so this is the new file script.js and next we have to add this file here a script SRC and the file path a script.js so we have added the file path here now let me open the folder in this intro folder you can see there was one HTML file and now we have one more file the script.js and we have connected the script.js with the HTML file with thist script tag and now we can add our JavaScript code within this external file so here we will add alert welcome to greatest tag after adding this let’s come back to the website and now you can see this alert message welcome to greatest tag so this JavaScript code is also working now let me come back to the HTML file and we can move this a script tag in the head also like this and it will also work you can see this alert is working let me place it here within this body tag there are multiple options to display the output of JavaScript on the web page or browser so here I have added alert welcome to greatest T so we can see the message in the alert box there’s another option we can add document dot write welcome to greatest stack we can write like this document. write so it will write this message in the web page let’s see our web page you can see this message welcome to greatest tack it is written on the website now we have one more option here if I write console do log this will give the output in the browser console tab so let me show you come to this browser right click and select inspect it will open this developer tool and here you have to click on Console let me Zoom it click on Console we can change the theme by clicking on this setting icon appearance and do so this is the console tab here you can see this message welcome to greatest tag because here I have added console.log welcome to greatest tack if I change the message JavaScript tutorial come back to the website you can see welcome to greatest Tech here because I have added document. write and here you can see JavaScript tutorial because I have added console.log so it will add this message in the console Tab and in this console also we can add our JavaScript code we can write and execute the JavaScript code within this console tab also so let me show you one example if I write 4 + 5 and we got the result 9 so it is executing the JavaScript code here let me add one more thing if I write console dolog hello and hit enter you can see we have added console.log Hello and it is printed here hello now if you want to display the output on the browser alert box we can write like this alert hello hit enter you can see this alert box with the message hello now you can display the output on the website also let me add document dot WR and here we will add the message hello click enter you can see the Hello message on the website so this is how you can display the JavaScript output on your website or browser console and now you know how to write your JavaScript code so this was all about JavaScript introduction and writing your first JavaScript program what is variable in JavaScript variables are used to a store data it is like a container where we use to store things at home to declare a variable in JavaScript we use the V let and const keyword we can write where X here where is the keyword to declare a variable and X is the identifier or name of the variable we can also declare variable like let X or const X the V keyword is the oldest and the most common way to declare variables theet keyword is a newer keyword that was introduced in es6 we will learn about es6 later in the advanced JavaScript the const keyword is used to declare constants which are variables that cannot be changed once you have declared a variable you can assign a value to it using using equal sign for example where xal to 30 the following code declares a variable called X and assign it the value 30 variables can be used to store any type of data including number a string objects and arrays for example if I write where x equal to double quote or single quote any message hello world so here we are storing the string data type in the X variable variables name must begin with alphabet dollar sign or underscore if I write 2x it is not a valid name for the variable if I write anything in the alphabet it is valid and we can also declare it with the dollar sign we can start like this dollar X it is valid and we can also use underscore here like this underscore X let me remove it so you can see it is valid format to write a variable name you can start with dollar and you can start with any alphabet in upper case or lower case it is valid but if you start from the number it is not a valid name for the variable if you add the valid character then later you can add number it is valid JavaScript is case sensitive so if you write where first name equal to greatest stack and if you write first name with the lowercase end so these two variables name are different it is not same because here we have the different case so JavaScript is case sensitive that’s why it is two different variables name now let’s understand about the let keyword let keyword in JavaScript is used to declare a block scoped variable this means that the variable is only visible within the Block in which it is dict cleared for example if I write let x equal to 10 and if x greater than 5 yes it is greater than 5 because the x value is 10 in this block we will add let y = to 20 and here if I try to display the value of y we will add console do log y so you can see this y value in the console tab here you can see 20 correct we have added this code within this curly bres so it’s a block and if I try to access this y outside of this block we will copy this and paste it here here outside of this block and now if I try to run it you can see one error reference error why is not defined so if you try to access the Y value outside of this if statement you will get a reference error this is because variable Y is not defined outside of this block now let’s understand about the const keyword so the const keyword in JavaScript is used to declare a con Conant variable this means that the variable cannot be reassigned to a new value for example if I write const a equal to 4 so we are assigning a value for in the a variable now if I print this console do log a we will get four in the console tab now in the next line if I try to write AAL to 5 we are trying to reassign a new value a equal to 5 and run this you can see we got an error assignment to constant variable so we cannot assign a new value in constant variable now let’s learn about the scope in Java JavaScript scope in JavaScript refers to the visibility of variables and functions within a program in JavaScript there are three type of a scope Global scope function scope and the third one is block scope so let’s learn about the global scope the global scope is the outermost scope in the JavaScript program variables and functions declared in the global scope are visible from anywhere in the program let’s understand it with one example if I write where x equal to hello greatest stack and here we create one function called example and in this one if if I try to print this message if I write console do log X and now we have to call this function example now you can see this message in the console tab hello greatest stack over here in this example we have declared a variable X outside of any function or block which makes it a global variable Global variables are accessible from anywhere in the script including inside a function and we have declared this outside of the function so we can access it within the function and outside of the function also if I simply add this here and it will also print this you can see Hello greatest stack two times the first one is printed using this console.log written inside the function and the second message is printed using this console.log x so this was the global scope now let’s understand what is the function scope so the function scope is created when a function is declared variables and functions declared in a functions scope are only ual within that function so let’s understand this function scope with one example here we will add function example here we will create one variable where FS function scope equal to hello greatest stch and if I try to display the output we will add console. log fs and now just call this function so now you can see this message hello greatest TCH because we are accessing this variable inside this function now if I try to access this FS outside of this function let’s copy this and paste it here outside of this function and try to run it we got an error FS is not defined why because we have defined this FS variable inside this function so it is a function scope variable and now we are trying to access this FS outside of this function it is not accessible so the variables and functions declared in a functions scope are only visible within that function now let’s understand the block scope so the block scope in JavaScript refers to the visibility of variables and functions within a block of code a block of code is a group of statement that are enclosed in a curly braces variables and functions declared in a block scope are only visible within that block let’s understand block scope with one example let’s create one function and in this one we will create one block true and here we are creating one block with this curly bres So within this if we will add one variable so let’s add the variable name block variable BV equal to create a stack and here if we try to display this console.log BV and just call this example now you can see this message greatest stack in the console tab here because we are accessing this variable inside this block now if I try to access this variable outside of this block it is declared inside this block and if I try to access here this block is closing here so let’s add this line here at line number n and now if I try to run you can see we got an error in line number nine BV is not defined because we are accessing this variable outside of this block let’s try to access this variable outside of this function only let’s remove it from here and add it here at the end and now you can see the error message at line number 12 BV is not defined because we are trying to access this variable outside of this block so the variable and functions declared in a block scope are only visible within that block so this was all about the variables and the scope in JavaScript data types in JavaScript data types is an important Concept in any programming language to perform any task with the data it is important to know its type data types in JavaScript are divided into two categories primitive data type and reference data type there are seven primitive data types in JavaScript which are a string number buo null undefined big int and symbol so let’s learn about the string data type in JavaScript a string is a sequence of zero or more characters a string starts and end with either a single quote or a double quote JavaScript strings are for storing and manipulating text for example if I write let first name equal to double code elone so here we are adding one name in double quote it is a string and the variable name is first name let me duplicate it here we will add last name and if I write the text in single quote musk it is also a string it is written in double quote and this is written in the single quote now let’s see another data type which is number number represents integer and floating Point numbers for example if I write let num equal to 100 in this statement we have declared one variable called num and initialized its value with the integer 100 let me change the value if I write 96.5 it is also a number type here we have stored the floating number if we write 96.0 then JavaScript will convert it into an integer number to use less memory so it will be saved only 96 let me show you that if I write console.log num so you can see 96 is printed here it is not printing 96.0 it is printing 96 only because the JavaScript is converting this floating number into an integer and if I type 96.5 it will be saved as 96.5 and if we change 96. it will be only 96 now let me tell take another example if I write let x equal to 10 so here I have stored one number in the X variable let me write console.log X here we will get 10 in this console tab we got 10 now if I add a single quote in this 10 now it will become string because we are adding single quote in this text now if I print this one you can see still it is displaying 10 but if you will check the data type it will be a string the value is 10 but the data type is a string to check the data type we have one operator called type of in front of this variable name if I write type of X you can see we got the data type string because this 10 is written inside the single quote if I change it and make double quote still it will be string you can see string here now if I remove this quote and if we only write 10 then it will be a number you can see it is number when we will add double quote or single quote it will be stored as a string now the next data type is Boolean the Boolean data type has two values true and false let’s understand it with one example if I write let learning equal to true and and let completed equal to false here we have stored Boolean data in the learning variable and completed variable now to check this one we will add console.log learning you can see true so it is display the value stored in this learning now to check the type of the data stored in this learning we will again use the type of operator type of learning so it is displaying the data type Boolean now let’s check the data type of this another variable which is completed just copy this one add it here here it will display the data type Boolean for the another variable called completed now if you want to display the value stored in this completed here I’m adding console.log completed and it is displaying false here which is the value stored in the completed variable and it is the type of the value which is Boolean so we have stored the true or false value directly but we can store the result of any expression for for example if I write let X = to 20 greater than 10 so the result of this is true 20 is greater than 10 it is true so now if you want to check the value stored in the X we will add console.log X and now you can see it is displaying true here we are writing 20 greater than 10 but the X has stored the result of this expression which is true now if I change if I write 20 less than 10 which is false so you can see the result in the console tab it is displaying false so we have stored the false in the X variable now let me show you the type of the data here we will add type of X and now it is displaying Boolean so this x has a store the Boolean data type next primitive data type is undefined if a variable is declared but the value is not assigned then the value of that variable will be undefined and the data type is also undefined let me show you this with one example let H we have declared a variable age but we have not assigned any value now we will check the value stored in this age let’s add console.log age here you can see the value is undefined now if you want to check the type of the data here we will add console.log type of age now you can see the value is also undefined and the type is also undefined if we add any value like this a is 30 now you can see the value is 30 and the type is number and when we remove it we have not assigned any value so the value is undefined and type is undefined so this was undefined data type next pleas primitive data type is null in the JavaScript null is a special data type that represents empty or unknown value let’s understand it with one example here if I write let number equal to null and now we will try to print the value here we will add console log number so you can see the result it is displaying null now we will try to display the type of the data so here in the next line we will add console.log type of number you can see the value is null but the type is object the type should be null but it says the type is object it is a known bug in JavaScript JavaScript defines that null is equal to undefined to check this one we will write console.log null comparison operator then undefined so we are comparing null with the undefined and here you can see we got the result true it means in JavaScript null is equal to undefined there are two other primitive data types which are symbol and B that we will study in our upcoming videos now let’s learn about the reference data type so the first reference data type is object in JavaScript an object is a collection of properties where each property is is defined as a key value pair so let me create one object here if I write let person equal to curlys that’s it so the following code defines an empty object this is the person object which is empty now let me display the data stored in this person object for that we will add console.log person that’s it now you can see we got the empty curly bles now to check the type of the data we will copy this one and here we will add type of person so you can see the result the data is empty in this curly Braes and the data type is object now let’s add some properties in this person object here we will add first [Applause] name last name and age let’s add 35 so you can see in the console tab the data type is object and this is the data stored in the person object first name Elon last name musk age 35 an object can store different data type in this person object the first name and the last name are string and this age is number so this person object can store different type of data it can also store another object our next reference data type is array arays are a type of object that stores a collection of values for example if I write let number we have have added five different number separated by comma in the square bracket so the following code creates an array of numbers now let’s print the value of this number we will add console.log number so in the console tab you can see this aray is printed 1 2 3 4 and 5 the same thing is printed here now if you want to check check the type so let’s add this line again and in this one we will add type of operator type of number now you can see in the console tab we got the type object so the array is also an object data type our next data types is function functions are a type of object that can be used to execute code for example here we will create one function to create a function we use the function keyword and the name of the function so let’s add the function name MSG that is for the message and in this one just add one console.log and here we will add one string hello greatest tag so we have declared one function with the function name MSG now if you want to check the type of the data here we will add console.log type of MSG that is function name and if I check this in the console tab you can see it is displaying function it says the type of data is function but it is also an object data type Javas script is a dynamically typed language so we can store different data type in the same variable for example if I write let X here we are not assigning any value so the data type will be undefined so let’s check this one type of X it is displaying undefined let’s check the value also if I write console.log X console.log type of X so it will display the value stored in the X and it will display the data type now you can see in the console tab it is displaying the value undefined and data type undefined now in the same variable we can store different data type here we have already declared the variable so we will just add X we are not declaring we are just assigning the value x equal to let’s say one string greatest tag so here we are adding one string in the X variable let’s try to to print this you can see in the console tab it is printing undefined and undefined from here now we have changed the data it is greatest tag which is string so you can see the value and the data type is a string now again we can change the type of the data we will simply store another data let’s add x equal to 100 so here we have stored the number let’s try to print this now you can see in the console tab we have the value 100 and we have the type number so earlier it was undefined then it is a string then it is number now let’s add one more example if I write X true and in the console tab you can see it is true and the data type is Boolean so the JavaScript is dynamically typed language so we can store different type of data in the same variable and in this one you can see the example also it is undefined it is string it is number it is Boolean so this was all about the data types in JavaScript operators in JavaScript operators in JavaScript are symbols that are used to perform operations on operants operant are the values and variables so let’s understand it with one example here if I write 10 + 20 here plus is an operator and 10 and 20 are operant here is the list of different operators that we will learn in this tutorial arithmetic operators assignment operator comparison operators logical operators and string operators now let’s learn arithmetic operators arithmetic operators are used to perform mathematical operations on operants there are multiple arithmetic operators so first one is addition here we will add let sum equal to 5 + 3 and console.log sum so in the console tab you can see we got the sum which is 8 5 + 3al 8 this is the addition operator now let’s learn the second one which is substraction here we will add substraction it will be x 5 – 3 three it will be X now you can see two in the console tab because 5 – 3 is 2 so this is the substraction now the next one is multiplication if I write five multiply 3 now you can see the result 15 now the next one is division operator for division views forward slash let’s add 15 ided 3 now you can see the result 5 15 / 3al to 5 now the next one is reminder or modulus here we will add modulus and to get the modulus we use percent symbol and and if I write 17 perc 4 now we will get the modulus 1 you can see when you divide 17 by 4 you will get the reminder 1 which is modulus now the next arithmetic operator is exponentiation when you write 2 to ^ 4 2 to the^ 5 that is exponential so to calculate the exponential here we will add X two double star and four so it means we will add 2 into 2 into 2 four times like this so what will be the result you can see in the console tab 16 so if you write dou star it will be exponentiation operator so these are arithmetic operators now let’s learn about the assignment operator assignment operators are used to assign values to variables we use equal sign to assign operator for example let X = to 5 here we are using equal sign which is the assignment operator and we write the value on the right side of the operator so this was the simple assignment M operator now we have other assignment operator also like addition assignment so let’s see that we have the x value 5 now we will add X Plus equal to 3 so if you simply add x = 3 it will replace the value in this x variable and the X will become three but here we are adding plus it means this three will be added in the existing value of this x so the current value of x is 5 and 5 + 3 will be 8 let’s check the output console. log X and in the console tab you can see the value8 so this was the addition assignment similarly we have the substraction assignment here we will add minus equal to 3 now we will get the output two you can see the output 2 now we have the multiplication here we will add multiply 3 so this three will be multiplied with the current value which is 5 5 into 3 and now you can see the output 15 next one is division assignment you can see this value here after that we have the modulus assignment you can see see the modulus 2 now the next one is exponentiation assignment dou star equal to 3 it means we are writing 5 to the^ 3 and it will be 5 * 5 * 5 so the result is 125 now let’s learn about increment and decrement operators the increment and decrement operators are used to increase or decrease the value of a variable by one suppose the variable value is five it will be incremented by 1 and it will become six or it will be decremented by one it will become four the increment operator is Plus+ and the decrement operator is minus minus increment and decrement operators can be used in two ways which is prefix and postfix so let’s learn prefix increment and decrement operator let me add one example here let a equal to 10 in the next line I’ll add console. log Plus+ a we are adding increment operator before the variable name which is a now you can see the output 11 because the value of a has been incremented by one now let me add one more line console.log a so in this line the value of a is incremented by 1 then it is printed 11 and in this line the current value of a is printed the current value is 11 in this example operator is placed before the variable and the value of the variable is increased before it is used now let’s see prefix decrement operator so for decrement we will add minus minus and in the console tab you can see the output 9 and 9 so it is decreasing the value of a by 1 then it is printed here and in the next line we are printing the current value of a which is 9 now let’s learn about the postfix increment and decrement operator in the postfix we add the operator after the variable so if I remove this and add Plus+ after a now you can see the output first it is printing 10 and after that 11 here we are adding A++ but still it is printing 10 because a is printed first and after that it is increasing the the a value by one now the next time I will print the a value it will display the updated value here it is displaying 11 in this example operator is placed after the variable and the value of the variable is used before it is incremented the same thing will happen with the decrement post fix operator if I run this one you can see current value of a is 10 and first it is printing the value 10 after that it is decreasing the value by one and if I print the new value of a it is N9 so this was the increment and decrement operator now let’s learn about comparison operator comparison operators compare two values and give back a Boolean value either true or false comparison operators are useful in decision- making and loop programming in JavaScript let’s see some example if I write like this it will be the less than operator it is greater than this will be less than or equal to this is greater or equal to this will be equal check it will check the equality of two values it will be inequality or not equal and it will give the flip value of the equal checks we will understand it with the example also and this one is the strict equality check it checks the data type also I will also explain it with example and it is the strict inequality or flipped value of the strict equality check now let’s understand these comparison operators with example here if I add let a = to 10 b equal to 20 and here we are adding less than operator you can see console. log a less than V so it will give the result true in this one it is checking a greater than b which is false a is 10 B is 20 so a greater than b is false so it will give the result false now it is a less equal to B so it will be true and this will be false a greater or equal to B it is false because a value is 10 now here we are checking a equal equal B it means a value is equal to B is not equal it is 10 and 20 so it will be false in this not equal we will get the flipped result of this equality check so the equality check was false so this will be true and this is the strict equality check and this is the strict unequality check so let’s print this one you can see the first one is true a less than b true a greater than b false a less than equal to B this true a greater equal to B it is false A = to B 10 = to 20 which is false a not equal to B so it will be true now in the next line we are adding a strict equal so A and B is 10 and 20 it is not equal so we will get false and it will be the opposite it result true now let’s understand it with other example if I remove this and here if I write like this 10 and it will be 10 so a is 10 as a string and B is 10 as a number now let me add one more thing here console.log a equal equal B now you can see the first one is true why a is 10 B is 10 then it is true now in the next line we are adding a triple equal to V it is giving false why first it will check the data type so in this one the data type is a string and the data type is number in the B variable then it is different so it is not equal so that’s why it is giving false and the last one is giving true because it will give the flipped value of this false our next topic is logical operators logical operators perform logical operations like and or not for logical and we use this symbol for logical or we use this symbol and for logical not we use this exclamation symbol so let’s learn about the logical and logical and evaluate op and return true only if all are true in this line you can see the first condition is true and the second is true and here we are adding logical and operator so both are true that’s why the result will be true now in this one the first one is true second one is false so both conditions are not true that’s why it is false here also one of the condition is false it is false here both conditions are false that’s why it is false only when both conditions are true then only the result will be true now let’s understand logical and operator with one example here I have added let X = to 5 and y equal to 10 and I’m adding X greater than 0 so this condition is true X is obviously greater than z y is also greater than zero then the first condition is true second is also true then the result will be true you can see the first result is true now in the second condition you can see X greater than 0 which is true y less than 0 which is false 10 less than 0 is false right then one of the condition is false that’s why the result is false now in The Third One X less than Z which is false then the result will be false and in the last one 5 less than 0 is false and Y isal to 10 which is 10 less than 0 which is false so both conditions are false that’s why the logic result is false so this was The Logical end now let’s learn about the logical or logical or returns true if one of the multiple operant is true if any one oper is true then it will return true so here you can see the first one is true true and second one is true so the output will be true first one is true second is false still the output is true first one is false second is true then the output is true in the last one first condition is false and second condition is also false then the result will be false so if all operant are false then the output will be false and if any one of the operant is true the result will be true now let’s understand this logical or with one example here we have the a value 5 b value 10 and a greater than Z true B greater than Z true so both conditions are true then result will be true now here the first one is true this is false then still it is true it is false it is true then still it is true now in the last one for first one is false second one is false so both operant are false so the result is false so this is the logical or operator now let’s learn about The Logical not logical not converts operator to Boolean and return flipped value let’s understand it with one example if I write let yes is equal to True let no equal to false we are adding two variable yes and no and yes is true no is false and if I try to print not yes not operator and yes then it will give the flipped result earlier it was true now it will display false you can see the first one is false here in the second one we are adding not no so the no value is false so the not no will be true you can see the not no is true so this is The Logical not operator our next topic is Javascript string operators in JavaScript you can also use plus operator to concatenate or join two or more strings let me explain this with one example if I write console.log and in this one in this one we will add two string let me add hello Plus World and let’s see the console tab you can see hello world is printed here if you need one space we will add it here now you can see it is printed with one space hello world we we can join the string using the addition assignment operator Also let’s see another example if I write let a equal to JavaScript and in the next line I will add a addition assignment operator plus equal to and here we will add another text so let’s add a space tutorial in the current value of a the current value is Javascript and in this JavaScript it will add this tutorial let’s print it in the console you can see this text JavaScript tutorial is printed in this console tab so this is how you can join or concatenate strings in JavaScript using the plus operator so this was the string operator in JavaScript there’s one more operator in JavaScript which is bitwise operator bitwise operators are rarely used in everyday programming that’s why we will skip this one our next topic is operator precedence operator precedence in JavaScript determines the order in which operators are passed concerning each other let me take one example let result equal to 2 + 3 * by 4 so what will be the output here if you add 2 + 3 it will be 5 and 5 * by 4 it will be 20 so this will be output or it will will be 4 * by 3 12 + 2 = 14 so which is the correct answer so the correct value is 14 let me show this result in console tab now in the console tab you can see the output 14 why because the 3 * by 4 is performing first and after that it is adding two so why multiplication is performed before addition it is because of the operator’s precedence value in this table you can see the Precedence of multiplication and precedence of addition so the higher precedence is performed first that’s why it is multiplying three and four after that it is adding two and the result is 14 so this was operator precedence now let’s learn about Operator associativity Operator associativity in JavaScript defines the order in which operators of the same precedence are evaluated there are two type of operator associativity left to right right to left in this table you can see the operator name and their associativity now let’s learn about the left to right associativity in left to right associativity operators are evaluated from left to right let’s take one example if I add let result equal to 4 – 2 – 1 in this example only substraction operator is used and its associativity is left to right as you can see in this table the expression 4 – 2 – 4 is evaluated from left to right first 4 minus 2 will be evaluated and it will give the result 2 then 2 – 1 will be evaluated and it will give the result one so let’s check the result in the console tab you can see the result one so this was left to right associativity now let’s learn about the right to left associativity in right to left associativity operators are evaluated from right to left for example let result equal to two exponentiation 3 exponentiation 2 in this example only exponentiation operator is used and its associativity is from right to left as you can see in this table first three exponentiation 2 is calculated resulting in N then 2 exponentiation 9 is evaluated and giving the result 500 12 so let’s see the result in the console tab here if I write log result you can see the result 512 so this was all about the JavaScript operators control flow statements in JavaScript control flow statements are used to control the flow of execution in JavaScript program they are used to make decisions execute loops and handle errors there are three type of control flow statements in JavaScript which is conditional statements loops and try catch statements so now let’s learn about conditional statements conditional statements are used to execute different code based on different condition the most common conditional statements in JavaScript are are if a statement else a statement and else if a statement if a statement in JavaScript is used to execute a block of code if a condition is true so let’s understand it with one example here we will add if and in this parenthesis we will add one condition condition will be true or false so we will add true in this block let’s add one line of code execute so in the console tab you can see this message execute in this example the condition is true that’s why it is executing this code and it is printing execute in this console tab now if I change it here we will add false and now in the console tab you can see nothing is printed why because if the condition is false then any code written within this block will be skipped it will not execute now let’s understand it with another example here we will add age greater than 18 and let’s add let age equal to 20 and and it will print one message you are an adult so here we have the age value 20 and the condition is age greater than 18 so you can see 20 is greater than 18 that’s why this block of code will be executed and we will see this message here now if we change the value of this age let’s add 16 now in the console tab you can see it is blank nothing is printed why because this condition is false 16 greater than 18 is false that’s why this code will not be executed let me comment this and we will take another example and here let’s understand with another example we will add let country equal to India and let age equal to 20 if age greater equal to 18 and operator country equal to India so this is the if statement where we are adding two conditions using the logical and operator here we are adding logical and that’s why if the first condition is true and second condition is true then only this complete line output will be true so you can see the age is 20 which is greater than 18 and country is India and here it is comparing with India so this condition is also true and this is also true then overall result is true so we can print any message console.log you can get a driver’s license now you can see it is printed here in this console tab you can get your driver license now if I change the age value to 17 now nothing is printed in this console tab it is empty so you can add this type of logical or logical and operator to get the true or false value and then if the value is true then only this code will be executed now let’s learn about the if Elsa statement if Elsa statement in JavaScript is a conditional statement that is used to execute a block of code if a condition is true and another block of code if the condition is false so let’s understand it with one example here we will add the same example here you can see if the condition is true then only this code will be executed now we have to add another statement that will be executed when the condition is false so here just add else in this else condition I will print another message console.log you a minor now you can see in in the console tab we got an message you are a minor why because the age is 18 so the if condition is false here we are adding 16 greater than 18 which is false so if it is false then else condition will be executed and if I change the value 19 you can see the message you are an adult the if condition is getting executed next conditional statement is else if so in this example we have one if condition and one else condition now we need another condition also so here we will add else if and in this one let’s add one condition check here we will add age greater equal to 16 it will be greater equal to 18 and in this else if let’s print one message console.log you are a teenager so what will happen in this program first it will check if it is 19 this if condition will be executed now if this condition is false suppose the value is 7 1 now it will jump to the next statement the first one is false it will come to the next statement which is else if and in this one it will check whether the condition is true or false if the condition is true then only this code will be executed else it will go to the another statement so here let’s check age is 17 and 17 is greater than 16 correct so that’s why this condition is true then this code will be ex uted now let’s check this one and you can see in the console tab we got the message you are a teenager it is printing from this console.log which is in the else if statement like this you can have multiple else if a statement suppose this is also false let’s add 15 age is 15 so this condition is false this condition is also false so it will execute the else condition condition else condition is ur minor you can see in the console tab the message Ur minor now you know the if statement else if statement and else statement now we will learn about this switch in JavaScript the switch statement in JavaScript is a conditional statement that is used to execute a block of code based on the value of an expression let’s understand the switch with one example here if we write let value is equal to 42 and then we will add the switch statement so this is the syntax to write this switcher statement in this one we will add type of value so it will get the type of this value variable and the type is number for now now in this case we will execute different message we can create multiple cases so in the first case let’s add number so if the type is number then we will print console.log number we can add multiple case so let’s duplicate it and here we will add string console.log string let’s add another one it will be Boolean console.log bullion in the default we will add console.log other now in this switch statement you can see the output is number why because we are adding value is equal to 42 which is is the number type and here it will check the case if it is number then it will print number now if we change the type if I add hello so the type of this variable is a string so it will check this case it is not correct then it will check this case so the type is a string correct that’s why it is printing this message now if I change it let’s add true so the type is Boolean so this case will be executed and it will print Boolean now if I add anything else let’s add one array now you can see other is printed here because this case is also false this is also false this is also false so it will print the default one so in this default we have added message other that’s why it is printing other in this console tab now let’s take another example of this switch case here we will add day name and the day name let’s add two suppose the day start with Sunday Monday Tuesday and the number is 1 2 3 for Sunday it is 1 Monday it is two so here we are adding let day name is equal to two now let’s add the switch statement went went in this one we have to pass the day name so let’s add switch day name as a key and here we will add different values so first value will be one and here day name is equal to Sunday now we will add second case case 2 so the day name will be Monday let’s add case three so we have added seven different Case Case 1 2 3 4 5 6 7 and name of the day wednessday Thursday Friday Saturday suppose we have entered Any number greater than 7 then we will display another message so here in this default we will add day name is equal to invalid day number now to print this we will add console.log let’s add the message the day is plus day name this is the string and this is the variable now in the console tab you can see the day is Monday why because we have added day name two now let’s change it here we will add five and we will check the console tab you can see the day is Thursday let’s add seven so it will check this case one then it will check two then it will check three so it is seven so it will come here case and the value is seven then day name will be Saturday and it will be printed using this console the day is Saturday so this is the switch case statement in the JavaScript now we will learn Turner operator it also works like if else a statement let me write the example of if else a stat M so here we have added let age equal to 20 if a greater than or equal to 18 so if this condition is true this code will be executed and if this condition is false then else statement will be executed now the same thing we can execute using the Turner operator for Turner operator we use this question mark now let’s see the Syntax for the Turner operator first we will add condition then question mark and after this question mark we will add the code that will be executed if the condition is true so here we will add value if true now we will add column and here we will add the code that will be executed if the condition is false value if false this is the syntax to use the Turner operator now let’s understand with example so here we will add the same thing let age is equal to 20 and now we will add the condition like this age greater equal to 18 question mark if it is greater then what we will print we will print Ur an adult this will be the message and if it is false this condition is false then we will print you are a minor we can directly write console.log and this message so it will be printed in the console tab so this will become so long that’s why here I’m adding let MSG is equal to this either this message or this message will be stored in this MSG now we will add console.log MSG let’s see the output in the console tab you are an adult now if I change the value it will be 16 now check this you are a minor so this is how the Turner operator is working same as the F statement so this was all about the conditional statements Loops in JavaScript in programming Loops are used to repeat a block of code for example if you want to display a message 100 times then you can use a loop first we will learn about the for Loop syntax of the for Loop is this one you have to add for then in this parenthesis we are adding the initial value of I after that we are checking the condition if this condition is true then only this code will be executed and after execution of this code written in this curly reses it will increase the value of I by 1 now let’s understand the for loop with one example suppose I want to print one message 10 times for that here let’s add console.log and in the message I will add greatest stag so I want to print this greatest stack 10 times let’s start it with one initial value of I is 1 and I want to print this for 10 times so here we will add less than equal to 10 this is simple now if I run this code you can see Greatest Tag is printed 10 times you can see 10 here we are printing the same message 10 time that’s why the browser will collapse it and display only one line and here it will display 10 it is printed 10 times now let’s take the another example of for loop I want to print number from 1 to 10 for that this for condition will be same here we will just add I so first what will happen the I value will be one and it will be printed using this console. log I after that it will increase the value so the I value will be 2 and it is less than 10 right then it will print two again it will increase the value that will be I3 and IAL to 3 is less than 10 so 3 will be printed so like this it will be printed up to 10 now run this code and you can see 1 2 3 up to 10 is printed in this console tab we can use Loops for printing the data of an array let’s take another example let me comment it and here I will add let coding equal to one array and in this array I will add JavaScript python C++ now I want to print the JavaScript Python and CPP using for Loop to get the element we use the index so index I start with zero JavaScript is at zero index python have index one CPP have index two so let’s write the for Loop here we will add for let’s add let I is equal to 0 because index starts with zero now I will be less than the length of array so this is the array dot length so AR length is three maximum index value is two that’s why I’m adding I less than coding do length that is 3 I Less Than 3 after that we will add i++ and in this C adds we will add the code that has to be executed every time so here we will add console.log coding and I first it will execute coding zero then coding one and coding two so coding zero will display JavaScript coding 1 will display Python and coding two will display CPP so you can see the output in this console tab JavaScript Python and CPP so you can use the loop on ADD also we can create another loop inside a loop let’s see another example here we already have this code this is the first Loop and let me make it small I’ll add one to five and it will print the number from 1 to 5 and after that we will add another loop inside this Loop here we will add for and here we will add another variable name let’s add let Jal to 1 so initial value is 1 next we will run this Loop for three times so here we will add J less than equal to 3 then increase the value of J and in this we will print another message let’s add console.log and here we will add one message inner loop plus J now you can see the output in the console tab first it will execute this code and after that it will come to this for Loop now this for Loop will be executed for three times and in three times it will print inner loop one inner loop two inner loop three here we will add a space so you can see inner loop 1 2 3 now again it will increase the value of I so I will be two and this will be printed console. log I so 2 will be printed in the console tab you can see two is printed here and after this again this for Loop will be executed and it will again print from the 1 to 3 you can see 1 2 three now again the I value will be increased by one it will be three and three is printed here and again it will execute this inner loop now you can see the message inner loop 1 2 3 again the outer loop will be executed console. log I I will be 4 so this is how you can use another loop inside a loop now we will learn while loop syntax of while loop let’s add V and in this parenthesis we will add condition then in this curly Braes we will add the code that has to be repeated so this is the syntax of while loop which is very simple so in this one we have to add one condition and this code will be executed until the condition is true when the condition is false it will stop the loop now let’s understand the Y loop with one example we will print number from 0 to 10 so here let’s add console.log let’s add I and we have to declare this I so here we will add let I equal to 0 because we have to print the number from 0 to 10 now in this condition we will add I less than equal to 10 so first it will check the I value I value is zero so if the value is less than 10 then it will print the value of I now it will print the same value again and again so we have to increase the value so in the next line we will add i++ so first it will print the value then it will increase the value now you can see the output 0 1 2 up to 10 so this while loop is repeating this code until the I value is less than or equal to 10 suppose the I value is 10 so 10 less than equal to 10 is true it will print this value that is printed here now it will increase the value by 1 so I will become 11 now it will again go to this condition and 11 is less than equal to 10 that is false once it is false then it will stop this Loop next we will learn do while loop do while loop is also very simple so this is the Syntax for do while loop first it will execute the code written in this do statement and after that it will check the condition if the condition is true then it will again execute this code and when the condition is false it will stop this Loop now let’s understand it with one example let’s write one code to print a number from 1 to five using do while loop so here we will add let IAL to 1 and it will print using console tab console.log I and here it will check the condition we will add I less than equal to 5 here we have to increase the value of I so let’s add i++ now you can see the output in the console tab 1 2 3 4 5 so first the I value is 1 then it will come to this statement and it will print the value of I 1 then it will increase the value by 1 so it will become two so 2 is less than equal to 5 that is true so again it will print the value so it will be printed here then it will become three and 3 is less than equal to 5 that is also true again three will be printed here like this it will print one to five series now let’s change the value of I to 10 if I add IAL to 10 you can see the output 10 is printed here why it is printed because do Loop will execute the code first time then only it will check the condition so first it will print the value of I I isal to 10 so console. log I will be printed here 10 then it will increase the value 11 then the value of I will be checked here I less than equal to 5 which is false so it will not execute the code again but the first time it will be printed so this was for Loop while loop and do while loop apart from this there are some other Loops also like for off for in that we will study in advanced JavaScript now we will learn about break and continue statement in JavaScript the break statement is used to terminate the loop immediately let’s understand this with one example let’s take one example of for Loop for printing 1 to five number this for Loop is printing number from 1 to 5 you can see in the console tab now if I add one if condition here before printing this number here we will add if I comparison operator three when the I value is three then we will add break so you can see what will happen when it will get the break statement it will terminate the loop it will stop the loop you can see in the output only one and two is printed first time the I value will be printed then second time the I value will be printed that will be two then third time I will be three and here it will be checked if I is equal to 3 it will get this break statement and after that it will terminate the loop only IAL to 1 and two is printed here so this is how we use the break to terminate the loop or exit the loop now we will learn about the continue the continue statement is used to skip the current iteration of the loop and the control flow of the program goes to the next iteration let’s see the example here if I write continue then what will happen first the I value will be one so it will not be executed then I will be two it will not be executed then I value will be three once the I value is three it will get this continuous statement when it will get the continuous statement it will skip the remaining code of this for Loop it will directly come to the next iteration it will increase the value of I by 1 so I will be for so the four will be printed now you can see the output 1 2 4 5 3 is not printed because when the I value is three it will skip this part and the I will become four then again four will be printed so this is how break and continue statement works so this was all about the for Loop while loop do while loop break and continue in this tutorial we will learn about function in JavaScript a function is a block of code that performs the specific task functions in JavaScript are reusable block of code that can be called from anywhere in your program here is the syntax to declare a function a function can be defined using the function keyword followed by the function name the body of a function is written within this curly process now let’s create a function to print a text we will use the function keyword and the function name is GRE to print any text we will add console.log and message in the double code now we need to call this function to execute the code written in this function for calling this function we will use the function name and parenthesis so simply we will add great and this parenthesis so this estate will evoke the function or call this function after that you can see the output in the console tab hello Greatest Tag is printed here so this is the function declaration using the function keyword and the function name this is the body of function where we will add the code that will be executed within the function and this code is for calling this function or evoke the function now we will learn about parameters and arguments parameters are the variable that are declared in the function definition while the arguments are the value that are passed to the function when it is called let’s see one example of function with parameters we will create one function with the function keyword and the function name is gr and in this one we will add two parameters first name comma last name so this first name and last name are variable that are declared while declaring this function this is known as parameter now we will add the code in the body of this function here we will add console.log and we will add the text hello plus there will be first name then we will add plus and one space within double quote then again we will add plus and last name so it will print hello first name and last name in the console tab so right now we have declared the function with two parameters now we have to call this function while calling this function we have to pass two values that will be arguments so to call this function we will add the function name GRE and with this function name we have to add two values so let’s add first value Elon comma musk so we are passing two values when calling this gr function now you can see the output in the console tab here it is printing hello Elon Musk let’s add a space here now it looks good hello Elon Musk is printed in this console tab we can pass any data type as argument so let’s add another data type I will add 200 that will be number here also we will add 100 now see the output you can see it is printing hello to 200 and 100 so we can pass any data type as argument while calling the function we can pass less or more arguments while calling a function if we pass less arguments then the rest of the parameters will be undefined if you pass more arguments then additional arguments will be ignored let’s see one example if I just pass GRE alone and comment this first call here you can see the output it is saying hello Elon and undefined because we are passing only one argument and here we have two parameters first name and last name so this alone will be stored in this first name so it will print hello and the first name is Elon and in the second parameter which is last name we are not passing any argument so it will be un defined that’s why it is printing hello Elon undefined the last name is undefined so we can pass less argument now let’s see another example if you pass more arguments here if I add Alon comma musk comma Mr now see the output here it is printing hello Elon Musk so the first argument will be stored in the first parameter which is first name second argument will be stored in the second parameter which is last name and this third parameter will be ignored because we have only two parameters here so it will only print this hello and the first name Elon and last name musk the third argument will be ignored now let’s learn about default parameters default parameters in JavaScript are parameters that have a default value this means that if the argument is not passed to the function the default value will be used let’s see one example of default parameters here we will create one function write the function name sum and in this sum function we will add two parameters which is X and Y now in this body of function we will add console.log and it will log the X + Y it will add the X and Y value and it will display in the console tab now to call this function we will add function name and parenthesis but here you can see we have two parameters X and Y so when calling this function we have to pass two arguments also so let’s add two values 10A 15 15 so this 10 will be stored in x 15 will be stored in y and this console. log will display 10 + 15 that will be 25 you can see in the console tab it is printing 25 10 + 15 now you can see if I remove 15 from here and we are just passing 10 10 will be stored in X and Y will be undefined and here we are printing x + y so let’s see what will be output here it is printing n n why it is because here we are adding 10 plus undefined x + y will be 10 plus undefined that’s why it is printing NN that means not a number we cannot add the undefined n number so it is printing an N here we are passing only one parameter and you want this function to work for that we can add Y is equal to 0 suppose we have added y value zero then you can see the output in the console tab it is printing 10 let’s see if I add 50 we are passing 50 in X and Y default value is zero so x + y that means 50 + 0 that will be 50 you can see the output 50 is printed so 0 is the default value of this y parameter and here if we pass two numbers 50 + 30 then it will use 30 in this y you can see the output 50 + 30 80 is printed here because we are passing two arguments 50 50 will be stored in x 30 will be stored in y so this was the default parameters in Javas script now we will learn about function return the return statement can be used to return the value when the function is called the return statement donates that the function has ended any code after return is not executed let’s see one example if I create one function and function name is ADD and in this one we will add two parameters A and B now we can add return A+ B so this function will return the addition of A and B now to call this function we will add the function name add and in this one we have to add two values as argument so we will add 10 and 20 so this will call this function and this function will return the addition of 10 + 20 so we can store this result so here let’s add one variable with the let keyword let result equal to add function so the return of this add function will be assigned in this result variable now we can print this result we will add console do log the sum is result now you can see the output in the console tab it is displaying the sum is 30 if we add 10 and 40 you can see the output in console tab the sum is 50 so this return statement will return the value if we add any code after this return a statement like a multip by B this code will not be executed return statement denotes that the function has ended any code after this return statement will not be executed in JavaScript a function can return another function Also let’s see one example here if we create one function with the function name fn1 so this is the first function here I’m adding one parameter X in this function one we will create another function let’s create function fn2 and this will accept one parameter y now in this second function we will add return X multiply y so so the function two will return the multiplication of X and Y next after this function two we will add return FN 2 so when we will call this function one it will execute this function two also and then it will return this function two so function one is returning another function that is function two to call this function we will add fn1 parenthesis and we will pass one argument so let’s add three so here we are calling function one and passing one argument let’s store its value in one variable we will add let result is equal to function one and try to print this result console DOT log result so you can see the output in the console tab here it is displaying one function so you can see when I am calling this function one it is returning the function two and that function two is stored in this result now the function two is stored in this result so we can simply call this result like this result for the second function also we need one argument so we will add two and let’s print this one we will add console.log and print this result two you can see the output it is displaying six because in function one I passing three that will be X and function two I’m passing two that will be y and x * by y will be 3 * 2 is = to 6 let’s understand this example again again here we have the function one this function one has return a statement and this return a statement is actually returning the function fn2 which is declared here so the function is returning another function now we can store the return value in any variable so here we have called and stored the return of the function one in result with this console log we can see what is stored in this result so in this result function two is a stored so to call this function two we will add result and we will pass one argument so this was another example of return a statement in JavaScript function so this was all about function in this video we will learn callbacks in JavaScript a callback is a function passed as an argument to another function a callback function can run after another function has finished let’s understand the callbacks with one example I’m creating one function and the function name is display and this display function will display the message in the console tab so here we will add console.log and let’s add result and this result is parameter so here we have declared One display function that will only display the result in the console tab we are not performing any calculation in this function now we will create another function let’s add the function keyword and the function name is add this add function will have three parameter let’s add num one then num two and the third one will be one function let’s add my call back in this add function we will add let sum is equal to num one plus num two so this sum variable will store the value of num 1 + num 2 next we will add this call back and and in this call back we will add Su now we will call this add function so just add the function name which is ADD and parenthesis and this function has three parameters so we will pass three argument so first one will be one number that we want to add again we will add another number 1020 and in the next parameter we will pass one function so we have already created this display function so we will pass this display function in this add function when you pass a function as an argument remember do not use the parenthesis we will simply add the function name there is no parenthesis required so let’s understand this code here we have declared one function that will just display one message in the console then we have another function that have three parameters s it will add the two number and store the value in some variable now to print this sum in console we need to call this display function so when calling this add function we are passing the two numbers 10 and 20 that will be added and we are passing this display function as argument and this function will be here in my callback this display function also accept one argument so here I adding my callback and the value which is sum so this my callback will call this display function so let’s see the output in the console tab you can see it is printing 30 we are calling add function and in this add function we have not added console.log the console.log is added in the another function called display and we are passing this display function as argument in the add function function let’s change the value if I write 20 + 30 and now again check the output you can see it is displaying 50 that is 20 + 30 so when we are passing one function as an argument to another function that is known as callback function in JavaScript now let’s learn about Anonymous functions Anonymous function in JavaScript are functions that are not declared with a name here is the Syntax for anonymous function just write the function keyword and parenthesis and add your code within the curly Braes we can add parameters also in Anonymous function so this is the syntax to create Anonymous function we are not adding any function name we are just adding function keyword and parenthesis and curly Braes now let’s see one example of anonymous function here we will create one function with the function keyword this function will have two parameters X and Y now this function will return the value of x + y here I’m creating one function without any name so it will not be stored on our memory so to access this function we can store this function in any variable so let’s add let keyword to create one variable and the variable name is sum sum is equal to function here we have declared one function and assigned this function in a variable called sum this is known as function expression to call this function we can use the sum variable here we will add sum and this function accept two argument so we will add the two two value in this parenthesis 10 and 15 now to print this value in the console tab we will add console.log and write this sum and two parameters now you can see the output in the console tab it is printing 25 let’s change the value here we will add 10 and 30 now again you can see the output 40 so let’s understand this example again here I’m creating one function without any name and assigning this function in variable called sum to access this function or call this function we can use this sum variable and this function accept two argument so with this sum we are passing two argument 10 and 30 this 10 will be stored in X and 30 will be stored in y so it will return the X x + y value that will be 40 that will be printed in our console tab now let’s see another example of anonymous functions here we will create one function with the function keyword and write the parenthesis and within the curly braces we will add console.log and one message welcome to greatest de here we have declared one function without any name but how to execute the code written in this function as you know to call any function we write the function name and parenthesis so this will call or execute the function we will add the same thing with this Anonymous function also we will trap this Anonymous function in a parenthesis like this we have wrapped it in this bracket and now we will add this parenthesis that will execute this function now you can see in the console tab it is printing welcome to greatest stack the function is executed immediately when the script runs and it logs the message welcome to greatest T to the console now let’s see another example of anonymous function here we will add set timeout function and time set time out is built-in method in JavaScript that accept one function and time in milliseconds so here let’s add 2,000 milliseconds and here we will create one function so here we can add one Anonymous function let’s add function keyword then parenthesis and curly Braes and in this curly Braes we can add the code that will be be executed within this function so let’s add console.log hello creest stag here I’m adding an anonymous function that display the message hello greatest tack in console and here I’m adding 2,000 milliseconds so it will execute this function after 2,000 milliseconds that is 2 seconds let’s see the output in the console tab you can see it is blank but after 2 second it display the message hello greater stack now increase the time if I add 5,000 milliseconds that will be 5 seconds and run the code again you can see the console is blank and after 5 Seconds it will print hello greatest stag you can see it is printing hello great stack in the console we can write like this so it will be clear now you can see we have declared one function without any name so this is another example of anonymous functions now we will learn about recursive functions in JavaScript a recursive function in JavaScript is a function that calls itself let’s create one function and the function name is my function and within this function we can write the code and after that we will call the same function here we will add my function and parenthesis so in this one you can see we have declared one function with the name my function and within this function we are calling the same function my function parenthesis now to evoke this function we will add it here outside of this function here my function is recursive function because it is calling itself inside the function a de cursive function must have a condition to stop calling itself otherwise the function will be calling itself infinitely to prevent infinite recursion we can use if else statement or any condition statement so here if I add if if condition and within this condition we will call this recursive function and else stop calling recursion so this is just one example how we can create one recursive function and call the recursive function and how to prevent the recursive function for infinite recursion we can add the if Els condition or any other conditional statements of JavaScript now let’s see one example I want to print numbers in descending order so here we will create one function and let’s add the function name countdown so this countown function will accept one number so here we will add num to call this function we will add the function name countdown and we will pass any number let’s add 10 so this will call this countdown function and pass the number 10 in this num now to print this number we will add console.log num so this will will be printed in the console tab now I want to print 10 9 8 7 like this so we have to decrease the number so after printing the number in console we will decrease its value by one so simply we can add num minus minus so it will decrease the value by 1 if the number is 10 it will become 9 so after decreasing the number again we have to print it so to print the number again we can call this function again let’s add countdown num so this countdown num will again a start from here and it will again print this but this countdown will be running infinitely so to prevent the infinite recursion here we will add if num is greater or equal to Z so when the number is greater or equal to Z then only it will call the function again now you can see the output it is printing 10 987 65 4 3 2 1 0 it is printing the number from 10 to 0 Let’s understand this code again here we have declared one function and in this function it is printing the number and it will decrease the number by one and after that it will check if the number is greater or equal to zero then it will call this function again so this countdown function is calling itself this is known as recursive function so this is all about recursive function callback function and Anonymous functions in JavaScript object in JavaScript JavaScript object is a non-primitive data type that allows you to store multiple collections of data let’s see the syntax to declared an object we will use const keyword then object name so this is an object in this we can add the data in key value paired we will add key 1 value one we will add the comma to separate the data we will add another key key2 and value two we can use the let keyword also to declare one object but it is good practice to use the const keyword let’s see one example if I write the object name person and in this person object we will add the name of the person so first we will add first name and in the first name we will add Elon add one comma then we will add the last name the value is musk and we will add one more information age so here we have created one object with the object name person in this object we have three properties now let’s check the type of this person we will add console.log type of person now you can see in the console tab it is printing object so the type of the person is an object now if we want to print the complete object we will add console.log person in this console you can see it is printing the object that we have created it is printing age 35 first name and last name any object can store two things which is properties and methods in this person object data is stored in key value pairs first name is the key Elon is the value age is key 35 is value these key value pairs are called properties key is always stored as a string here if I write this name in double quote still it will be correct you can see there is no error in the output you can see it is displaying simply first name so by default it will store it as a string in the value we can add any data type we can add a string number arrays Boolean function and we can store an object also when we declare a function as has a value in key value pair then it is known as methods now let’s learn how to access the properties of an object we can access the values of a property by using its key name so the first way of accessing the property is using dot notation we can write object name dot key so it will give the value stored in the key value pair of the object let’s access the value stored in this person object here we have the console.log person and if you want to access the name stored in the first name so we will add person. first name and we will check the console you can see it is printing Elon so we can access the property using dot notation let’s add the age here if you want to access the age object name and key so it is displaying the value in the console you can see it is printing 35 the second way of accessing the properties of an object is using bracket notation so in this example here we will remove this Dot and add a square bracket and we will add this text in double quote as a string now you can see the console tab it is printing 35 so we we can access the property by using braet notation and in this braet we have to add the key name with double quote or single quote let’s add the first name so you can see the first name in the console Alon keys in object are stored as a string so we can add this key in double code like this and we can add a space Also here we are adding first space name like this now if you want to access the value stored in the first name we will add console.log and object name and if you use dot here DOT first name it will give an error we cannot access this property by using do notation in this case we have to use the bracket notation only and in this bracket notation will add the string in double code or single code then you can see it will display the name it is displaying the name alone in the console tab so the bracket notation is also useful to access the properties of an object now let’s see how to update the properties of an object so we have this object person and in this one if I want to update the first name so the first name is Elon and I want to change it so we can add the object name that is person and write the key that will be first name and we can assign a new value or a new data so here we will add Mr Elon Mr Elon so this line will update the first name in the object called person now you can see the output it is displaying Mr Elon because here we are printing person. first name here we have declared one object with the person and here the first name is Elon and in this line we are updating the first name with the new name which is Mr Elon and Mr Elon is printed using this console.log next we will learn how to add a new properties in the object so here we have the object with three properties and now I want to add one more property so for that we will add the object name so the object name is person then we will add the key so key is company so this line will add a new property in the person object now if you want to display the object just add console.log and object name now you can see the console tab it is displaying the object with four properties age company first name last name so we have added one new property company and it is displaying in this object next we will learn how to delete one property from the object so let’s use the same example and here we will add the delete keyword delete then write the object name and key so let’s delete the age that’s it we are adding delete keyword then object name and key now if you want to check let’s see the console tab here you can see it is displaying only three property which is company first name and last name age property is missing because we have deleted age property from this object this is how you can access the properties of an object you can update the property you can delete the property and you can add a new property as I have already discussed in value we can store any type of data so we can store one object also that is nested object so let’s take the same example in this one we will add one more property here we will add address and this address will contain another object that’s it we will add the data in key value pair in this example you can see we have an object called person and in this object we have three properties then we have added one more properties and this property is having one another object that is known as nested object and in this object also we have added the data in key value pairs you can see Street city state country and zip code now to access the data stored in the nested object we can use the same dot notation let’s add console.log write the first object name person and in this object we have the address we will add address and from the address we can access CT now you can see the console tab it is printing Austin now if you want to access ZIP code right person address ZIP code now you can see it is displaying zip code in this console so so this is how you can access the properties of the nested object now we will learn how to check if a property exist in an object to check if a property exist in an object you can use the in operator we can write property name in object name here we have the person object so let’s see one example to check if the property exist in this person we will add age in person it returns true if the property exist in the object so let’s print this in console tab we will add console.log we have to add this age in quotes now you can see in the console it is printing true because age exist in this person now if you want to check first name is exist or not so here we will add first name in person so it will display true because we have the first name in the person object now if you will add country country in person now you can see it is displaying false because in this person object we don’t have any property with the key name country now if you want to display all properties and values of an object without knowing the property name then you can use foreign Loop foreign Loop allows you to access each property and value of an object without knowing the specific name of the property for example we will add for and in this one we will add one variable so let’s declare one variable with the let keyw word and we’ll add the variable name prop that is properties and prop in object name person now we can print this prop so let’s add console.log prop in the console you can see it is printing first name last name and age because in this person object we have three keys first name last name and age so using the for in Loop you can access all properties of an object now if you want to access the values stored in this key we can use the bracket notation as we have already discussed to access the value we use the object name like person and bracket notation and in this one we will add the key so let’s add H so it will display the value so here we will add the same thing let’s add person Square bracket and prop so you can see the output in console tab it is displaying the values only the values are Elon Musk and 35 now if you want to display both key and value so let’s add prop plus and here we will add colum now you can see the output in the console tab it is displaying both key and values stored in this person first name Elon last name musk is 35 so using the for in Loop you can access all the properties of an object there are multiple ways to create an object in JavaScript this was the example to create an object with object literal let’s see another example where we will create an object with the new keyword for that we will add const [Music] person new object so this is the another way to create an object if you want to add some data in this object we can add the object name and key and assign one value so it will add this data in this person object let’s duplicate it and we will add another data last name age now if you want to display this person object just add console.log person you can see in the console tab it is displaying one object with the data Age first name last name so you can see we have created one object with the new keyword and then we have added these data in this person object we can add these data while creating an object Also let’s see I will remove these things remove it from here and in this object just add curly Braes and within this curly Braes write the data in key value pair and here it will be comma now it will create the same thing you can see the output it is same still it is displaying the object with three properties first name last name and AG so this was all about JavaScript object and their properties in this video we will learn about JavaScript object methods JavaScript method is an object property that contains a function definition let’s create one object with the const keyword here we will add the object name person and in this object we will add two properties first name and last name let me create one more property here and I will add the property name GD you can call it property name or key in this gr property we will declare one function to declare a function we use function keyword then name of the function so let me write the function name g and in this function we will print one message using the console log hello world so in this one you can see we have the third property with the function definition this is called as object methods so this is the method of the person object now to call this method we will add the object name that is person and then write the method name GRE and write the parenthesis also now you can see the console tab it will display the output hello world so in the person object we have created one property with the function definition that is known as method and we are calling this method using the object name do method method name parenthesis here we have declared one regular function we can add the anonymous function Also let’s remove this name and we can write like this here we have used function expression to define a function and assign it to the GD property of the person object and still it will display the same message in the console tab hello world we can declare a function outside of the object and assign it to an object as a method here is one example let me remove this function from here and here we have one object with two properties now we will declare one function function name is grd and console.log hello world next we will assign this function inside this person object so here we will add person dot any key name so we will add the key name greeting is equal to greet let me add T it will be correct so in this line I’m assigning this greet in this person greeting now to display the output we will add the person dot greeting parenthesis now you can see the output it is displaying hello world so let’s understand this example again here we have created one object and the object name is person where we have only two properties now we have declared one function and assigning this greet function in this person object the property name or key name is greeting we are calling this method using person. greeting parenthesis now if you want to display this person object simply we will add console.log person now in the console tab you can see it will display the object and in this object you can see we have the first name then this greeting property which is the method in this greeting we have the function definition so this is how you can assign one function inside an object as a method es6 provides us one more way to declare a method for an object let me remove it and in this object we can simply add gr and curly Braes and write the code so this is one more way to declare one function in inside the object as a method we can access this method using the person dot GRE now you can see it will display the message hello world in the console tab now we will learn about JavaScript this keyword to access the other properties of an object within a method of the same object we can use this ke key word let’s see the same example one object with the name person and we have two properties first name and last name now to access the first name we use to write object name do the key name or first name so this is how you can access the property of an object but when we need to access the first name within the method so in this one let’s create one method here we will add one method G one Anonymous function and message console.log hello now in this method if I want to display the first name so here we will add plus this DOT first name so when we need to access the property of an object outside of the object we use the object name and key so we are adding person do first name but here we are accessing the first name inside this method and this method is in this person object so this keyword refers to the same object which is person so we don’t need to write the object name we can simply write this keyword do first name so this will print hello and the first name now to call this method we will add the object name Person dot gr let’s see the output in the console tab it is printing hello Elon let me add a space here now you can see it is printing hello Elon in the console tab so we can use this keyword to access the properties of the same object within the method so when we use this keyword within a method it refers to the same object now let’s define a method that Returns the full name of the person object by containing its first name and last name so remove it and let’s remove this method also and here we will add another method get full name one function and in this function we will add return this function will return the first name and last name to access the property we will add this DOT first name then we will add space so let’s add double quote then Plus this do last name it will access the last name so in this method you can see it is returning this do first name so it will return this value Elon and here this do last name it will return this value musk now to call this method we will add person dot get full name this method is returning some value so we can print it using console.log let’s add console.log person. get full name now you can see the output in the console tab it is printing Elon Musk so it is returning the full name by containing first name and last name let’s understand this example again here we have an object with the name Person where we have two properties first name and last name and one method this method Returns the first name and last name of the person now we are calling this method so it will display the full name which is Elon Musk we can use this keyword outside of the method also but it will refer to the other object let’s remove all these things and here simply add console.log this so here you can see the output it is display Ling window object so if we use this keyword alone or inside a function then it will refer to the global object that is window object or when we use this keyword in the event then it will refer to the element that receive the event this keyword is not a variable so we cannot change the value of this so this is all about JavaScript method and this keyword in this tutorial you will learn about JavaScript Constructor function and and how to use the new keyword to create an object in JavaScript Constructor function is used to create objects let me create an object we will add the const keyword then object name person and in this object we will add properties so the first property is first name and the second property last name this example create a person object with two properties first name and last name but this syntax is used when you have to create single object in programming you often need to create many similar objects like person to do that you can use a Constructor function let me create one Constructor function for that we will add function keyword and then the name of the function person then parenthesis and in this curly braces we will add properties so let’s add this DOT first name and value Elon again this Dot last name and value Constructor function is similar as a regular function but it is good practice to capitalize the first letter of the Constructor function so you can see here I have added capital P in this person a Constructor function should be called only with the new operator we can use the new operator to create an object from a Constructor function till now we have not created any object we have just created one Constructor function to create a new object we use the new operator so let’s see how to create an object using this Constructor function let’s add the con keyword then we can write any name of the object so let’s add the person one this is the object name here let’s add new operator and write the function name person so this line will create one new object that is person one using the Constructor function we can create multiple objects so let’s add one more line here we will add person two so here we are creating another object with the name Person two with this person Constructor function now if you want to see what is stored in the person one console.log person one and see the output in the console tab so you can see the person one is one object with the two properties first name and last name now let’s see the second object also so we will add console.log person two so we are printing both person one and person two in the console so let’s see the output here you can see both output is same when a new object is created using the Constructor function this keyword will refer to the newly created object so in this example here we are creating one new object person one with the new operator and this Constructor function so this keyword will refer to the newly created object which is person one and this first name and last name will be added in this person one as a property so in this example person one and person two object have same property value but we can create multiple object of the same type with different property value also using Constructor function parameters so as you know the parameters in the function here we will add parameters in this Constructor function also so in this function let’s add first last in this Constructor function we are adding two parameters first and last and this first will be stored in this first name this last will be stored in this last name now when calling this Constructor function we have to pass two arguments here we are creating object by calling this Constructor function so to call this Constructor function we have to pass two arguments so let’s pass two value Alon musk for creating this person to object we will pass another argument let’s add another name billgates so in this example here we have one Constructor function with two parameters so to call this Constructor function we have to pass two arguments so this Elon will be here in this first and this first will be stored as a value in this first name property this mask will go here in the last and this last will be stored as the value in this last name property so when we are creating person one it will create one object with the property first name and last name and the value is Elon Musk and when we’ll create the person two object it will also create the object but the value will be different that will be buil gets now let’s see the person one and person two object in the console tab so you can see the output here in this console so in the first object you can see first name Elon last name musk and in the second object we have first name will last name gets so using the Constructor function we can create multiple object of the same type now let’s see how to add properties and methods in an objects so first let’s add one property in person one object so removing this console and here I will add person one to add a new property in this person one just add Dot and the property name age and write the value let’s add 52 now we can print this in the console let’s add console.log person one you can see in the console tab here we have three properties in this person one object which is first name last name and age and the age value is 52 that we have added here person 1. AG is equal to 52 now if I simply want to print the age here we will add console.log person one do age so you can see the console tab it is only printing the value stored in this age property that is 52 now if I try to access the age from the person two let’s see what will happen here I’m adding person to. age and see the output in the console tab it is displaying undefined because we have added this age property only in the person one object we have not added in the person two object that’s why person 2.as will display undefined now let’s see how to add one method in the person two so let’s scroll and here we will add person two dot method name we will add gr and declare one function as we have already studied method is a function decaration inside the object property so here in this person two object we are adding one method with the name gr and declaring one function and let’s say this function will log one message hello great stack we have to write it in codes so we have added one method in the person two object now let’s access this method here we will add person 2 dot GD from person 2 we are calling this GRE method now let’s see the output in the console tab it is printing hello great stack in the console tab so this is the example to add a method in the object now let me remove this and you can see in this Constructor function I have added added only two properties now let’s see how to add one method in the Constructor function so here let’s add one comma and here we will add this dot name of the method get full name and here we will declare one function so this method will return some value so return this DOT first name then we will return the last name Also let’s add one space plus and this do last name so here I’m adding get full name and this method will return first name plus last name that will return the full name name so we have just created The Constructor function now we have to create object also so let me add the same example again I will add person one and person two so we have created person one and person two object using the new operator and Constructor function now let’s see how to access the get full name method so to access the full name just we will add person 1 dot get full name the method name now this method is returning some value so we can print it using log console.log person 1.g full name now you can see the output in the console tab it is printing Elon Musk now let’s access the person two full name and you can see the output billgates the problem with this Constructor function is is that when we create new object using this Constructor function the same method will be created in all the objects created using this Constructor function which is not memory efficient to resolve this we can use the Prototype of the object so that all objects created from this person Constructor function will share this same method so this is all about JavaScript Constructor function in this tutorial you will learn about JavaScript object prototype in JavaScript every function and object has its own property called prototype let’s create one object const person and this person will have name Elon so this is one simple object with only one property that is name but this person object has one more property called prototype let’s see this person object in the console we will add console.log person and you can see in the console tab here it is displaying one object name Elon right but if I expand it you can see the property name Elon but here we have one more property called prototype and the Prototype is also an object a prototype itself is also another object so the Prototype has its own prototype let’s expand this prototype again and expand any of this you can see here again we have the Prototype let’s expand another one here also we have prototype so the Prototype has its own prototype this create a prototype chain now let’s learn prototype inheritance we can use the prototype to add properties and methods to a Constructor function and objects inherit the properties and methods from a prototype let’s see the previous example of Constructor function so this is one Constructor function with two parameters and the two properties first name and last name now previously we were adding like person one that is one object and in this object we can add new property like this person. AG so it will add a new property in the person one object but here we want to add one property in the Constructor function like we have the person Constructor function so we cannot add one property like this in the Constructor function and we cannot add a method in the Constructor function like this after Declaration of the Constructor function we cannot add the extra Properties or method like this to add the another property or method in the Constructor function after declaring we can use the Prototype here we have only two property in this Constructor function so let’s add one more property so to add one property in this Constructor function we will add the function name person then prototype like this and in this prototype we will add one new property name so let’s add the property name gender and the value is male so using this we can add one new property in the person Constructor function now let me create object also so I will use the const keyword and object name so the object name is person one and create an object using new operator and the function name and pass two values and we will create one more object so duplicate this it will be person two and different value so we have two object person one and person two now let’s see whether the newly added property is available in the person one and person two or not so let’s add console.log person one object and and see the output in the console tab here it is displaying first name Elon last name musk here we have only two properties but we have added the another one gender which is not available here but if I expand it and come to the Prototype here we have the Prototype and open this prototype here you can see our newly added property gender male in this prototype so you can see how you can add a new property in the protot prototype and this prototype property will be inherited by all the object now let’s see the output for the person one. GN Zender and see the output it is displaying male because the object is inheriting the properties of the Prototype now let’s see the output when we access the person two for the second person object let’s access the Ender and you can see it is displaying name male again here we have added gender property in the person Constructor function using prototype and this person one and person two objects inherit the gender property from The Constructor function prototype gender property is not available in the person one and person two object you can see in the console but still we can access it because it is added in the Prototype which is here now let’s see how to add one method in the Constructor function so here we have added one gender property so instead of this we will add one method let’s add method with the name get full name and this method will be a function definition so in this function we will return the full name so write return this DOT first name and space this dot last name so in this person Constructor function we are adding one method using the Prototype and this method name is get full name this method will return the first name and last name of the person so let’s see the output of the person one in the console tab you can see it is displaying first name and last name in this console but if I expand it here you can see we have the Prototype and if I expand this prototype you can see in the person one prototype it is displaying get full name method you can see the get full name method is here so this get full name method is not added in this person one or person two this person one and person two object is inheriting this method from the Prototype of the Constructor function so we can access it like this get full name person 1.g full name let’s see the output it is printing Elon Musk now we can access this get full name from the person two also and see the output it is displaying billgates let’s understand this example again here we have created one Constructor function with only two properties after Declaration of the Constructor function we cannot directly add new property or method in this function but to add the new property or method we will use the Prototype so we are adding person. prototype and the method name method is a function declaration so we are adding function and this function will return the first name and last name now here we are creating two objects with the Constructor function person one and person two now this person one and person two does not have the get full name but still we can access the get full name method from person one and person two because it is inheriting the Prototype of the Constructor function so we can access person 2.get full name and we can also access person 1.g full name now let’s see what will happen if I change the Prototype value so let’s create one Constructor function here we will add one property Elon mask and in this one we will add one new property using prototype so we will add person do prototype and the new property name age is equal to 25 so we have added one new property in the Prototype that is age is equal to 25 now we will create one object so to create an object we will use the const keyword and the object name it is person one and new then Constructor function so this will create one new object that is person one so here we have created one new object called person one after creating this object let’s change the value of this property so in the next line we will add person do prototype is equal to age 52 like this earlier we have added age 25 and here we are changing the Prototype property age 52 so after changing again we are creating one new object const person two new and Constructor function so before changing the property we have created one person one object and after changing the Prototype we have created person two object now let’s see the output in the console tab so we will add log person one and person two and you can see it in the console tab it is displaying name Elon Musk in both object but if I try to access age and age in the second object so you can see the output for the person one it is displaying is 25 and for person two it is displaying is 52 because if a prototype value is changed then all the new objects will have the change property value and all the previously created objects will have the previous value so in this example you can see here we have the property value 25 and created one object person one in this person one object A’s value will be 25 and before creating person two we have changed the property so this person two will have the updated property value that will be 52 that’s why it is printing 25 for the person one age and 52 for the person 2 Age so this this was all about JavaScript prototype in this tutorial you will learn about object destructuring object D structuring in JavaScript is a feature that allows you to extract the properties of an object into variables this can be useful for assigning the properties of an object to variables in single statement let’s understand it with one example we will add one object with the name person here we have created one person object with two properties first name and last name to aore these properties value in a variable we used to write person DOT first name this is for accessing the first name of this person and to it in variable we used to write let and one variable name like f name is equal to person. first name like this if I want to store the last name we will add another variable name L name Person dot last name so this is the previous syntax to store the object properties value in a variable but es6 introduces the object D structuring syntax that provides an alternative way to assign properties to an object variables here is the Syntax for object D structuring we will add L and in this curly Braes we will add property name and value another property name and value and here we will add the object name that’s it so let’s assign the properties of this person object in variables using the object D structuring here we will add person and here we will add the property name so the property name is first name and this first name will be stored in the variable called f name now add one comma and write the another property name and for this property name again we need one variable so the variable name is last name so this is the simple syntax of DS structuring we can write the property name and value to store the object properties value in variables now if I check the value stored in this F name variable or L name variable we will just add log F name you can see it is displaying alone if I I add L name here will be capital n and you can see the output musk we can further simplify this syntax suppose you want to add the variable name same as the object’s property name like object property name is first name and last name and our variable name is also first name and last name then here we don’t have to write the variable name just write first name and last name and then object now to print this we will add console.log first name it is printed here in this console now let’s add last name you can see the last name in this console so this is the simple syntax of object destructuring here in this object we have only two properties but what will happen if I add one more property in this object destructuring syntax let’s add one age that is not available in this person object then what will happen let’s see the output if I add console.log age it is printing undefined because this age property is not available in this person so when you assign a property that does not exist in an object to a variable using the object D structuring the variable is set to undefined now in this object D structuring we can add the default values also suppose here we don’t have the age value so we can add like this age is equal to 18 so this is the default value of the age variable if the property is available in this object it will display the actual value and if it is not available it will display this default value 18 so you can see the output it is displaying 18 because the default value for the age is 18 now suppose this age is available here in this object we are adding age 52 now what will be the output you can see the output it is displaying 52 because it will ignore the default value here we already have age declared in the person object so this age variable will store the actual value of the property which is 52 so this is all about object D structuring now let’s learn about object literal syntax extensions in es6 to create one object we used to write like this const person and first name and last name so this is the object literal syntax to create an object with the key value pairs but here if I typ one variable let first name equal to Elon and last name m here we have two variables first name last name so we can simply add first name comma last name we don’t have to write the key values in this object we will simply add the variable name and this person will store this information as key value pair now if you try to print this person let’s add console.log person you can see it is displaying first name Elon last name musk so we are just adding the variable name in this person object and this person will store the variable name and value also as a key value pair so this is all about objects in JavaScript in this video we will learn about JavaScript class classes are one of the feature introduced in es6 version of JavaScript JavaScript class is a template for creating objects to create a class we use class keyword then we write the name of the class within the class we create one Constructor method you should always add a method with the name Constructor within the class the first letter of the class name should be in capital letter JavaScript class is similar to the JavaScript Constructor function to create a Constructor function in JavaScript we use to write function and name of the function I’m adding person in this function we will add here we will add the code to initialize the property value of an object after creating the Constructor function we create object we can write any object name person one new keyword and Constructor function and pass two values here so this is for creating one new object to display the object created using this Constructor function we used to write console.log person one you can see the output in this console tab it is displaying one object with the property name and age now we can create the object using class also so now let’s create the class to create a class we use to write class keyword then class name I’m adding the class name person and in this class name we have to add one Constructor method and this Constructor method is used to initialize the value of the object so let me add this here here we will add two parameters so this is one class with the name person and this line will create one object with this class now let’s duplicate it we’ll create another object with the name Person two and we will pass another value so we have two objects person one and person two now if you want to display the object in console tab you can write console.log and you can see the output it is displaying here one object with two properties name and age and the name is Elon Musk and age is 52 now let’s print second object which is person two you can see the output in the console tab it is displaying another object object with the name billgates and age 67 this Constructor method initialize the property of the object JavaScript automatically calls the Constructor method when you create an object using the class now let’s learn about JavaScript class methods we can add any number of methods in JavaScript class so let me remove this second person and in this class after this Constructor we can add any method so let’s add one method with the name greet and this greet method will return text hello this do name it will return hello and name of the person now I want to display this person one object so here I will add console.log person one and in the console tab you can see one object with two properties name Elon mask is 52 now let’s expand it and here you can see prototype and in this prototype you can see this GRE method in this prototype of the object so we can call this GRE method from this person one object so in this console.log I will add G and you can see the output it is displaying hello Elon Musk because we are calling the Greet method from the object and this greet method is returning the text hello and the name so that’s why it is displaying hello Elon Musk we can add any number of methods so let’s add another method here here I will add a new method change name this change name method will update the name of the person in the object so here we will add new name and then this do name is equal to new name so in this method we are adding one parameter so when we will call this method we have to pass one argument let me remove this console.log and here I will call the change name method on person one object so just add person one dot change name and we have to pass one argument so let’s add a new name I will add my name here AAS now we can print the object let’s add console.log person one you can see one object name aenas age 52 now if you want to print the name only here we will add person 1. name it is printing the name in the console tab so in the JavaScript class you can add any number of method now let’s learn about gets and Setters in JavaScript Getters and Setters are a special methods in JavaScript that allow you to control how properties are accessed and modified they are defined using G and set keyword now let’s understand the getter method a getter is a method that is called when a property is accessed it can be used to do things like validate the value of property or convert it into different format so let’s see this example here we have one class with only one method great and this method is returning hello and the name here we have created one object using this class this code will call the Greet method from the person one object and display the return value in the console so while calling this great method we used to write this parenthesis but when we clear it as a geted method so here we will add get space and the method name that’s it just add the get keyword and after that here you don’t need to write the parenthesis simply add gr person one. greet and save the changes you can see the output it is still displaying the message hello Elon Musk so we have just added this get keyword in front of this method name and we can call it directly without adding parenthesis now let’s understand the seter method with one example here we will change the method I will add change name new name this do name is equal to new name to call this method we need to write person one dot change name and pass one argument like this but here we will add set keyword in front of this method just add set then we don’t need to write this parenthesis and pass the argument simply we will add person one do Setter method name and assign one value using assignment operator like this and see the output here I’m displaying the person one object it is displaying one object and name is AAS age 52 like this so we add this set keyword to Define one Setter method we can call this method on object and assign one value with assignment operator a Setter is a method that is called when a property is modified it can be used to do things like update the value of the property or perform some other action we can use the same method as getter and Setter let’s see one example let me change the method name it will be person name name and here I’m adding set now we will add get this will be getter method and I’m adding the method name same as the setter method here also person name and this will return return this dot name so you can see here we have declared one class in this class we have one Setter method and one getter method and both method name is same person name and person name now to call this getter method we’ll simply add console.log person one do person name so it will return the name of the person you can see the output it is displaying the name now we can update the name using this Setter method so let’s add person one dot person name and just assign one value after that again we will call this get method that will displ play the name so you can see the output first it is displaying the name Elon and after that it is displaying the name ainash so we have the same method name as getter and Setter to call the getter method we are simply adding the object name and Method name and to call this Setter method we are adding object name and Method name and assigning one value that’s it when we assign any value it will call the setter method and update the properties value let’s learn about JavaScript class expression a class expression provides you an alternative way to define a new class it is similar to a function expression but it uses the class keyword instead of the function keyword class expression can be named or unnamed if they are named the name can be used to refer the class later if they are unnamed they can only be referred by the variable that they are assigned to so let’s define one class expression we will add the class keyword in this class we will declare one Constructor method this Constructor method will initialize the object property property name is name here we will add name and in this class we will add one method method name is get name it will return the name now we will assign this class in a variable let’s add let keyword person is equal to class A Class expression does not require an identifier after the class keyword you can use a class expression in a variable declaration now we can create an object so let’s add cost person one new person we can refer this class with this variable and here we will add one [Applause] argument now we can display our object in the console tab so let’s add console.log person one you can see the output in this console here we have one object with the name Elon Musk so this was the class expression in JavaScript in this video we will learn about JavaScript class inheritance JavaScript class inheritance allows you to create a new class on the basis of already existing class using class inheritance a class can inherit all the methods and properties of another class inheritance is a useful feature that allows the code reusability to create a class inheritance we use the extend keyword so let’s create one class write the class name Person add one Constructor method and add one method GRE console.log hello and name here I have created one class now I will create another class that will inherit all the methods of the person class so here we will create another class and the class name is a student then write the extends it will extend person so we are creating another class with the name a student this a student class will inherit all the method and properties from this person class in this new class we have not added anything but let’s create one object here we will add con student one this is the object name is equal to new student and we have to pass one value Peter so we have created one object with the name a student one and we are passing one value in this student but this student don’t have the Constructor and here we have added extends keyword so it will inherit all the method of this person class and it will pass this page Peter here in this Constructor and the name will become Peter and we can also call this greet method so let’s try to call this greet method we’ll add a student one do greet you can see the output it is displaying hello Peter so this property name is available in this person class this method is also available in this person class but we are creating the object object with the a student class and calling this method from the object of a student class so we can call the method and properties of the parent class it means a student class is inheriting all the method and properties of the person class now let’s learn about JavaScript super method the super method used inside a child class donates its pent class in this student class let me create one Constructor add one parameter and in this Constructor we will call Super here this super method inside the student class refers to the person class when we create one object using the student class it will call this Constructor method automatically then it will call this super and then the super will call this Constructor from the parent class which is person class and pass this name here in this Constructor then the argument will be stored in the person’s name still it will display the same output you can see in the console hello Peter let’s understand this example again here we have created one person class and we have another class with the name student and this student class class inherits the property of the person class so this is the parent class this is child class in this child class I’m adding super so this super refers to the parent class which is person class and it will pass this argument in the pent class so this was the Super method in JavaScript now let’s understand what is Method or property overwriting or ping method suppose the parent class and child class has the same method or property name in this case when we call the method or property of an object of the child class it will override the method or property of the parent class this is known as method overriding or cying method let’s understand the method overriding with one example here we have the parent class and this is the child class in this one let’s create the same method greet and in this greet method we will add console.log hello student plus this dot name and in this one we will add hello person this do name so you can see in this parent class and child class we have the same method name which is GRE in the parent GRE it prints hello person and name and in child class this greet method prints hello student and name now if we call the Greet method from the object created using child class then it will call the method of the child class you you can see the output in the console tab it is displaying hello student Peter it means it is calling this greet method from the child class so the method of the child class override the method of the parent class this is known as method overriding now let’s learn about JavaScript static methods static methods are bound to a class not to the instance of the class you cannot call the static method on an object it can be called only on the class so let’s declare one class class name is person and in this one let’s declare one method this method will display only text hello on the console now in front of this method if I add static it will become the static method now we cannot call this greet method on the object created using the person class we can call this greet method only on the person class let me make it capital P here the name of the class should just start with capital letter now let’s create one object here we will add const person one is equal to new person Peter and if I try to access the GRE method from the object object name is person one dot GRE it will display one error you can see the console tab it is giving an error now if I add person. greet I’m adding the class name and greet you can see the output here it is displaying hello now if you want to use these object properties inside this static method then you can pass the object as a parameter so let’s take another example here we have the person class then we have the St method in this a static method we will add one parameter X and in this console.log I will add hello space X do name so it will display the name from the object now we can call this greet method from the person class and we have to pass the object let’s pass this person one object here and now you can see the output it is displaying hello Peter because here I’m adding hello then object then property name so from this person object it will get the property name name is equal to name so the name will be Peter and here I’m adding text hello so hello Peter is printed in this console so this is the static method in the JavaScript now we will learn about JavaScript private methods private methods are accessible only within the class it means we cannot call the private methods outside of the Class by default methods of a class are public to make a method private we need to start the method name with the hash tag so let’s take one example I will add class person Constructor first name and last name we have two parameters this DOT first name will be first name then this do last name it will be last name now let’s create one method in this class method name is full name and it will return this DOT first name then a space this do last name so it will return the full name now let’s create one object using this person class I will add const person one is equal to new person and here we have to pass two argument Peter and let’s add anything B so we have created one object with the name person one now let’s see if I add person one dot full name we can call this method right and it is returning one value so we can add console.log person. full name you can see the console tab it is displaying Peter V it is returning the full name now if I add hashtag here so this method will become private method now we cannot access this private method outside of this class you can see the output it is giving an error now let’s see how to access this private method inside the class so in this class only we will create another method let’s create one method called display here we have display method and within this display method I will add console.log and here we can call this method but to call this method we have to add this this dot full name this will refer to the object and this is the private method with the hashtag now we can call this display method outside of the class so simply add person one 1. display and it will display the output here in this console tab it is displaying Peter B so let’s understand this example again here we have declared one class with the name person in this one we have this Constructor that will initialize the object properties then we have this private method and this method name I have added has tag that’s why it becomes private method now we cannot call this private method outside of the class we can call this method inside of this class so within this class we are calling this method here and to call this method within the class we need to add this keyword this dot method name with the hashtag so like this we can call the private method within the class now let’s learn about private static method this is the private method now we can can add the static keyword like this so it will become private static method and we cannot call the static method on the object we can call the static method only on the class so here we have to pass one object while calling this method so here we are calling this method so in this one we will pass the object so we will refer the object with this keyword we will pass the object and here we will add one parameter and from this parameter it will get the first name and last name it means it will get the first name and last name from the object that we are passing through this keyword while calling this private static method now you know we cannot call this a static method on the object we can call it on the class so instead of this keyword we will add class name person person dot has full name now you can see the output it is displaying Peter B let’s understand this example again here we have declared one class in this class we have one static private method now to call this a static private method we will use the class name dot method name with the hashtag and to get the object’s properties we are passing the object as argument here we are calling display method from the object this display method will call this class and this static method that is a static and private method so we can access the estatic private method using the class name person now we have completed class in JavaScript now we will learn about document object model the document object model is an API for manipulating HTML documents the Dom provide functions that allow you to add remove and modify part of the document effectively the Dom represents an HTML document as a tree of nodes in this HTML code you can see this is the node this HTML tag is a node this head tag is also one node this title tag is a node this text Greatest Tag is also one node this body tag is a node this comment is a node and this P tag is also a node now let’s understand about the node type so this one is the document type node these HTML head title body these are the element type node and these text are the text node and this is the comment node now let’s learn about node relationship any node has relationship to another nodes in the Dom tree and it is same as described in the traditional family tree for example this body is the child node of this HTML node and this HTML node is the parent node of this body node this body node is the sibling of this head node because they share the same immediate pent which is HTML element now let’s add some other content within this body here we will add one div and add this P tag within this div let’s duplicate this so we have four P tag in this div so this div element is the pent node of these P tag and the P tag is the child node of this div this one is the first child and this one is the last child the second p is the next sibling of the first one this third p is the next sibling of the second one and the fourth one is the next sibling of the third one in same way you can say the first one is the previous sibling of this second P the second p is the previous sibling of third p and the third p is the previous sibling of fourth p now let’s learn about selecting elements using Dom to get elements in JavaScript there are various method in Dom so the first one is get element by ID method get element by ID method returns an element object that represents an HTML element the get element by ID is only available on the document object let’s understand this with one example here I will remove this comment and I will add only one text in P tag and for this P let’s add one ID so I am adding the ID message and in this P we have the text JavaScript Dom now let’s add the JavaScript in this HTML page using the script tag within this script tag we can add our JavaScript code here we will add one variable with the name MSG which is message and we can write document dot get elementy ID and here we have to add the ID of this element which is message so this document. get element by ID will select this element and it will be stored in this message variable now we can print it let’s add console.log MSG here you can see the output in console tab P ID message JavaScript Dom so this element is printed in this console because I’m adding console.log MSG so in this MSG variable we have stored this element which is in the P tag if the document has no element with the specified ID then it will return null Suppose there is no element with this ID on the web page then it will return null you can see null and if there is multiple element with the same ID it will return only first element let’s duplicate it and in this one we will only write JavaScript now you can see the output in console it is still printing ID message JavaScript Dom so it will select the first element with this message ID because the ID of element is unique with the HML document the document. getet element by ID is a quick way to access an element now we will learn about get Elements by name method every element on HTML document may have a name attribute multiple HTML elements can share the same value of the name attribute let’s take one example here we will create one input field and in this input field I will add the type radio and we will add one name attribute name will be language and value will be JavaScript we can add another input field with the same name attribute and value will be something else python in this HTML code you can see we have two elements with the name attribute and we can select this element using this name so in this sub script we will add let BTN is equal to document do get Elements by name and in this one we will add language because the the name value is language now we can print this let’s add console.log BTN and you can see the output in the console tab here we have the node list that contains two input field you can see input and input so get Elements by name returns one list of nodes now we will learn about get Elements by tag name the get Elements by tag name method accepts a tag name and return a live HTML collection of elements so let’s understand it with one example in this HTML we will add one title in H1 so the text is first heading let’s duplicate it this is second this is third this is fourth we have four text here in the heading tag now we can select the element using the tag name which is H1 so here in this sub script we will add one variable with the name heading is equal to document dot get Elements by tag name and here we will add the tag name which is H1 now we will print it using console log heading so you can see the output on the console tab it is returning the collection of four HTML elements you can see H1 H1 H1 four times so this get Elements by tag name return the collection of HTML elements now we will learn about get Elements by class name the get Elements by class name method returns an aray like of object of the child elements with a specified class name the get Elements by class name method is available on the document element or any other element also so let’s understand it with one example here we will add one class name in the first title so the class name is message in the second one we will add the class name message and in the third one also we will add the same class name message let’s delete the fourth one now we can select these elements with the class name in this script let’s add let MSG is equal to document dot get elements by class name and here we will add that class name which is message now we will check the output in console MSG and you can see the output here it is returning the collection of three HTML element with the class name message you can see H1 do message H1 do message H1 do message so it is returning all the HTML elements with the same class name now let’s come back to the code and here we have added document. get Elements by class name we can add this get Elements by class name on any element also so let’s see the example here I will add one div and insert these two title in this div and for this div we will add one ID let’s add the ID container so total we have three headings with class name message but these two headings are included in this div with the ID container now we will add the get Elements by class name over this container so we have to store this container in one variable so let’s add let cont is equal to document do get element by ID and the ID is container now we can write cont here in sh of document we will add cont which is container and get Elements by class name now it will only give the elements within this container you can see the output here we have only two elements HTML collection 2 we have two HTML elements in this collection H1 do message H1 do message so this get Elements by class name will return the collection of HTML elements with the same class name on the document or within the element now let’s learn about query selector and query selector all method the query selector method allow you to select the first element that matches one or more CSS selector the query selector is a method of element interface we can apply this on element also here we will add one variable let MSG is equal to document dot query selector and in this query selector we have to add the CSS selector so in CSS to select this title we used to write Dot message because it’s a class name so we used to write do message to select this element in the CSS file so we have to add the same thing here we have to add the CSS selector in this quy selector that’s it so here we will print console.log MSG so first let’s see the HTML code here we have one title with this message another title with this message and third title with this message so total we we have three title with this message class name now let’s see the output in console tab here it is displaying only first element H1 class name message first heading so let’s come back here you can see we have added query selected only so it will return only first element now we will add query selected all after adding query selected all you can see it will display all the elements we have node list of three element which is H1 message H1 message and H1 message so it is returning all three headings and if I remove this all and write query selector only it will only return the first element here we have added quy selector all on document we can use the quy selector all on any element also so let’s add cont for container is equal to document do get element by ID here we will add this ID container now we will add this query selector over this container so just add container do query selector so it will give only two elements which is here second heading and third heading now you can see the output in console tab here it is displaying node list 2 it is displaying Two element so it is selecting only two elements which is in the container with the class name message now let’s come back to the previous example document do query selector all now let’s see what we can add in this query selector so we can add the class name using Dot so we can add the ID also we will add the ID and we can write this container we will add hashtag and this container because we used to write like this for CSS selector hashtag container because here we have the ID container so we can add the hashtag to select the element with the ID now we can add like this directly div so it will select this div element if we just write H1 so so it will select all the heading element with H1 tag we can write like this also div and H1 so it will select the heading within this div you can see the output here we have 2 H1 only now come back and we can select the multiple element like this div also and H1 also so it will select all the div element and all the H1 element by adding one comma you can see here we have four element node list four one is div with the container ID and three H1 tag with the class name message so basically we can add all the CSS selected in this query selector and query selector all method now we will learn about traversing elements to understand how to get the pent element how to get child elements and how to get the siblings of an element to get the parent node of the ESP specified node in the Dom tree we can use the parent node property in this body let’s create some HTML elements We’ll add one div with the ID title and within this div We’ll add one text NP tag welcome to greatest tag and for this P let’s add one class name text so we have one parent element and one child element now we will try to get the parent element using this child element so here in this script we will add let txt is equal to document dot query selector and we will add dot T text so it will select this P element now we have to get the parent so we will add console.log then txt which is the child element dot parent node this one just add this parent node and it will display the parent element of this child element so now let’s see the output in the console tab here you can see it is displaying div class title which is the pent element now let’s learn how to get the child elements we will learn about how to get the first child Element last child element and all children of the a specified element so here we will add another example just remove it and within this let’s create multiple P tag we have four text here Greatest Tag one two three and four so we have four title welcome to greatest tag 1 2 3 4 so now we’ll get the child element using this parent element now Within in this script first we will select this parent element so let parent is equal to document do query selector and write the query selector title so it will select the div now we have to get the first child last child and all the children of this div so here we add console.log and this parent then we will add first child now you can see the output in console tab here it is displaying # text because here we have some space so so this space is also one empty text node if we remove this and write it in the same line now you can see the output in console tab it is displaying the first title which is welcome to greatest tag one and if I add a space here it will display one text node now I want my text like this and I want to display the first element so here we will just just add first element child like this parent. first element child now you can see the output it will display the first element welcome to greatest tag one the first title in P tag similarly we can add last element child like this and see the output it is displaying well welcome to greatest tack 4 right so it is giving the last element which is welcome to greatest tack four now if you want to get all the child elements just add child nodes that’s it after adding this come back to the web page and here you can see we have node list text again P again one text again P so we have the empty text node then P tag let’s come back and here if I remove this a space and write everything in the same line like this now you can see it will only display four element which is 4 P element so we got the child nodes of this div now we will learn about how to select the next sibling and previous siblings of an element so in this example in this second P tag we will add one class name let’s add class name second like this so it’s easy to select this element and according to this element we will find the previous siblings and next siblings so here we will add second here also second so it will select this welcome to Greatest Tag 2 now to get the previous sibling here we will add this element then Dot and write previous element sibling that’s it you can see the output it is displaying welcome to greatest tack 1 so we are finding the previous sibling of Welcome to greatest tack 2 now just come back and here we will add next so it should give this welcome to greatest tag three because we are selecting this second one and we are adding next siblings so it will display third now let’s see the output H is dis playing Welcome to greatest Attack 3 so this is how you can select the previous siblings and next siblings now let’s learn how to manipulate the HTML elements so the first one we will learn is create element to create an HTML element we use the create element method the document. create element accept an HTML tag name and return a new node with the element type so let’s understand it with one example here we can add document dot create element and in this one we have to add one HTML tag so let’s add the div tag so it will create one div element we can store it in any variable so we’ll add let div is equal to document. create element div so it will create one div element now we can print it let’s add console.log div you can see the output on the web page it is displaying this div this div is empty right now so let’s come back here in the next line we will add div div dot inner HTML we will learn inner HTML also so here we can write any HTML code we will add one P tag and in this P we will add welcome to greatest tag and close this P now we’ll see the output here you can see one div and here we have one text in this we have one div tag and within this div we have P tag and the text is welcome to greatest tag so you can see using this document. create element we can create One D element or any HTML element and we can add any HTML code within this element and we can print it and we can also add this element on our web page so to add this element on our web page here let’s add document dot body we will add this element on the body so here we will add body dot app and child we will learn the app and child later so to insert this newly created div in this body we are adding appen child div so after adding this come back to the web page you can see we have text here welcome to greatest tack right so this is added us using this appen child div that we have newly created within this body you can see we have not added any text in div or P tag we are creating this element using this document. create element if I change it welcome to greatest tag two you can see it will be deflected here welcome to Greatest Tag 2 now we can add the ID or class name anything in this newly created element so here let’s add div. ID is equal to title let’s see here we have this div with the ID title now we can add the class name also just write div. class name title and you can see the output here D class title so we can create a new element using document. Create element and we can add the content here we can add the ID we can add the class name or any other attribute next we will learn append child method we use app and child method to add a node to the end of the list of child nodes of a a specific parent node the append child can be used to move an existing child node to a new position within the document so let’s create some HTML elements here here we will add one UL tag with the ID menu so we can easily select it here we will add some content in lii home second one is about third one is blog right you can see these elements on the web page home about blog let’s come back let me add one more here we will add project now within this script we will add let menu is equal to document do get element y ID and the ID is menu so it will select the UL element now we have to create one element and we will add that element in this UL so here let’s add let list is equal to document dot create element and the element tag name is is lii so it will create one lii element and its name is list so in this list we will add inner stml and through this inner HTML we will add one text contact like this now we can use menu do appen child list so this is the element which is here ul and this epen child will add this list at the end of this list in this list we have home about blog project so it will add the newly created list item after this project so here we have created one list item and the text is contact so this contact will be added after this project you can see on the web page here we have home about blog project and after this project we have contact that we have created using this create element and added using appen child in this UL so this newly created list will be added at the end of this list next we will learn about text content to get the text content of a node and its descendants you can use use the text content property so let’s see one example here we have the same HTML elements and this a script we have added this line that will select this UL element and after that remove this and here we will just add console. log menu so it will display the complete menu in the console tab now we just want these text so here we will add menu dot text content that’s it menu do text content and see the output in the console tab here it is displaying home about blog and project so it will ignore the HTML tag and display only text now let’s see one more thing here if I write inner text we are adding inner text and see the output still it is displaying home about blog and project but there is one difference this inner text is following the CSS also in this last one if I add a style display none so it will be hidden from the web page you can see that is not visible so this inner text will return only visible text you can see here we have home about blog and these home about blog is here on the web page but we have one more element here project which is invisible but if I write text content it will display all the HTML text content you can see on the web page we have home about blog only but here it is displaying home about blog and project so this text content is displaying all the text inside that element and inner text is displaying visual text only now we can use the text content to insert the text also let’s add menu dot text content is equal to hello so in this menu right now we have these list so it will remove this list and it will add hello let’s see the output here you can see we have only Hello in this web page so we can read and add the text using this text content on the web page next we will learn about iner HTML so inner HTML is used to add the HTML code on the web page so here we have added textt content so instead of this we will add inner HTML and see the output on the web page you can see we have hello so it is in the normal text so here if I write H1 it will add this hello text in heading so so it is in heading style hello so this inner HTML accept the HTML tags and add the text on the web page but instead of this inner HTML we will add text content now you can see what will happen it will add this as a plain text H1 is also displaying here and if I add in our HTML it will add this text and this hello text will be in the heading Style you can see this hello text on the web page next one is after method we can use after method to insert one or more nodes after the element so this is the Syntax for after method we have to add the element name then after method and we have to pass a new node that we want to add after that particular element suppose we have this menu element so we can write this menu then after method in this one we can pass a new element and we can create a new element using the create element method this after method can accept multiple nodes so we can add multiple element after this menu it can also add a string after the element so we can add multiple string s str1 s Str 2 like that we can add multiple string after this menu element so so this is the use of this after method now let’s learn about append method so this append method is also similar as append child but in the append method we can add multiple elements this is the Syntax for append methods we have to add the parent element then append then we have to pass a new element that we want to add in that parent element so this new node or new element will be added in the parent element at the end of the list of childs so what’s the difference between append and append child so this appen will accept multiple nodes and it can add string also the next one is prend Method so this is the Syntax for prepend method parent node. prepend and new nodes so it will add the new node as a first child in this parent node so this is the prepend method the the next one is insert adjacent HTML so this is the Syntax for insert adjacent HTML here we have to add one element then insert adjacent HTML method and here we have to give position and text so suppose we will add this element menu and we want to add one text at the end of this list so here we have to give the position so the position can be before begin after begin before end and after end so suppose we add before begin so this element is starting from here so this before begin position means it will add the new node before this ul and if we add after begin it will add it here at this position and if we add position before end so this is the end so it will add before end here it will be added in this line and if we add after end so it will be added after closing of this UL so let’s test it here we will add any one position I will add before end let’s add before end and here let’s add lii contact like this so here I’m adding one html text and this is the position and this is the element where we want to add this so you can see the output on the web page the contact is added here now let’s come back and if I add after begin so it will be added here at this line because this is a starting of this element and it will be added here you can see the first one is contact and after that home so this is how this insert adjacent HTML works now the next one is replace child here is the Syntax for the replace child method replace child method is used to replace the child element with the new one so we can use this syntax we will add the parent node then replace child method here we have to add the old child that we want to replace and here we have to add a new child that will be replaced on the place of old child next one is clone node method we can use clone node method to clone an element here is the Syntax for clone node method we will add the original node then clone node so this new node will have the another copy of this existing node if I add menu so this new node will have one copy of this menu element let’s print this one here we will add console.log new node you can see the output it is displaying ulli menu now let’s come back and here we can pass the argument so if I WR true it will clone this descendants also this UL element and these Li elements Also let’s come back you can see we have ul and all these Li and if I remove it or write false by default it is false we don’t need to write but if I write false you can see here we only have UL element and if I remove move it still it will be only ul and if I write true it will clone the element and all the child element also you can see ul and all three lii so this is the Clone node method next one is remove child method to remove the child element of a node we can use remove child method here is the Syntax for remove child method here we have to add the pent element and then write the element that we want to remove from the pent element so here let’s add menu and from this menu suppose I want to remove this last one so here we will add menu dot last child element so it will remove this blog you can see on the web page here we have home about blog is missing if I write menu DOT first element child so it will remove the first element which is home you can see on the web page here we have about and blog so this is the remove child method next one is insert before method we can use insert before method to insert a new node before an existing node as a child node of a parent node here is the Syntax for insert before method we have to add one pent element then this insert before method and it will accept two arguments in this one we have to add the new element that we want to add and we have to add the existing element before that existing element this new element will be added we have the pent element menu so we will add menu here and we want to add the new element before this lii that home link so here we’ll add menu DOT first element child so this new node will be added before this home so this is the insert before method so these are the methods to manipulate the HTML elements now we will learn about attribute methods so let’s understand what is attributes here I will add one HTML element input type is text we will add one ID so let’s add the ID username and we can add the placeholder also username so in this HTML tag we have added three attributes which is this one this one and and this one this is the attribute name and this is the attribute value the ID is the attribute name username is the attribute value this placeholder is the attribute name and username is the attribute value now how we can get the attributes of any HTML element using JavaScript so let’s add one script tag here where we will add our JavaScript code first we have to select this element so we can use any method to select the element let input box is equal to document. get element y ID I’m using get element by ID method and we will add this ID username after selecting the element we can find the attributes available in this HTML element so to get the attribut we will just add the element which is input box and after that just add attributes that’s it it will give all the attributes available in this HTML element so to print this in console we will add console. log and add this code inputbox do attributes after writing this let’s come back to the web page and uh you can see the console tab it is displaying type then ID then placeholder so we have three attributes in this HTML element now we have some attribute methods to get the attribute value and to set the attribute of any HTML we can check for some attribute whether it is available or not and we can also remove the attribute using the attribute methods so let’s see the first method which is get attribute so instead of this we will add the element which is input box and here we will add get attribute and in this get attribute we have to add one argument so we will add the attribute name so here we have the attribute name type so just add type like this and after that let’s come back to the web page you can see here is displaying TT so we can read the value of the attribute using the get attribute method let’s take another example here I will add this placeholder write this placeholder here now it will display the value written in this placeholder attribute so come back to the web page here you can see it is displaying username this username text is available in the placeholder attribute so this was the first method get attribute to read the attribute value now we will learn about second method which is set attribute so let’s remove this one here we will add the element which is input box on this input box we will apply set attribute and the set attribute will accept two argument so the first argument will be attribute name and the second argument will be attribute value like this here we will add the name comma value like this so let’s remove this here and here we will add any attribute name so let me add the class so the attribute name is class and here we will add one value let’s add the class name user like this so it will add one attribute which is class and the value is user now to see the updated input let’s add console.log and here we’ll add input box so it will display this complete element on the console so let’s come back to the web page here in this console you can see we have the input element with the type text ID username placeholder username and there’s one more attribute which is class user that we have added using this input. attribute class user so this was the set attribute method now we will learn about next one which is has attribute so it will tell us whether this attribute is available on the element or not it will result in true or false so here we will add another example we will add the element input box then has attribute and this will accept only one argument so in this one let’s let add class and it will return one true or false value so we can directly print this one so just add console.log input box has attribute class so you can see in this input field we have the type ID and placeholder we don’t have class here so it should return false let’s see the output you can see it is displaying false now let’s come back and instead of this class we will add ID so it will return true let’s come back to the web page you can see it is displaying true in this console so this has attribute will return true or false value if the attribute name is available in the input field it will return true if this attribute name is is not available in the input field then it will return false so using this has attribute we can check the availability of that particular attribute on the element next we will learn about another method which is remove attribute that will remove the attribute from the element so in this one we will add element then remove attribute and in this remove attribute we will add one attribute name that we want to remove so here we have type ID and placeholder so let’s try to remove this placeholder just copy this one paste it here so this remove attribute will remove this placeholder from this input element now we will just print this input element in the console we will add console.log input box and now we will see the output in console here we we have the input element and in this input element we have type text ID username but here we don’t have the placeholder because in this code we have added remove attribute placeholder so it will remove this placeholder attribute from this element so these are all four attribute methods now we will learn about manipulating elements a style to manipulate the style of the element we have the property called Style and we can use this a style property to get or set the inline style of an element so here we have the HTML element which is input and in this one we don’t have any inline style so let’s add one style here and here we will add the background color value is red and let’s add one more CSS property here that will be for font size 20 pixel so in this HTML element we have added the inline CSS in this one we have added the background color and font size now to get these inline CSS we can use the style property on this element so here let’s add the element which is input box do style so it will return the CSS properties available in this input field in the inline CSS it is returning some value so we can add console.log and this code now you can see the output in the console tab in this console you can see it is displaying background color and font size because here we have only two inline CSS properties which is background color and font size so this element do style will return the inline CSS available in the element now if if you want to return the background color value or the font size value then we can write input box style dot background color like this after adding this come back to the web page here you can see it is displaying red background color value is red now if you want to see the value of this font size here we will add font size and you can see the output here in the console tab it is displaying 20 pixel so we can get the property name also and value also now we can use this style property to set the style of the element so let’s add input box and on this input box we will add a style and in this a style let’s add one new CSS property let’s add padding padding is equal to 10 pixel after adding this we will display this input in the console so we will add console.log input box so it will display this input field in the console tab where it will add the padding also so let’s come back here you can see we have this input element in this one we have the style background color then font size and after that you can see this padding let’s select this one here you can see padding and the padding value is 10 pixel so using this style property we can get the inline CSS and we can also set the inline CSS now we have one more option to add the inline style in the HTML element that is using CSS Tex text so here we will add the element then style then CSS text and in this CSS text we can add the CSS so let’s add width 200 pixel after adding this let’s print this element in the console you can see the output here on the web page it is displaying this element with the style width 200 pixel here we have only one CSS property which is width 200 pixel let’s come back to the web page we have added CSS text with 200 pixel so it will override the existing inline CSS you can see we already have background color font size but it is not available on the web page why because we are adding width 200 pixel using this CSS text so it will override completely it will remove this and add this one but if you want to keep the existing CSS also and add this one also then you can use the concatenate to perform the concatenate we will just add plus before this assignment operator like this after adding this again come back to the web page now you can see in this input field we have the multiple CSS properties which is background color then we have font size and width also so after adding this concatenate we can use the existing inline CSS also and we can add a new inline CSS using this CSS text we can add multiple CSS properties at the same time you can see we have added width so we’ll add more CSS properties just add semicolon and add another CSS property let’s add height height will be 100 pixel now we will come back to the web page you can see height is also applied in this input field you can see it in the console also here we have height 100 pixel so using this CSS text we can add multiple CSS properties in the HTML element as a inline CSS so this was the use of CSS text for modifying the inline CSS of the HTML element now we will learn about get computed style method currently we have learned how to modify and get the inline CSS properties of the HTML element using JavaScript now how to get the CSS properties written in the external CSS so let’s remove the CSS from here remove this inline CSS and we will add the CSS properties in this head here we will add style tag within this style we will add the CSS selector input and for this input we will add the background let’s add the background color red and font size 12 pixel so we have added two CSS properties for this input element now how to get these CSS properties to get the CSS properties of this input element we will use get computed style method so let’s see the syntax first this computed style method is a window object so we will add window do get computor style and in this one we will add the element we can add one more argument that will be C element so this is the Syntax for get computed style in this one we will add the element if you want to get the CSS property of the element and if you want to get the CSS properties of the seudo element then you have to add the element and it C2 element and now let’s see the example for this input field so here we will add window do get computered style and in this one we will just pass to the element which is input box now it will return the CSS properties available on this input field so we can print it using console console. log and add this one now let’s come back to the web page to see the console tab here it is displaying all the CSS properties that are applied by default on the element in this one we will find the background color also you can see the background color here and there will be font size also it is here font size so now we can get the value of the particular CSS property so from this input box we will add font size now it will display the value of this font size you can see it is displaying 12 pixel that we have added here in external CSS now let’s add the background color we are adding this window. get computed style then passing this element and from this element we’ll get the value of this background color let’s come back to the web page here is displaying the color now let’s come back in this one we will add one more property let’s add the width of 300 pixel and here we will add dot width then we will see the output it is displaying 300 pixel so using the git computer style method we can read all the CSS properties applied on any HTML element now we will learn about class name property class name property return a list of classes separated by space so let’s take one example here we will add one title in H1 tag so let’s add the text greatest T and and with this H1 we will add one ID to select this element we will add the ID title and let’s add some class name also so let’s add the class main the first class name let’s add one more class name which is message so in this one we have added two classes which is Main and message now to get the class name of this element we will use the class name property of JavaScript so let’s add the JavaScript here in this script tag first we have to select the element so let’s add the variable with the name title and select the element using document. get element by ID and write the ID title after that we will add title dot class name that’s it it will return the list of classes available on this element so it is returning some value then we can print this one in console let’s add console.log title dot class name that’s it now we will come back to the web page now it is displaying the classes available on this element which is Main and message so we have two classes we can use this class name property to add a new class also so let’s come back here and here we will add title dot class name is equal to new so this will add one class name which is new in this element let’s remove this class name here we will display the complete element in the console using this console.log title let’s see the element here you can see it is displaying this HTML element with ID title and class new we have only one class which is new but in this HTML you can see we have already added Main and message so this will override these classes here we have two classes that will be removed and this new will be added in this class but if you want to keep the existing class also and new one also then you can use the concatenate using this plus and this assignment operator after adding this here we will add a space and let’s come back to the web page now you can see the same element H1 here and in this element we have class main message and new so we have total three class here so using this class name we can read the class name of the HTML element and we can add a new class also now we will learn about class list property class list return the collection of CSS classes so let’s see if we add class list and it is returning some value so we will print this one title. classlist like this we are just adding title. class list and you can see we already have Main and message class in this element now we will come back to the web page in this one you can see we have a list where we have Main and message class so we have two classes so this class list is returning the collection of classes available in any HTML element so this was the first use of this class list to display or get the class list of any HTML element now we can use this class list to add the class to remove the class so let’s understand how we can add a new class using this class list so in this title element we will add classlist do add like this we are adding class list do add and in this one we can add a new class just add new like this that’s it after adding this we will display this complete element in console tab we are displaying this title let’s come back to the web page here you can see we have this element with three classes main then message then new let’s change the size so you can see we have total three classes main message and new now let’s come back if I add multiple classes we’ll just add a comma and add a new class name like new two so we are adding another class name like this we can add multiple classes using this class list you can see we have more class name here main message new and new to so using this class list. add we can add a new class name in the stml element now we can use this class list to remove any class so instead of this add just type remove class list. remove and what we will remove we already have Main and message so let’s remove this message write it here in a quote and come back to the web page here you can see in this element we only have one class which is main now just come back and we can remove both classes so let’s add comma and write main so it will remove the another class also we can type multiple class name here and it will remove all that classes from that element you can see this element in this element we don’t have any class we have the class attribute name here but we don’t have any value in this class next we can use this class list to replace any class so instead of this remove we will add replace and to replace this one we have to add the existing class name and new class name so in this HTML element we have message so write message here and we are adding a new class name instead of this message so we’ll add MSG so instead of this message we will replace it with MSG now just come back to the web page you can see the output in console here we have class name Main and MSG so we are replacing this message class with MSG class using this class list. replace place now we have one more option to check whether the class is available or not for that here we will add class list do contains and in this one we will add any class name so this message is here we are adding message so this will return the value either true or false if this message is available in this element then it will return true if it is not available it will return false so we’ll just print this one remove it from here add it in console and come back to the web page you can see it is printing true because this message class is available in this element so we are adding class list do contains and class name this class name is available in the element that’s why it is returning true suppose we add MSG and this MSG is not available in this element then it should return false you can see the output it is false now we have one more thing which is toggle let’s see this example here we will remove this one we will just print this complete element in console and here let’s add title dot class list. toggle and in this toggle we can add any class name suppose we add message what will happen if this message class is available in the element it will remove it this toggle means if the class name is available it will remove it and if it is not available then it will add that class name in the element so what will be the output this message is already there and we are adding toggle message so it will remove this message let’s see the output in console here you can see class main here we have only one class which is main so this toggle removed this message class now instead of this message we will add new so what will happen this new is not available here so it will add this new in this element let’s come back to the web page again and now you can see we have total three class in this element which is main message and new so using this class list. toggle we can add and remove the class from the element if the class name is already there it will remove it and if it is not there it will add the class so this was all about class list property in JavaScript now we will learn about JavaScript events an event is an action that occurs in the web browser when we click on the web page that is a click event when we move cursor over the web page that is mouse move event and when the web page loads that is a load event like that we have multiple type of events in JavaScript let’s create some HTML elements here I will create one div with the ID container and within this container we will create one button with the button tag and button type will be button and here we will add the text click here now we will come back to the web page here you can see this button click here if I click here nothing is happening because we have not added anything so let’s come back you can see we have added the button and clicked on this button but when we click on this button we are actually clicking on the button this div this body and this HTML and this document also so when we click on any element actually we are clicking on the all the patent elements also that means this di with the ID container then body then HTML and this document and in modern browser this click goes up to window object there are two event models that is event bubbling and event capturing so when we click on the button click a start from the button then goes to div then goes to body then goes to HTML and then goes to document so the event flows from the most specific element to the least specific element that is event bubbling but when the event start from the least a specific element it means it starts from the document then event flow to HTML then it flows to body then it flows to div with the ID container then it comes to the Target element which is button so this event model is known as event capturing when the event starts at the least specific element and flows towards the most specific element we may respond to these events by creating event handlers an event handler is a piece of code that will be executed when the event occurs so when we click on this button we will add some code that will be executed after clicking on this button so that code is known as event handler and event handler is also known as event listener so there are three ways to assign event handlers so first one is using HTML attribute for each event there is event handler and their name typically begins with on so let’s see the example we have click event and for this click event we have the event handler on click like this so let’s assign this on click in this HTML element as an attribute so in this HTML element we will add on click so this is the event handler of the click event and within this quote we can write the JavaScript so let’s add a simple JavaScript line console.log so it will log one message in the console of the browser in this one let’s add some text here we cannot add double code because we have already used so I’ll add single quote button clicked so this button clicked message will be printed in the console when we click on this button so let’s see this on the web page this console is Ed right now and if I click on this button that is here in top left corner you can see this message button clicked this event handler attribute can call one function also so let me remove this HTML code we have added event handler which is on click and this on click will call one function so here let’s create one function in a script tag in this script We’ll add one function with the name display MSG that will display message here we will add console.log button clicked let’s add some more text button clicked from FN which means button clicked from function now we will call this function when we click on the button so in this attribute we will call this function write this function here so this is a function call now let’s come back and you can see this console is empty and if I click on this button again you can see the message here it is saying button clicked from FN it means button clicked from function now just come back when the event occurs the web browser passes an event object to the event handler so to understand this one let’s remove this function here and we will add JavaScript code in this attribute so here let’s add console.log and when we click on the button the JavaScript will pass the event object so we can write that event object here event now we can see what is there in this event object let’s see the output so you can see here we have one object now this event object has some properties that we can access so from this event we can find the type event. type let’s see it is displaying the event type event type is Click let’s come back we can add the target so we will get the target element on which the event occurs when we clicked on the button it is displaying the entire button element with all the attributes so it is giving the target element we can also use this keyword inside the event handler and this keyword inside the event handler refers to the Target element let’s see the example example here in this event handler we will try to print this this keyword will refer to the Target element let’s see the output when we click on the button you can see again we got the target element which is button so this keyword inside the event handler refers to the Target element from this keyword we can find the properties of this element so let’s add one ID here I will add the ID is equal to BTN and here we will add this do ID so when we will click on the button it should display the ID value let’s see if I click on the button it is displaying BTN now just come back and instead of this do ID we can simply add ID from the event handler we can directly access the elements property so we are adding console.log ID so it should display this ID value let’s see if I click on the button we got the ID value which is BTN if I write type which is here we will get button it’s here so this was the first method to add the event handler in HTML as HTML attributes now the second method is adding event handler name in the JavaScript so let’s remove this on click from here we have one button let’s remove this type also it will be simple so we we have one button with the ID BTN now we will add the script where we will add the JavaScript So within this script first we have to select this button so let’s add let BTN is equal to document. get element y ID and we will add the ID BTN so we have selected this button element now on this BTN we can add the event handler just add on click and now we can add the code that will be executed when we click on the button so here we’ll create one function and within this function We’ll add console do log and this will print message button clicked after that let’s come back to the web page click on the button and you can see the output in the console button clicked let’s come back you can see here we have the HTML element and in this one we have added the JavaScript in this JavaScript we have added on click event handler name and added one function that will dis play one message here also we can write this keyword that will refer to the Target element and from this we can find the ID this do ID let’s see it is BTN now to remove the event handler we will simply add element which is BTN do onclick and assign null that’s it it when we assign null in this event handler it will remove the event handler so this was the second method to assign the event handler now we will learn the Third Way of assigning event handler so in JavaScript we have two methods with the name add event listener and remove event listener these are two methods that handles the event ad event listener will register an event handler and remove event EV listener will remove an event handler so let’s see the example of add event listener the add event listener accept three arguments the first one will be event and the second one will be one function this function will be executed when the event fires and the third argument is use capture so the third option is optional because by default it is false this use capture is a Boolean value it can be true or false so by default it will be false and we can remove it it is related to the event bubbling and event capturing so let’s ignore that third parameter we will pass to argument event and one function so let’s see one example so let’s try to add this add event list on this button remove it here we will add BTN do add event listener and we will pass first argument which is event so the event will be click we are adding The Click event then a comma here let’s define one function here I’m adding function like this so this is the function defition within this curly Braes we can add the code that will be executed so here let’s add console.log and message button clicked so we have selected the button using get element by ID then on this button we are adding add event listener method that will assign the event handler so in this event listener we are adding first parameter and second parameter first parameter is event so the event is click and the second parameter is a function so we have declared one function here this function will print one message in the console tab when we will click on the button let’s see this output on web page click on this button and you can see the message button clicked as I already said when the event occurs the JavaScript passes the event object to the event handler so in this one we can pass the event object and we can find the type from this event event. type let’s see the output if I click on the button we got event type which is Click now instead of adding this Anonymous function we can add the external named function also so let’s remove it here we can add our second parameter before adding that second parameter let’s create one function with the name display message and this display message will log one message message button clicked now we can refer this display message function here like this after adding this let’s come back and if I click on the button again you can see the message button clicked so we can add the event name and one function it can be a Anonymous function or it can be a named external function we can refer to that external named function with the function name without the parenthesis so this was add event listener method now we will learn the remove event listener method the remove event listener removes an event listener that was added using add event listener so here we have added the event listener using add event listener method now we can remove it using BTN dot remove event listener again we have to pass the same arguments just copy and paste it here so this remove event listener will remove the event listener that was added using this add event listener you can see here I have added the external named function if I add one Anonymous function here then we cannot remove move that event listener using this method so we have to use the external named function when we want to add the event listener and remove the event listener now let’s know about some of the useful JavaScript events so the first one is mouse move event Mouse move event fires repeatedly when you move the mouse cursor around the element and second one is mouse down event when you press the mouse button on the element this event will fire next one is mouse up when you release the mouse button on the element then this event will fire next event is mouse over event when the mouse cursor move from outside to inside the boundaries of the element then Mouse over event occurs next one is mouse out when the mouse cursor is over an element then moves to another element then Mouse out event occurs next one is key down event key down event fires when you press the key on the keyboard and it fires repeatedly while you are holding down the key next one is key up event this key up event files when you release a key on keyboard next one is key press so the key press event occurs with when you press a character keyboard like ABC it files repeatedly while you hold down the key on the keyboard next one is scroll so a scroll event occurs when you scroll a document or an element the scroll event fires we will see more examples of events when we will create the JavaScript projects now we have completed the basic of JavaScript next we will create some JavaScript projects in this video we are going to learn how to create a Notes app using HTML CSS and JavaScript here on my computer screen you can see one button create nodes if I click here it will open one input box and here we can type our text note this is note one so you can add your text note in this white box and if I click on this button again it will again open a new input box where we can add another note and if I click on this delete icon it will delete this note we can delete all the nodes and let’s add the text again two so we have added two notes here this is Note One Note Two And if I close this browser and open the browser again let’s see you can see this note is still displaying here because we have added the local storage that will store the notes in the browser so we will create this note app that will store the text note in the browser using HTML CSS and JavaScript so let’s start this video here I have this folder called Notes app in this one I have one HML file one CSS file and another folder called images in this images folder I have some icons that I will be using on this web page you can find these images download link in the video description let me open these files with my code editor which is Visual Studio code you can use any code editor so this is the HTML file where I have added the basic HTML structure and this one is the CSS file where I have added margin padding font family and box sizing these CSS properties are applicable for all the HTML elements in this HTML file I have added this title that is the title for the web page then we have added the link tag with the file name style. CSS so it will connect the HTML and CSS file next we have to add the HTML codes in the body tag that will be displayed on our web page so within this body let’s create one div with the class name container now in this container we will add one title in H1 so here we are adding one title notes and after this title there will be one button so let’s add one button and in this button we will add the button text create notes after adding this let’s come back to the folder and open this HTML file with any web browser so you can see this text here notes and create notes button now I will close this browser and I will open it with the visual studio code extension called live server so it will refresh the web page automatically whenever we will add any changes in the code file you can see the same web page but the order has been changed now we have to add some CSS so just come back and copy this class name container and come back to the CSS file within this CSS file let’s add do container and here we have to add the width then we will add minimum um height and in the background we will add the linear gradient color so let’s add the background linear gradient and two color codes then we will add color that will be white and let’s add some space from the top padding top and padding left that will be spaced from the left side after writing this you can see the changes in this web page the text color is white and the background color is linear gradient now let’s come back and uh with this text we have to add one icon also so just in front of this notes we will add one IMG tag so here we will add IMG and SRC and file name images SL the file name is noes. PNG and in this button also we will add one icon so here also let’s add this IMG tag and replace the file path so it is edit.png so we have added two icons with the tag in the nodes and create nodes button you can see this icon and this edit icon in the button now we have to add the CSS for these icons and font size so let’s come back after this container again add container and H1 for the title here we will add display Flex align items Center then font size will be 35 pixel and font weight 600 now within this H1 we have added one icon with the IMG tag so we are adding IMG here and for this image we will set the width it will be 60 pixel so this size for the note icon looks good next we will Design the button so let’s come back and here we will add container then button and in this button we have image so for this image again we will add the width 25 pixel and margin from the right side this will be H pixel let’s copy container and button now we will Design this button using CSS so let’s add display then align items background will be linear gradient two color code button text color will be white and uh font size outline zero and Border zero border radius will be 40 pixel let’s add some padding that will be space inside the button 15 pixel from top and bottom and 25 pixel from left and right side then margin that will be space outside of the button 30 pixel 0 and 20 pixel cursor will be pointer so after adding this you can see this create notes button looks good next we have to add one input box where we can type the text note so let’s come back and uh after this button we will add one tip with a class name nodes container and in this one let’s add one P tag in this P we will add content editable true and we will add one class name also so the class name is input box so it is not visible here because we have not added any text in this P tag so let’s come back and we have we have the input box just copy this one and come to the CSS file write this input box with the dot and here we will add position relative width will be 100% And the maximum width will be 500 pixel then mean height background will be white so we have added width and height in this P then we will add the color padding of 20 pixel margin 20 pixel and zero then let’s add outline none border radius 5 pixel so that the corners will be round after adding this the input box looks good and in this input box we can type anything now we need uh delete icon also so let’s come back and uh before closing of this P tag here we will add a space and before closing of this P tag we will add one IMG tag write the file path images SL delete.png it is delete icon and you can see this icon here next we have to set the size and position for this delete icon let’s come back here we will add this input box then IMG for this image width will be very small 25 pixel Position will be absolute then it will be at bottom 15 pixel space from the bottom and 15 pixel space from the right side cursor will be pointer after adding this you can see perfect position for this delete icon now this input box is displaying by default so we have to to hide this input box and it will be displayed whenever we will click on the create note button and every time you will click on the create noes button it will run a JavaScript and that JavaScript will display the input box so let’s come back and here we have the P you can delete this P tag or command it let me commment this one so it will be disabled and right now you can see we have the text and button we don’t have any input box now we will display the input box with the help of JavaScript so let’s come back and here we’ll click on this icon to create a new file and write the file name script.js so this is our new file script.js next we have to connect this script file with the HTML file so let me come back to the HTML file and just above this closing body tag we will add script SRC and the file name which is script.js now the HTML file and JavaScript file are connected let me open the folder again and here you can see one new file which is a script.js in the same place where we have added HTML and CSS file now let’s come back to the JavaScript and here we will add some variables so let’s add const nodes container con nodes container equal to document. quy selector do nodes container now we will duplicate this line it will be create BTN and here we will add the class name BTN and uh in this button we will add one class name class BTN after that we will add one more variable let nodes equal to document dot query selector all dot input box so here we have added three variables notes container which is for this notes container class name then create button which is for this create button and then we have added another one notes that is for this one input box this input box is not there but we will add it using JavaScript so we will add the multiple P tag with the class name input box so here I’m adding query selected all that will select all the nodes after that let’s add one function then I will explain you each line here we have added create button add event listener it means whenever we will click on the button that is here BTN so it will execute these codes and first it will create one variable called input box and it will store one element document do create element by P so it will create one p element and it will store it as input box then it will create another element with the IMG tag and it will be stored as IMG now in the P element which is input box it will add one class name called input box then in this P element we will add one more thing which is content editable true so we are adding input box set attribute content editable true so it will add one P tag then in the P tag it will add one class name input box then it will add one attribute content editable true and after that we have added img.src we have created one more element IMG and in this Source we will add one file path that is for the delete icon images /d delete.png so it will add this image IMG srz images /d delete.png now we have to display it so we have to display this in the notes container so you can see we have added noes container do appendchild input box it means this input box will be displayed inside this noes container and after that we have added the and child IMG it means this image will be displayed inside this P tag which is input box so after adding this let’s come back to the web page and click on this button you can see it is adding one new input box with the delete icon and we can type anything in this input field it is working now click again it will display the another input field now if I click on this delete button nothing is happening so we have to add one more thing this delete functionality so let’s come back and here we will add this one notes container add event listener again we will add the click event then function if e do Target dot tag name if the target is IMG then e do Target dot so we have added nodes container event listener click so when we will click within this notes container and if the target element is IMG then it will remove that parent element so let’s come back click on this button it will display one input box and here we have the delete button let’s click on this delete icon and it will remove that pent element let’s click again and click on this delete you can see it is deleting the parent element so it will hide that input field this delete is working fine and we can also write something here hello this is new video right now we have added two notes and if I refresh the website you can see it will be disappeared because we have not stored these things in the browser so we have to add the local storage that will store the notes in our browser every time we will open the browser it will be stored and displayed as it is so let’s come back after these variables let’s add some space and here we will add one function update a storage data storage and after that we will add local storage do set item and write the name noes and what we have to store here we will store noes container do inner HTML so whatever is written in the noes container inner HTML that will be stored in the browser with the name notes so whenever we will call this update a storage it will update the data in our browser so let’s copy this one and add it here after deleting it it should be updated so in the next line we will add update a storage next we need one more thing if we write anything in the P then also it should update the data in the browser so here we will add the another condition which is L if here we will add nodes equal to document do query selected all input box now for all the nodes it should update the data in browser so here we will add noes dot for each n sort for the nodes ENT do on key up equal to function and here we will update a storage so it will update the storage when we will start typing edit anything in the P tag next we need one more thing when we close the browser and open the browser it should check the local storage and if there is any data in the local storage then it should display that particular data as a note so let’s come back here at the top after this variables let’s add function so notes notes container do iner HTML equal to local storage dot get item and the item name is notes so if this notes is there in the browser then it will be displayed on our web page just we have to call this function so notes just copy this one paste it here so notes will call this function and it will display this local storage in the container HTML so let’s see how it works if I refresh the web page you can see it is still displaying the note one and Note 2 let’s delete the note one here we have this is Note 2 let’s refresh the website you can see still it is displaying Note 2 so this local storage is working next we will add the one more last thing here will add here we are adding document do add event listener key down event and if the event key is enter Then document. exe command is insert line break and event prevent default it means when we will click entered in our keyboard then it will add one line break in the P tag and it will prevent the default feature of the enter key now let’s see here we will create a new note note one enter line 2 Enter line three refresh the web page you can see it is displaying as it is so finally we have completed this online note app using HTML CSS and JavaScript with the local storage in this video we will create a very useful JavaScript project which is simple quiz app you can create this squiz app or website with the help of HTML CSS and JavaScript let’s see how this squiz app works you can see this question here then we have four options if I select the wrong answer you can see it will become red and the correct answer will become green and now we cannot change our selection now we will click on the next button and if I select the another option let’s select this one and if it is correct then it will be highlighted with the green color and now we cannot click another option we have to click next and here if we will click on this one if it is correct it will become green and let’s click on the next one and now we will select any wrong answer so you can see it is displaying the red color and the correct answer is highlighted with the green color I have added only four questions here if I click on the next button you can see it will display our score you scored two out of four because we have given only two correct answers let’s click on this button play again and if I select the correct answer and again this one this and this one and click on the next you can see it is giving the correct score which is four out of four we will create the squee app using HTML CSS and JavaScript and I will explain you step by step now let’s start this tutorial to create the JavaScript quiz app here in this folder I have one HTML file one CSS file and let me open these files with my code editor which which is Visual Studio code you can use any code editor if you don’t know how to create the HTML and CSS file I will add the video link in the description this is the HTML file where I have added the basic HTML structure and this one is the CSS file where I have added the margin padding font family and box sizing these CSS properties are applicable for all the HTML element in this HTML file I have added this link tag with the file name style. CSS so it will connect the HTML and CSS file and here we have the the title quiz app easy tutorials next in this body tag we will add one D with the class name app next we will add the CSS so come to the CSS file and here first we will add the dark color on the complete web page so we will add body tag and for this body let’s add one background here we will add one color code and next we will add the CSS for the app so just copy this one add it here in this CSS file with the dot because it is a class name here we will add background so the background will be white after that we will add the width 90% and maximum width will be 600 pixel then we will add the margin 100 pixel from top left right Auto and zero from the bottom then border radius so the Border radius will be 10 pixel so the coordinates will be round by 10 pixel after that we will add the padding of 30 pixel that will be a space inside the box after adding this let’s come back to the folder and open this HTML file with any web browser so you can see this color on the complete web page and here we have the box in the white color I will close this browser and I will open this browser with the visual Studio code extension called live server so that it will refresh the web page automatically whenever we will add any changes in the code file so you can see the same web page again but the URL has been changed after that let’s come back and uh within this app we have to add one title so here we will add one title in H1 simple quiz and after that we will add one another div with the class name quiz and within this we will add one question in H2 so let’s add the H2 and here we will add one ID so the ID is question and let’s add any text here so we will add question goes here like this and now you can see this text simple question and question goes here after that we will add some options for the particular question so here we will add one div with the ID answer buttons and within this answer buttons we will add four buttons so let’s create the first one and in this one we will add the class name BTN and here we will add the answers so let’s add the text answer one now we will duplicate this button and we will change the text 2 3 and four and the class name is same after adding this you can see four buttons here after this question answer 1 2 3 4 next we have to design this using CSS so let’s come back and uh here we have the class name quiz so just copy this one and come to the CSS file before the squeeze we have the text in H1 so we will add the CSS for that text so let’s add do app and H1 where we have added the text so for this one we will increase the font size then we will change the color font weight and border bottom then we will add the padding at the bottom now you can see this line here after this text after that we will add that class name quiz and for this quiz we will add the padding it will be 20 pixel and zero after that in this squeeze also we have text which is the question in H2 so here we will add do quiz and H2 so for this question we will add font size so the font size will be 18 pixel then we will change the color and font weight and uh here we have added font weight it will be font size font size 25 pixel now it is good next we will Design these buttons which is answer button so for this button we have added the class name BTN so come to the CSS file here we will add the CSS for BTN so for this button we will add the background so the background will be white after that we will add the color that will be the text color and font weight font weight will be 500 then width will be 100% so it will be full width and border of one pixel solid and this color then we will add the padding that will be a space inside the button and margin 10 pixel from top and bottom and zero from left and right after this padding and margin we will add text align left and uh border radius will be 4 pixel and cursor pointer you can see these buttons looks good next we have to add the hover effect on these buttons so let’s come back here we will add this one and hover we will add the background this will be the background color code and after that we will add the color that will be the text color white and in this one we will add the transition all 0.3 seconds now if I take cursor you can see the background becomes black and the text becomes White next we have to add one more thing which is the next button at the bottom of these answers so let’s come back and uh here after this button and this tib here we will add another button and with this button we will add the ID next BTN and the button text is next after adding this you can see next button at the bottom so we will add the CSS for this next button so let me come back and copy this ID add it here in the CSS file with the has tag because it is an ID here we will add the background then color font weight and width width will be small 150 pixel then we will add the border border will be zero and padding of 10 pixel then margin 20 pixel Auto and zero border radius will be same which is 4 pixel and cursor pointer after adding this you can see this next button here but we have to move it in this Center so here we will add display block and now you can see it is horizontally centered right now this button is displaying so we have to hide this button and this button will be displayed once we will select any option from these answers so let’s come back and here we will add none so the button will be hidden you can see that button is hidden next we have to add the JavaScript to display the correct questions and we can select the answers so let’s come back back and here we will create a new file click on this icon and write the file name script.js this is the script file here we will add our JavaScript next we have to connect this script file with the HML so let’s come back and above this closing body tag here we will add a script tag script SRC equal to script. JS now our HTML file and JavaScript file are connected here we can add our JavaScript so in this Javascript file first we have to set the questions so here we will add const in this Con we will add the name of the variable so it is questions equal to here we have to add the questions so let’s add the first one like this question and write the question text then we have to add the options for this question so here we will add answers here I have added the first answer and correct is equal to false because it is a incorrect answer let’s duplicate it and we will add the other answers here and the second answer is correct so here we will add true so this is the first question and the list of answers now we’ll add the other questions in the same format so here let’s add one comma and we can add this second question here so you can just copy this one and paste here and update the text so I have updated all these questions and answers you can see in front of the correct answers I have added true and other are false here also I have added true and these three answers are false after that we will add another variables in this HTML file I have added this ID question and answer button and next button so we will add the variables for all these three elements so come to the script file here we will add const question element equal to document. get element by ID question which is this one next we will add the variable for this one duplicate this line add this ID here and here we will add the answer button now duplicate this and it will be next button and the ID which is next BTN now whenever we will start the quiz and give the answers the question number and the score will be changing so we will create variables to store the question index and score so here we will add let current question index so the index will start from the zero then we will add let score equal to zero next we will add one function and let me write the code then I will explain you here I have added one function start quiz so when we will start the quiz it should reset the current question index zero and score zero when we will start the quiz here we are adding inner HTML next because at the end we will change the text to the restart or replay so when we will start the quiz again the button should be next and after that we are calling this function so questions so it will set the index zero score0 and set the text next for the next button then only it will call the another function so question that will display the questions now we’ll create this function here in this so function I have added let current question equal to questions. current index so if you will see this list list of questions here we have the first set of question and answer then second then third and fourth so we will get the first question if we’ll add the index zero we will get the second question when we will add the index one so that is written here questions and index number so that will be the current question and we need the question number also so if the index is zero question number will be one if the index is one question number will be two so here I have added + one that will be the question number then in the question element which is this one this is the question element so here we will update the text with the inner HTML so we are adding question element inner HTML equal to question number then one dot and after that the current question and current question dot question so the current question will be this one and here we have the question this one so we will get this text so after adding this we have to display the answer from the current question set so here we will add the code to display the answers so let’s add current question dot answers dot for each here I have added current question do answers so it will come here suppose the current question is this one and it will go here answers and in this answers we have the text and correct so we have to display these text in the buttons so we will add document. create element and the tag name button so it will create one one button tag and we will save it as a variable called button and in this button we have to add one text so to add the text we will add inner HTML and in this inner HTML we will add the answer. text so answer is this one answer. text so it will add the first one then we will add the second one like that so it will add the text in the button then in the button we have to add one class name so we are adding button. class list do add and the class name BTN so it will add this BTN class name in this button after that we have to display this button inside the div which is here answer buttons this div is here so we have to display that button inside this div so we are adding answer button do appen child button so after adding this it will display the question with the question number and it will display the answer now we have to call this a start quiz function to display the output so let’s copy this one and add it here at the bottom start quiz so it will call this a start quiz function and it will set the current index z a score 0 and button text next then it will call the so questions and this so questions will display the question with the question number and uh it will display the answers in the button so after adding this let’s come back to the website and here you can see it is displaying the question with the question number one then we have the previous text that we have added in the HTML file which is Answer 1 2 3 4 then we have our answers that we have added with the variable here you can see the answers for the first question Sark blue whale elephant and jff so you can see these answers here but we have not added click function here right right now so now let’s come back and we have to hide these things to hide these things we have to reset the previous questions and answers so let’s come back and uh here we will add one function before displaying the question here we will add one function reset a state that will reset the previous question and answer now we have to Define this function so let’s add it here function reset state in this reset State let’s add the next button dot style do display it will be none then we will add while answer button it will will be buttons s and here also we will add buttons in this one so answer buttons DOT first child so suppose it has a child element then we have to remove that here we will add answer buttons dot remove child answer buttons DOT first child so it will remove all the previous answers and here also we have added answer button it will answer buttons yes answer buttons do app and child so after adding this let’s come back and here you can see the first question with the question number and list of options and if I click here nothing is happening next we have to add the click function on these answers so let’s come back here we will add button dot add event listener click and here we have to add one function name so when we will click on the answer button it will call this function select answer and before this click event we will add if answer dot correct so if it has some value then it will add button dot data set dot correct equal to answer dot correct so it will add the true or false in this data set correct from here this false true it will add in this button data set now we will add the function which is Select answer so let’s define this function above this a start quiz so here we will add function so when we will click on that uh button it will add the selected button element in this variable selected vtn and then it will check the selected vtn and data set true so if the data set is true then it will add the class name correct and if it is not true then it will add the class name incorrect now for these class name we have to add the background color so we will change the background color for the correct and incorrect class name so let’s come back to the CSS file here we will add correct and background in this background we will add one color code now we will add the background for the incorrect class name Incorrect and this background color after adding this let me come back to the website and if I click on the first one you can see the background becomes red because it is incorrect if I click on the second one you can see it becomes red because it is correct and if I click on the third one you can see it is red and the fourth one is red now we can click on any number of times so we have to disable the click after selecting one answer and when we will select the wrong answer it should automatically highlight the correct answer with the green color so to add that one let’s come back here in the subscript after that we will add so here we have added aray from answer buttons children for each so for each button it will check the data set if it is true then it will add the class name correct suppose we have selected the wrong answer then it will go and check the other answers and if it is true then it it will add the green color with this class name correct and after that it will disable the button so we cannot click on the any button and after that it will display the next button so here we are adding next button style. display block so it will again display the next button so that we can go to the next question so after adding this let’s come back to the website and if I click on the first one which is the wrong answer you can see the second one becomes green because the second answer is correct and it is displaying the next button and now we cannot click on the any other button let’s refresh the website and if I click on the correct answer it is displaying the green color here and now we cannot select any other next we have to hide the hover effect when we select the button so let’s come back and uh in this CSS file here we have added BTN hover so in this one we will add one more thing h and uh not disabled so the hover effect will work when the button is not disabled and when the button is disabled the hover effect will not work and we will add one more thing here we will add BTN disabled and uh cursor no drop after adding this let’s come back and refresh the website if I click here you can see we will not get the hover effect now and the cursor becomes red we cannot click on any button we can just click on the next button we have to add one more thing when we will select the correct answer the score should be increased so let’s come back and here we have added the class name correct in this one so here only we will add one more thing score Plus+ so it will increase the score by one next we will add the function for the next button so here we will add next button do add event listener and the event is click here we will add add a function and in this one we will add if it will check the current index if the current index is less than the length of the question it means the number of question is four then the question length is four so if the index is less than that then here we will add one function handle next button or else it will add a start quiz suppose if there is no question and we will click on that button so it will restart the quiz and here we have to Define this function handle next button so above this one here we will add function handle next button and in this one we will add current question index Plus+ it will increase the question index y1 when we will click on the next button and again we will add if current question index less than question length then so question function with the updated question index else it will display the score so score so if there is another question it will display the another question and if it is not there then it will display the score when we’ll click on the next button next we have to Define this function so cord so here let’s add function sour score and in this one let’s add reset state that we have already created to display the score we have to call this reset function and instead of question we have to display the score so we are displaying the question in the question element so in this one we will add inner HTML and let’s add the text in backtick here we will add us code so it will display the escore out of the length of question and after that we will add next button dot inard HTML equal to play again and uh next button will be block so let’s add next button do style do display block after adding this let’s come back to the website again and let’s select the correct answer next again correct answer next again we will click here next and here next you can see us code four out of four and we are getting the button play play again it will restart the quiz let’s click the wrong answer it will display the correct one let’s click next and wrong answer so we have selected two wrong answers let’s click again click here it is also wrong and if we click here on the correct one so you can see the score one out of four because we have selected only one correct answer out of four and we are getting play again so finally this quiz app is working you can update your question in this JavaScript and you can create your own quiz app or quiz website using HTML CSS and JavaScript in this video we are going to learn how to add the validation in contact form using JavaScript so here you can see I have created a contact form where you can see the input field for the name phone number email ID and message and at the end we have the submit button if I click on the submit button you can see it is giving an error name is required and there was one more error message at the bottom called please fix error to submit first we have to fix the error which is in the name field so here we have to enter the name because right now the name field is empty so let’s add anything here if I write like this still we are getting an error write full name because we have to add the first and last name so let’s add a space and write full name like this now you can see a green check icon that means this input field is correct so after adding the correct data in this name input field let’s click on the submit button again so it is giving error in the phone number field and here it is saying phone number is required so let’s add some characters here if I write like this it is saying phone number should be 10 digits so let’s add any 10 digit number here so so now you can see check mark it means this input field is correct after that if I click on the submit button again it is giving an error in email field so here also we have to add the email ID so let’s add the email ID like this so right now this is not the correct format so that’s why it is saying email invalid so we have to add the email in proper email format so if I write like this now you can see a check mark let’s click on the submit button again and it is giving an error 30 more characters required because we have added the limit minimum 30 colors should be there in the message box so here let’s add any message you can see as I’m writing the text here it is decreasing the required character right now it is saying 16 more characters required after writing minimum 30 characters in this message field we will get this check mark now we can submit this form so let’s click here and you can see it will submit the form so without collecting all the fields this form will not be submitted and once we will collect all the input fields and click on submit button this form will work so we will learn how to add this validation in form using JavaScript now let’s start this tutorial to add validation on contact form using JavaScript I have already already created multiple tutorials about creating a contact form using HTML and CSS that’s why in this video I’m not going to design this form you can go to the video description and download this HTML and CSS form and in this video we will only talk about the validation so let’s come back to the folder and here you can see I have this HTML and CSS file that you can also download from the video description once you will open these files with the code editor you will see this HTML file where I have added the container and then we have the form tag and in this form we have added this icon and here we have added the font awesome link that’s why we have added this font awesome icon then we have the input group and in this one we have the input field for the name this is for the phone number this is for the email and this one is for the text box and after that we have the button and you will get this CSS file also where we have added all the CSS for the design of the form once you will open this HTML file with B browser you will get this form like this next we will display the error message on this form so let’s come back to the code and here you can see we have added the input field for the name so just below this input field we will add one span tag and in this span let’s add one ID also so I will add the ID name error and in this name error let’s add a error name is required like this simply we will add the span tag in all the input group just below the input field so here also we will add this fan tag and this is for the phone number so we will add the ID phone error and here also one message phone is required let’s copy this one and add it just after this input field for the email here we will add the ID email error and we will add the message email is required and uh after that we will add one span here this is for the message error message is required like this and uh we will add one message after this submit button also so here also we will add a span and we will add the ID submit error and one message please fix error so we have added these error message in this HTML file and let’s refresh our website and now you can see these message here at the end of all the input fields and one error message at the bottom left corner of this form so we have to change the position and color for these error message for that we will come back to the HTML file and here you can see we have the class name called input group and in this input group we have the span tag where we have added the error message so let’s add this class name in the CSS file and here we will add the span and for this aspan we have to set the position Position will be absolute then we will add the bottom bottom will be 12 pixel and right 17 pixel we will add the font size it will be 14 pixel and color so the color will be red because it’s an error so you can see the position has been changed for these error message we have to add the Cs for this one also which is for the submit error let’s come back and here you can see we have added the ID called submit error so let’s copy this ID write it here with the hashtag because it is an ID and here we will add color red that’s it so this message is also in the red color so we have added the position and color for the error message but right now this message is displaying by default but we have to display this message after validation using JavaScript so we will remove these error messages for now and it will be displayed later let’s come back and come to the HTML file and just remove this message span tag will be there we have to remove the message only let’s remove all the error message like this it’s done again you can see the simple contact form now we have to add the JavaScript file so here we will create a new file go to files new file and uh save this file as uh script.js make sure the file name should be JS so we have created a new file and uh next we have to come to the HTML file and just at the bottom before this closing body tag we will add a script a script open and closing tag write SRC and write the file name that we have just created which is script.js so it will connect the Javascript file with the HTML file next we have to add the variable for all these ID that we have written here in this HTML file so let’s come to the script file this is the script.js and here we will create variable so let’s add where name error equal to document dot get element by ID and in this ID we will add the ID that we have added in the HTML file so you can see we have added the ID called name error just copy this one and place it here so this is the first variable just duplicate this one and change the name it will be phone error this is for the email error this is message error and this one for the submit error and here also we will change the ID so we have added these variables next we have to add the function that will validate the input box so let’s come back to the stml file and here we have the input field for the name in this one we will add one ID so let’s add one ID called contact name and we will add one event so it is on key up on key up equal to and here we will add one function name so let’s add any function name validate name like this so here we have added one ID and one function next we have to Define this function that we have added here so just copy this function and come to the script file here we will add function write the function name like this so this function will be executed whenever we will start typing anything in the input field so here we will add one variable and write name equal to document Dot get element by ID and in this ID we will add the ID that we have just created which is contact name copy this one add it here at the end we will add dot value so this variable called name Will store the content written in the input box which is for the name so it will take the value of the input field and now we will add the condition so here we will add if name Dot this will check whether this name length is zero it means the input field is empty so it will display an error called name is required and where this error message will be displayed it will be displayed in the variable called name error and this name error is for the ID called name error that we have added here in this span tag so in this span tag we will see this message called name is required when the length is zero it means the input box is empty next we will add the another condition here we are adding this condition so this expression is exactly checking the first character should be alphabet and after that there will be one space and after that it could be any character A to Z here we are adding exclamation it means value is not matching with this expression then it will give an error so what will be the error just copy this one paste it here and here we will add write full name like this and one more thing once it will give an error it will return false like this and we will add this return false in this if condition also so whenever there will be an error it will return false in this condition also if it will give an error it will return false if there is no error then what will happen it will display a success message so let’s add name error dot inner HTML equal to and in this one let’s add valid like this Suppose there is no no error then it will say valid and then it will return true like this it is not and it will be a dollar sign like this so again refresh the website and you can see if I write a first name and write anything in the second name it will say valid you you can see the message has been changed to valid so instead of valid we want to display a check sign so you can see in the HTML file we have added this font awesome link so we can add the font awesome icons so let’s come to the font awesome website here we will search for one icon so let’s go to the icon and search for check we’ll click on this one check Circle copy this and come back to the script file and in this script instead of this valid we will add this HTML code like this and we will change the color also so it is in the it tag you can see it is in the it tag so we have to use this it tag in the CSS file just come to the CSS and copy this input group span and uh in this Supan we have the it tag for the icon and here we will add the color so let’s add the color of this one after adding this color come to the web page and here we will add one name now you can see a green color of check sign so it is working fine next we will add the validation for the phone number field so let’s come back again come to the HTML file and as you can see we have added the ID in the name field and one function so same thing we will do in the phone number field so just copy it here so this is for the phone number field so it will be contact phone ID is contact phone and here we will add validate phone like this come to the script file and let’s copy this one paste it here instead of validate name we will add validate phone this is for the phone number validation and again we have to add the variable so let me just copy this one only paste it here it will be phone equal to document. G by ID contact phone ID is contact phone so this phone will store the value written in the phone number input field next we have to add the condition to check the phone number so here let me write the condition then I will explain to you so you can see here we have added phone. length equal to Z so it will check whether the phone number field is empty then it will display and eror phone number is required next it will check the length of the phone number if it is not equal to 10 then it will display an error phone number should be 10 digits in this condition it is checking the phone num should be 0 to9 and for 10 characters and if it is not like that then it will display an error called only digits and if there is no error like this then it will display a check icon and it will return true so after adding this let’s check the phone number field come back to the web page and here if I write you can see phone number should be 10 digits so let’s add more digits and now you can see a check icon you can see if I add any character like this Zed y anything it is saying only digits please so we need to add digits and if we add 10 digits it is fine so this phone number validation is also working now let’s come back and we will add the validation in this email field so let me just copy this one and paste it here in this email input field write the ID contact email and this is validate email next we will add the script so let’s copy this one it will be validate email then copy this paste it here it will be email document. get elment by ID contact email so it will store the value written in the email input field and now we will check the conditions for so in this validate email function we are adding this variable that will get the value of the input box and then it will check the length if it is zero it means it is empty so it will display an error email is required and return false next if there is some value then it will check this condition and here it is saying it should be any alphabet it may contain a DOT or underscore or the siphon and it can also contain any number and after that there should be one at theate after at theate there will be some alphabets and then one dot and after that dot there will be another alphabet it could be 2 three or four characters so if the email format is not matching with this one then it will display an error called email invalid and return false and if there is no such error then it will display the check icon and return true here we will remove this and save this file let’s refresh the website again and if I write uh correct email here now you can see it is displaying a check icon it means the email ID is valid next we have to add the validation for the message box let’s come back and here we will add one ID and one function copy and paste it here write the ID called Contact message and this is validate message now let’s come back to the script file and copy this one here we will add validate message and in this one again we will add one variable so it will store the value written in the message box and after that we will add one variable where we will add any number required equal to so if we want 30 characters then we will add 30 characters is required and here let’s add another variable and it is left left equal to required minus message do length so it will give the value how much characters is left and now we will add the condition if left greater than zero it will be giving an error message message error dot inard HTML and then it will return false and if there is no such error and the character is more than 30 then it will display a check sign just copy this one paste it here and here we will add message error. innerhtml that’s it here it will be this one message refresh the website and now you can see if I write something 29 more characters required if I delete this one it will display 30 more characters required and if we write some text here and now you can see the error message has gone and we will get the check icon so this message box validation is also working fine next we have to add the validation when we will click the submit button so let’s come back in this button we will add onclick and here let’s add return space and one function validate form next we have to Define this function called validate form in the JavaScript so let’s copy this one come back to the Javascript file and here we will add a function validate form and in this one first it will check all the functions that we have added in the different input field so here we will add if exclamation validate name then we will add exclamation validate phone in the series wise we are adding so this condition we check if any of these are false then it will display an error message so here we will add submit error dot inner HTML and one message like this and after that it will also return false after adding this again refresh the website and simply click on the submit button and you can see here it is displaying please fix error to submit so M submit but right now this error message will be displayed continuously so we have to hide this message after a few seconds so let’s come back and here we will add submit error dot style do display it will be block so it will be visible and here we will add set timeout display none so after 3 second it it will hide the error message which is please fix error to submit so this message will be displayed for 3 second and after 3 second it will be hidden because we are adding display none in the set timeout and it will return false so it will not submit the form so let’s check this one and if I click here you can see this message will be hidden after some time you can see this message is hidden so this complete form is working fine right now let me check check all these input field and if I write a name here then we will add one phone number and any email ID and message after collecting all the input field if I click on sub MIT it will submit the form successfully without any error message so it is working fine so we have completed this form validation using JavaScript in this video we are going to learn how to create an image gallery that will slide horizontally using Mouse wheel usually when we rotate the mouse wheel the web page scroll down or a scroll up but if I take cursor over this image gallery and rotate the mouse wheel it will scroll the gallery horizontally either in the left side or right side in this image gallery we have added two control icons also that is for the backward and forward we can click on these icons to scroll the gallery to the left side or right side we have added one more effect if I take cursor over this image you can see the image becomes colorful all the images are gray right now when we take cursor it becomes colorful and you can see the image size is also increasing when we take cursor so we will create this horizontal scroll with mouse wheel using HTML CSS and very simple JavaScript this will be very good JavaScript mini project for your resume now let’s start the video here I have this folder and in this folder I have one HTML file one CSS file and another folder called images and here you can see some images and two icons you can find all these images download link in the video description now I will open these files with my code editor which is Visual Studio code so this is the HTML file where I have added the basic HTML structure and this one is the CSS file in this HTML file I have added this title then this link tag that will connect the CSS file now we will add the code within this body tag so here we will create one div with the class name gallery and within this Gallery we will create another div and in this div we will add span and inside this span we will add the first image with the IMG tag here we will add the file path of the image it is images / image1.png Let’s duplicate this line and we will add the another image image 2 and three after that let me open this web page with browser so you can see three images on this web page now let’s come back and here we will copy this class name and come back to the CSS file here first we will add the Cs for the body and here in this body we will add the background after that add that class name Gallery here we will add the width it will be 900 pixel and display Flex after that we will add gallery and div for this div let’s add the width of 100% display grid and grid template column Auto auto auto so we will get three image in one row after that we will add grid gap of 20 pixel and padding of 10 pixel then we have the IMG tag so here we will add gallery div and IMG width will be 100% for the image now you can see perfect size for these images next we will add three more images so let’s come back and duplicate this div and replace the image file name it is 456 so we have total six images you can see the images size becomes small so let’s come back and here we will add Flex none now you can see it is perfect size for the image and you can see the horizontal scrolling here the complete website is scrolling so let’s come back and uh here in this Gallery we have to add overflow X scroll now only this Gallery will scroll the gallery width is 900 pixel and it is scrolling inside that div next we have to hide this horizontal scroll bar so let’s come back and here we will add gallery and webkit scroll bar display none so that horizontal scroll bar is hidden but we cannot scroll it with the mouse wheel so let’s come back and uh Above This Gallery we will add another div with the class name Gallery WAP and in this one we will add one image and file name back do PNG then another file name next. PNG here we will add ID back BTN and next vtn and let’s remove it and add it here within these images so first we have the back arrow then all images and again next Arrow you can see the back arrow at the top and the next Arrow at the bottom here we will add gallery W display Flex align item Center and justify content Center then we will add the margin of 10% Auto you can see it is horizontally centered now just come back and copy this ID back vtn then next vdn we are adding hashtag because it’s an ID here we will add the width 50 pixel cursor pointer and margin 40 pixel now the size for the icons are perfect next we will add the hover effect on these images so let’s come back and here we will add gallery div IMG and hover and uh let’s add filter gray SK zero the G scale will be zero and come here and we will add cursor pointer and transform scale 1.1 so it will increase the size just copy this filter gray scale and add it here and let’s add 100% so the default gray scale will be 100% so the image will be gray let’s add the transition transform 0.5 seconds so it will take5 seconds to increase the size you can see the size is increasing and the image becomes colorful when we take cursor so we have added the hover effect after that we have to enable the horizontal scroll using Mouse wheel so just come back and here above this closing body tag we will add a script tag in this script tag we will add the JavaScript so here we will add let scroll container equal to document dot query select and we will select this one do Gallery so we are selecting this class name after that we will add let back vtn equal to document. get element by ID because we have the ID here back vtn so write it here now duplicate this line and it will be next vtn so we have selected the gallery div then next vtn and back vtn after that let’s call copy this one add it here here we will add add event listener and it will be wheel so it is wheel event then we will add this Arrow function and when we will rotate the wheel this function will be executed so here we will add EVT do prevent default it will prevent the default feature that scroll the web page down or up next we will add the scroll container scroll left plus equal to EVT dot Delta y after that come back to the website and if I take cursor over this image and rotate the mouse wheel this slider is scrolling we can scroll in the left direction or right direction you can see this image gallery is scrolling horizontally with the mouse field now we will add the click feature on this back arrow and next Arrow so let’s come back and hit we will add next BTN do event listener click because we will add the click function here also we will add the arrow function and this function will be executed when we will click on the icon here we will add scroll container do scroll left plus equal to 900 because the width is 900 for the gallery again duplicate it and here we will add back BTN and it will be minus equal to 900 that’s it after that let’s come back and if I click on the back button it is a scrolling the gallery to the left side and if I click on the right button it is a scrolling the gallery to the right side but when we click on these icons it immediately scroll it by 900 that’s why we cannot see the scroll animation so let’s come back and here we will add scroll container dot Style dot scroll behavior and we will add the scroll Behavior smooth let’s copy it and paste it here same thing now just come back and if I click here you can see it will scroll smoothly you can see this Gallery is scrolling horizontally when we click on these next or previous button and we can scroll it using the mouse wheel also but you can see this mouse wheel scroll is not smooth right now so let’s come back and uh here copy and paste it in this V event and here we will add Auto that’s it after adding this let’s come back now if we rotate the mouse wheel this Gallery is scrolling smoothly and when we click on the icon here also it is scrolling smoothly and we have the hover effect also so finally we have completed this beautiful image gallery that scroll horizontally using the mouse wheel in this video we will learn to make a digital clock using JavaScript let’s check the current time in my laptop at the bottom right corner so the time is exactly same as the time displaying on my website we will Design This digital clock using HTML and CSS then we will update the local time using JavaScript this is very useful JavaScript project for your job portfolio so let’s start to make this digital clock using JavaScript a step by step here I have this folder and in this folder I have added one index.html file one style. CSS file let me open these files with my code editor which is Visual Studio code you can use any code editor so this is the HTML file where I have added the basic HTML structure and this one is the CSS file where I have added the margin padding font family and box sizing these CSS properties are applicable for all the HTML elements in this HTML file I have added this title digital clock using JavaScript e tutorials and then I have added this link tag that will connect the HTML and CSS file because here I have added hdf style.css now we will add the code within the body tag so so here let’s create one div with the class name hero and now we will add the CSS for this class name write this class name here in this CSS file and here we will add the width height main height will be 100 VH then we will add the background and in this background we will add the linear gradient color here we will add one angle and two color code then we will add the color this will be the white color and let’s add the position relative after adding this let me come back to the folder and open this HTML file with any web browser so you can see this gradient color on the complete web page let me close this browser and I will open it with the visual studio code extension called live server so that it will refresh the web page automatically whenever we will add any changes in the code file and save the code file so you can see the same web page again with the gradient color now let’s come back and within this div with the class name hero here we will create another di with the class name container inside this container we will create another with the class name clock and in this clock let’s add the time like this save this and open the web page you can see this time here at the top left corner 0 so let’s add some CSS let’s come back and here we have the class name container just add it here in this CSS file and here we will add the CSS for this content container we will add the width it will be 800 pixel and then we will add the height height will be 180 pixel after that we will add the position absolute top 50% left 50% and transform translate – 50% and – 50% so that this element will be in the center of the web page for now here we will add one background so let’s add the background red and open the web page so you can see this red color of box in the center of the web page now we’ll remove this color let’s come back to the HTML file and here we have the class name clock so let’s add the CSS for this clock here we will add the width and height 100% after that we will add the background and in the background we will add some color with less opacity so we will add rgba so this is the color code for the background then we will add the Border radius of 10 pixel and uh let’s add display Flex align items Center and justify content Center so that the text inside this clock will be in the center and after that come back to the web page you can see this color in this box now we will add two other elements that is a square and circle so let’s come back we will add the element with the help of cudio elements so here in this container we will add two cudio elements which which is before and after so add this container then write double column before and in this before we will add content content will be empty then let’s add the width and height width will be 180 pixel and height also same 180 pixel then we will add the background here we will add one color code then border radius will be 5 pixel very small and Position will be absolute left Min – 50 pixel and top also Min – 50 pixel then right Z index minus one after adding this you can see one element at the top left side of this horizontal box now we will create another element that that will be one Circle so let’s come back and duplicate this one here we will add after this is same content width height and we will change the background color and here we will add border radius of 50% so that it will be a circle Position will be absolute and here it will be on right side so right minus 30 pixel and it will be at the bottom so write bottom minus 50 pixel that’s it now you can see one Circle in the right side next we have to make this horizontal box blur so let’s come back and here we have the clock so in this clock we will add backdrop filter blood it will be 40 pixel after that you can see the web page it looks good next we have to change the size for this text and we will add the name also like minutes second hours so let’s come back and uh here let’s remove this one instead of writing the text directly we will add one span tag and in this span first we will add 0 0 Let’s duplicate it here we will add the column after updating this you can see again it is same we have just added the span tag for each number let’s come back here we have the span inside this clock so come to the CSS file let’s add dot clock and a span so for each a span we will increase the font size so let’s add the font size 80 pixel we will add the width 11 10 pixel and uh display will be inline block and text align Center and P relative after that you can see some space between these numbers and the font size is also increased next we will add the name like hours minutes and seconds so let’s come back to the code again and let’s copy this clock span and write the sudo element after and this after let’s add the content in this content it will be empty font size 16 pixel position absolute bottom – 5 pixel and left 50% transform translate x – 50% in this content we can add the text so let’s add ours it will be 16 pixel PX and after applying this you can see we have the text here hours hours hours like this and we have to remove this hours and it will be different in the first one we will add hours then minutes and seconds to change this one we will come back to the the HTML file and in this HTML file let’s add some IDs in the first span we will add the ID HRS for the RS then in the second number here we will add ID Min n that is for minutes and in the last one we will add the ID SEC for the seconds and let’s come back to the CSS file and remove this content from here remove this and here at the end we will add that ID like HRS and here we will add sudo element after write content ours duplicate this line it will be minute and second and here also minutes and seconds after adding this let’s come back to the website so you can see in the first number we are getting hours then in the second one minutes and last one seconds next we have to update the time and uh to add the current time we need to add the JavaScript so let’s come back to the HTML file and here at the bottom just above this closing body tag we will add a script open and closing tag and within this script we will add all our JavaScript code so here we will add let HRS equal to document. getet element by ID and the ID is HRS that is from here let’s duplicate it it will be minute and second to get the date and time we need to use the JavaScript object called date so here let’s add let current time equal to new date and if we print this current time let’s add console.log current time you will see the local time and date let’s come back to the website and open the console here you can see it is displaying Tuesday May 30 2013 and this is the time so it is our local time now we have to get the time only we have to remove the date and day so let’s come back here you can use the JavaScript methods get hours get minutes and get seconds to get the hours minutes and seconds from this time so let me show you here we will add current time dot get ours and open the web page you can see it is displaying the hours 15 if we come back and add get minutes it will display the minutes in current time 37 and like that we can get the seconds also so let’s display all those things here we will add HRS do inner HTML equal to current time dot get hours so it will display the hours of current time duplicate this it will be minutes Min and it will be seconds second and here also we will update the methods get minutes and another method called get seconds so after updating this let’s come back to the website you can see the current time here which is 15 38 and 39 let me show you my laptop current time it is same 1538 but you can see this time is not updating so we have to update it it at every second for that we will use the set interval so let’s come back and we will add all those things in a set interval here we will add comma 1000 milliseconds that means 1 second and and within this we will add all these code so it will execute this code at every 1 second now just come back to the website again and you can see this seconds is increasing and this minute is also increasing right now it is displaying only one digit so suppose you have the numbers less than 10 we can add one zero in front of that number for that let’s come back to the JavaScript again and here we will add one if condition so we will add the inline if condition copy this and here we will add plus this one and here we will add the condition if less than 10 if it is less than 10 then it will add one zero or if it is not less than 10 then it will be empty like this so we have to add the same thing in the other one here and here and update the methods it will be minutes minutes and seconds after updating this let’s come back to the website again and finally you can see it will display the double digit in the numbers now you will see it is starting from 0 1 02 03 like that so finally we have completed our digital clock using HTML CSS and jav JavaScript in this video we will create a product page design that you can use on e-commerce website here I have added a product image on the left side and product details on the right side in this product image we have some control buttons when I click here you can see the product image is changing in the product detail section you can see the product name price and offer after after that we have some select option for variable products we can select the size and color of the product then we have input field to select the product quantity and at the bottom you can see by now button we will create this product page design using HTML CSS and JavaScript here in this folder I have created one index.html file one style. CSS file and you can see another folder with some images you can find all the images download link in the video description let me open these files with my code editor which is Visual Studio code you can use any code editor so this is the HTML file where I have added basic HTML structures and this one is the CSS file and I have connected this CSS file with this link tag in the HTML file now we will add code in the body tag so here we will create one dip with the class name container in this container we will create another div and let’s add the class name product in this product we have to create two columns so first we will create the left TI with the class name Gallery where we will add the product image gallery and let’s add another div with the class name details where we will add the product details like product title description and buttons next we will add the image in the first div which is image gallery so here we will add one IMG tag write the file path of the image so this is the images / image 1.png after adding this let’s come back to the folder and open our HTML file with any web browser so you can see this image on the web page let me close this browser and I will open this browser with the visual studio code extension called live server so that it will refresh the web page automatically whenever we will add any changes in the code file and save the code file so you can see the same B page page again now let’s come back and we will add the CSS so let’s copy this container write it here in the CSS file here we will add some CSS properties like width then we will add Min height then we will add the background in this background we will add one color code let’s add the display Flex align items Center justify content Center so that the product will be in the center of the web page let’s copy this class name product write it here so for this product we will add the width it will be 90% and maximum width will be 750 pixel then we will add display Flex so left and right column will be side by side now we will add the CSS for this gallery and details so let’s add this Gallery here so for this Gallery we will add Flex basis 47% it means width is 47% after that we will add the background so this is the color code now in this Gallery we have one image so again write this one then write IMG tag so for this image we will add the width it will be 100% and display it will be block let’s add some padding from the top 100 pixel and after adding this again refresh the website you can see this image on the web page next we will add the CSS for the right column which is details so here we have details just copy this one write it here in this CSS file so for this one we will add the flex bases 53% it is width 53% so now we will add the background it is white and we will add some padding it is 40 pixel and let’s add the padding from left side it will be 60 pixel now you can see this white color in the right side and in the left side you can see this image now we have to increase the size for the left one so here in this Gallery we will add transform scale 1.08 so it will increase the size let’s add the Box Shadow also so here we will add box Shadow next we will add the same box shadow in the second column which is details so just copy this one and paste it here after adding this let’s come back to the website again you can see the size for the left column is increased and you can see the shadow also now we will add some details in the second column so here in this second div we will add space and here we will add one title in H1 it will be the name of the product casual t-shirt next we will add another text in H2 so it will be the price of the product again we will add H3 and here let’s add the discount 30% off after that we will add some description in P tag so this is the description after adding this you can see this title and description on the web page so we have to design these things so just copy this class name details WR it here and here in this details we have the first title in H1 so for this H1 we will add this color code and we will add the font size you can see different size for this text again write this class name then write H2 for the second Title Here we will add another color and font size it will be 30 pixel and we will also change the font weight 600 let’s add this class name again and here we will add H3 for the discount so in this one we will add color and margin from the bottom to add some space at the bottom so you can see these titles looks good next we will add the CSS for this description for that we will come back back and here in this details here only we will add font size it will be 13 pixel and we will change the font weight let’s add the color after adding this this description is also looking good next we have to add some radio buttons where we can select the size and color so let’s come back and after this P we will add one form tag and in this form we will add one div so let’s add the div with the size select and in this size select first we have to add one text in P tag it is size then we will add one label in this label we have to add the four it will be small and inside this label we will add one input field so in this input field input type will be radio so it will be a radio button then we will add the name let’s add size and in this ID we will add the same thing which is here for this ID and for should be shame after that we will add a span and in this span we will add s s means small let’s duplicate this label and change the ID and for so this will be medium and here also medium this will be M duplicate again and write large and ID also large and a span L again we will add this one then right extra large for Excel let’s duplicate again and this is the last option dou x large double XL after adding this again refresh the website you can see this text size then we have the radio buttons for SML Xcel and double XEL you can select these radio buttons now let’s come back to design this one we will copy this form here we will add details form so for this form we will add the font size it will be 15 pixel then we will add the font weight then we have the size select so let’s copy this one write it here size select in this one we will add display Flex so that the text and radio buttons will be in the same horizontal line aligned items will be Center and some margin from the top to add some space again copy this one here we will add P so for this P tag we will add the width it will be 70 pixel now you can see this size here then we have some space and after that these radio buttons and text next we have to change the color of these text which is SM L XL so let’s come back and copy this one here we will add input then checked so if the input is checked we have to change the color of the span text so here we will add plus span and color we will add this blue color and we will also increase the font weight it is 600 so you can see when I select any radio button the color for the label text is changing and the font weight is also changing next we have to hide these radio buttons there will be only text copy this size select input and just add display none so it will be hidden you can see we have only text here and we can click over these text to select any radio button that is invisible so again come back here we will add site select then a span so for this span we have to add some space so first we will add some padding then margin from the right side and we will add the cursor pointer so it looks good and we can click on any text to select this one and the color and font weight is changing when we select any size so we have completed this size select let’s come back and after closing of this div which is for the size select or you can add it here just above this closing form tag here we will add one div with the class name color select where we will add radio buttons to select the color so in this one again we will add text in P tag it is color then we will add label for let’s add red color and in this for again we will add input input type will be radio then we will add name in this name we will add color and let’s add the ID red for and this ID should be same after that again we have to add one span and in this span we will add one class name so it is color one after adding this let’s duplicate this complete label total we have four colors so let’s change the color it is green and here also green and in this span we will add the class name color two now for the third one we will add blue and ID also blue this is color three now for the fourth we will add for pink ID pink and class name color four after adding this let’s refresh the website again you can see this color and then we have four radio buttons now we have to align all these in same horizontal line so again come back let’s copy this class name color select write it here in the CSS file and for this color select we will add display Flex then align items Center and some space from the top again WR this class name and in this one we have P tag so we will add width 75 pixel you can see it is in the same horizontal line we have some space after this color next we have to add different color with the each radio buttons so let’s come back and in this CSS file we will add this class name again then write span so for this span let’s add display it will be inline block then we will add width and height it will be 15 pixel after that we will add border radius it will be 50% so that it will be a circle after that we will add some spad so we will add margin right 15 pixel and cursor will be pointer now we have to add different color in each as span so we have added class name color 1 2 3 4 so for all these span we will add different color so here we will add color one and write background it will be R let’s duplicate it and we will change the class name color 2 3 4 and for all these class name we will add different color now we have added different background in all the span again refresh the website and here you can see we have different color circle with the each radio buttons next we will hide these radio buttons only color will be visual so let’s come back and copy this class name color select then input here we will add display none that’s it so it will be hidden you can see we have colors here now we have to select the color so let’s come back and here we will add color select input checked so whenever the input button is checked we will Design the span so here we will add plus a span transform scale 0.7 so it will reduce this size size then we will add box shadow in this Shadow we will add two Shadow this will be in the white color and again we will add the same thing let’s add a comma and write another Shadow so here we will add black color and it will be 6 pixel so after adding this again refresh the website and you can see see when we click on any color there is one circle around it so this select option is working next we will come back to the HTML file and here before this closing form tag here we will create another div with the class name quantity select inside this div we will add one title in ptag it is quantity and again we will add one input field and input type will be number and value it will be one after adding this let’s refresh the website you can see this quantity and this input field with the value one and we can increase and decrease this value with these Arrow let’s come back and copy this class name quantity select write it here in the CSS file here again we will add display Flex align items Center and some space so margin top 20 pixel WR this class name again then write p and for this P we will add width it will be 75 pixel you can see it is in the same horizontal line next we will Design This input field let’s come back and here we will add quantity select input so for this input field we will add the background this is the color code for the background then we will add border it will be zero and outline it will be zero let’s add some padding inside this input field then we will add width it will be 50 pixel and B radius it will be 12 pixel you can see this input field looks good we can increase and decrease the value by clicking on this up and down buttons after adding these input fields we will add one submit button or a buy button let’s come back and just above this closing form tag we will add one button and button text will be by now you can see this button here next we will Design This so let’s come back to the CSS file here we will add form button in this button we will add the background this color code then we have to change the button text color after that increase the font size of this button text then width it will be 100% and some padding it is 10 pixel and Border radius will be 30 pixel after that we will add border zero and outline Z then we will add margin from the top to add some space from the top and box Shadow here we will add this box shadow then cursor pointer after adding this again refresh the website and you can see this button looks good so we have added all the contents in the product detail section now we will add controls option in the gallery where we will click and change the gallery image so let’s come back and in this Gallery after this image we will add one div with the class name controls inside this div we will add three asan and with this span we will add the class name BTN just duplicate it so we have three span here with the class name BTN next we have to design this one so copy this class name controls write it here in this CSS file here we will add position Position will be absolute then bottom it will be 40 pixel and right it will be 20 pixel so this control buttons will be in the bottom right side of the gallery here we will add BTN so for this span we will add display block and we will add the width and height 10 pixel then we will add border radius 50% so that it will be one small circle then we will add the background so in this background we will add the color code in RGV it will be white colored with 50% opacity then we will add some margin and cursor it will be pointer so here in this controls we have added position absolute so we will add position relative in this gallery you can see we have added Gallery over here at the top so in this one we will add position relative so this control buttons will be in the gallery only after adding this position relative again refresh the website and you can see these three Circle in this product Gallery next we have to add one color in the first one so it will look active so let’s come back and here in this first button we will add one one more class name active after adding this let’s come back to the CSS file at the bottom we will add BTN do active and here just we will change the color let’s add the background and this color code after adding this again refresh the website you can see this blue color in the first dot next we have to add the click function whenever we will click on any other dot the image should change so for that we will add the JavaScript so let’s come back and here in this HTML file we have to add the click feature on this span where we have added class name BTN and we will change the image in this IMG tag so here in this IMG tag we will add one ID also so let’s add the ID product IMG after adding this let’s come back at the bottom just above the closing body tag here we will add a script tag where we will add the JavaScript inside this we will add let product IMG equal to document. get element by ID and you already know the ID which is product IMG next we will add the let BTN equal to document Dot get Elements by class name because we have added the class name BTN in all the span after that we have to add the click feature on the button so here we will add BTN 0. on click equal to function and inside this function we will add the product img.src because we have to change the image so let’s add product img.src equal to the file path of the image so let’s come back to our folder you can see we have one folder called images and inside this folder we have the image called image 1.png 2.png and image 3.png so this is our file path so let’s come back and here we will add images SL image 1 do PNG so this is the first image after adding this let’s duplicate this one and here we will add BTN 1 and BTN 2 for the second button and third button and we will change the image also it is image 2.png and image 3.png after adding this let’s refresh the website again and if I click on the second button you can see the image is changing if I click on the third one image is changing right now the image is changing when we click on these dot but the color is not changing for the dot which is active so we have to change this one we have to change the active color for the circle so let’s come back and here we have added the class name active so we have to remove this class name through JavaScript and this class name will be added in the particular Circle where we will click to remove remve this one we will add for BT of BTN bt. classlist do remove and inside this remove we will add the class name which is active so it will remove the active class name from all the circles so after removing the class name we have to add this class name on the particular Circle where we have clicked for that here we will add this do class list do add and the class name which is active so first it is removing the class name from all the circle and adding the class name on the particular Circle let me copy this one and add it in all the function just copy and paste in the second and third one that’s it again refresh the website and you can see if I click on any Circle the image is changing and the color is also changing when we click on the second one the second Circle becomes blue when we click on the third one then third circle becomes blue so finally we have created this image gallery and product description for this product page I hope this JavaScript course will be helpful for you if you have any question you can ask me in the comment section please like and share this tutorial and also subscribe my channel greatest Tech to watch more videos like this one thank you so much for watching this video

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Learn Git – The Full Course

    Learn Git – The Full Course

    The source provides a comprehensive guide to using Git for version control, aimed at both beginners and more experienced developers. It covers fundamental concepts like repositories, commits, branching, merging, and rebasing, emphasizing practical workflows and best practices. The material explores advanced topics such as resolving conflicts, stashing changes, and using git bisect for debugging. Furthermore, it explains the importance of clean commit history and strategies for achieving it, including squashing. Finally, the lesson introduces worktrees and the power that git has to offer.

    Git Mastery: A Comprehensive Study Guide

    Quiz

    Instructions: Answer the following questions in 2-3 sentences each.

    1. What was the primary motivation behind Linus Torvalds creating Git, and how long did it take him to develop the initial version?
    2. Explain the difference between “porcelain” and “plumbing” commands in Git, providing an example of each.
    3. Describe the three primary states a file can be in within a Git repository.
    4. Why is it important to stage changes using git add before committing them?
    5. Explain why Git is considered a “distributed version control system” and what a “remote” repository is in that context.
    6. Explain how Git optimizes storage despite storing complete snapshots of files with each commit.
    7. What is the purpose of the .gitignore file, and how does it help manage a Git repository?
    8. Explain the difference between git reset and git revert in terms of their impact on the repository’s history.
    9. Describe the purpose of git rebase and how it differs from git merge.
    10. Explain what a Git Tag is and how it’s different from a branch.

    Quiz Answer Key

    1. Linus Torvalds created Git in response to a license dispute with BitKeeper. He created the original version of Git in just five days after Linux lost access to bitkeeper.
    2. “Porcelain” commands are high-level commands used for everyday tasks like git commit, while “plumbing” commands are low-level tools for internal operations, such as git hash-object. Porcelain is what you will use 99% of the time.
    3. A file can be in one of three states: untracked, staged, or committed. Untracked files are not known to Git, staged files are ready to be committed, and committed files are part of the repository’s history.
    4. Staging allows you to select specific changes for a commit, rather than including every modified file. The index is the name for the staging area.
    5. In a distributed version control system, every user has a complete copy of the repository, which is called a “remote.”
    6. Git uses compression and de-duplication to optimize storage. Git compresses each commit to make it smaller and de-duplicates files that are the same across commits.
    7. The .gitignore file specifies intentionally untracked files that Git should ignore. This helps prevent unnecessary files, such as build artifacts or temporary files, from being added to the repository.
    8. git reset moves the current branch to a previous commit. It essentially throws commits away. git revert creates a new commit that undoes the changes of a previous commit, preserving history.
    9. git rebase moves a branch onto another branch, rewriting the commit history. It’s usually good to use git rebase in a private local branch.
    10. Git Tags are immutable pointers to a specific commit. They’re often used to mark release versions.

    Essay Questions

    Instructions: Answer the following essay questions in a well-structured format with supporting evidence from the source material.

    1. Discuss the significance of understanding Git’s underlying plumbing and porcelain commands for effective version control. How does knowledge of both aspects contribute to a developer’s proficiency with Git?
    2. Explore the workflow of Git from modifying a file to having it reflected in the remote repository.
    3. Analyze the various methods of undoing changes in Git, such as reset, revert, and reflog. How do these commands differ, and in what scenarios is each most appropriate?
    4. Explain the relationship between Git and GitHub, clarifying the distinct roles and functionalities of each. How does GitHub enhance collaboration and version control for software development teams?
    5. Describe and contrast different strategies for merging changes in Git, including merge commits, rebasing, and cherry-picking. What are the advantages and disadvantages of each approach, and how do they impact the commit history?

    Glossary of Key Terms

    • Git: A distributed version control system for tracking changes in computer files and coordinating work on those files among multiple people.
    • Repository (Repo): A storage location for all the files associated with a project, along with their history.
    • Commit: A snapshot of the repository at a specific point in time, representing a set of changes.
    • Branch: A pointer to a commit, representing an independent line of development.
    • Merge: The process of combining changes from one branch into another.
    • Rebase: The process of moving a branch to a new base commit, rewriting the commit history.
    • Porcelain: High-level Git commands used for everyday tasks (e.g., commit, add, branch).
    • Plumbing: Low-level Git commands used for internal operations and more complex tasks.
    • Staging Area (Index): A preparatory area where changes are organized before being committed.
    • Remote: A repository hosted on another server or location, allowing for collaboration and sharing of code.
    • .gitignore: A file specifying intentionally untracked files that Git should ignore.
    • HEAD: A pointer to the current branch or commit being worked on.
    • Tag: A named pointer to a specific commit, often used to mark releases.
    • SHA (Secure Hash Algorithm): A unique identifier for a Git object, such as a commit or file.
    • Working Tree: The directory on your file system where the code you are tracking with Git lives.
    • Reflog: A mechanism to record when the tips of branches and other references were updated in the local repository.
    • Squash: Combining a series of commits into a single commit.
    • Stash: Temporarily saving changes to the working directory and index to allow for switching branches or other tasks.
    • Cherry-pick: The act of picking a commit from a branch and including it in another.
    • Bisect: A powerful command that allows one to use binary search to find which commit introduced a bug.
    • Work Tree: The directory on your file system where the code you are tracking with Git lives.

    Boot.dev Git Course: A Comprehensive Review

    Okay, here’s a detailed briefing document summarizing the key themes and ideas from the provided source text, which primarily covers a Git and GitHub course offered by Boot.dev.

    Briefing Document: Boot.dev Git Course Review

    1. Overview

    The source is a transcript of a video course focused on teaching Git version control. The course covers fundamental Git concepts, command-line usage, and team collaboration workflows, and focuses on both theoretical understanding of how Git works internally (“plumbing”) and practical application of Git commands (“porcelain”). The instructor heavily emphasizes hands-on exercises and examples.

    2. Key Themes and Concepts

    • Git Fundamentals:
    • Version Control: The course introduces Git as a system for tracking code changes over time, attributing changes to authors, and enabling history manipulation and reversion.
    • Commits: A core concept is the “commit,” which represents a snapshot of changes tied to an author, timestamp, and message. Git builds a graph of these commits, allowing branching and merging. “git creates a commit a commit is just a set of changes tied to an author time of day and other information.”
    • Branches: The ability to branch off a commit and create new lines of development is emphasized. Branches can be merged, and commits can be squashed or reverted.
    • Staging (Index): The staging area, or index, is explained as an intermediate area where changes are prepared for a commit. The instructor highlights the importance of understanding the difference between untracked, staged, and committed files. “An untracked file means that it’s never been added to the index which is like your staging area or it’s never been tracked”
    • Git is NOT a Delta Store: A key takeaway is that Git doesn’t just store diffs (changes), but rather entire snapshots of the repository at each commit. This was surprising to many, as the instructor notes “This was a surprise to me I always assumed each commit Only Stores the changes made in that commit” Git uses compression and de-duplication techniques to optimize storage.
    • Porcelain vs. Plumbing: Git commands are categorized as high-level (“porcelain”) and low-level (“plumbing”). The course focuses mainly on porcelain commands, as they are used most often in development. “the porcelain commands are the ones that you will use most often as a developer to interact with your code” The source claims the plumbing is the “hard things, the underlying tools you can use with Git” and that if you “understand how the the plumbing works the porcelain makes a lot of sense.”
    • Git Command-Line Usage:
    • Essential Commands: The course repeatedly emphasizes the core commands: status, add, commit, log, branch, checkout, merge, rebase, push, pull.
    • Configuration: Configuring Git with user information (name, email) is covered, along with setting default branch names. The use of local vs. global configuration is explained.
    • Log Flags: The instructor goes over using log in different ways, explaining, for instance, the use of “oneline” and “decorate”.
    • Reset: The git reset command is explained as a means to undo changes, with options like –soft (keeps changes), and –hard (discards changes). The instructor emphasizes the usefulness of git reset –soft in scenarios like rebasing after a mistake.
    • Remote Repositories: The course covers the concept of remote repositories and the standard convention of naming the authoritative source “origin.”
    • Fetch and Merge: The use of git fetch to retrieve changes from a remote and git merge to integrate them into the local branch is demonstrated.
    • Pull: Shows how to pull changes from remote by using git pull origin main, and what to do if you end up with diverging branches
    • Team Collaboration and Workflows:
    • Branching Strategies: The instructor presents branch renaming and branch visualization.
    • Merging and Conflict Resolution: The course addresses merge conflicts, manual resolution, and built-in Git tools like checkout –theirs and checkout –ours.
    • Rebasing: Rebasing is introduced as a method to integrate changes from one branch into another while rewriting the commit history. Squashing changes into a single commit is a common practice before pushing to a public branch, according to the instructor.
    • Pull Requests and Code Review: The course briefly touches upon pull requests and code review workflows, common in team environments.
    • Get Ignore: Explains the usefulness of get ignore files, how to create them, and the usefulness of the exclude parameter.
    • Stashing: A “stack” method, useful for applying some index to a data structure. Also useful if you need to pull new updates.
    • Advanced Git Concepts:
    • Reflog: The git reflog command is highlighted as a tool for recovering lost commits or branches, as it keeps track of HEAD movements. “remember get reflog keeps track of where everything has been”
    • Squashing Commits: The process of combining multiple commits into a single commit is covered, emphasizing its use for clean history and easy reversion.
    • Cherry-Picking: The instructor presents a “cherry-pick” as a method for adding small, specific commits.
    • Bisect: The git bisect command is introduced as a tool for finding the commit that introduced a bug through automated searching. It requires a programmatically informed test.
    • Worktrees: Briefly mentions the importance of work trees.
    • Tags: Emphasizes that tags are immutable pointers, so you cannot make edits to a tag.

    3. Notable Points and Opinions

    • Instructor Personality: The instructor has a casual, humorous style, often interjecting personal anecdotes and opinions.
    • “The Right Way” to Use Git: The instructor often presents a particular way of using Git as the “best” or “correct” way, though acknowledging that other approaches exist.
    • Emphasis on Understanding Git Internals: The course attempts to go beyond just teaching commands and aims to provide a deeper understanding of how Git works “under the hood.”
    • Criticism of Lane: The author is critical of “Lane” for his comments, which can be seen as copy-editing.
    • Reference of Popular Culture: References popular culture, such as “Star Wars”, “Slanderous” and “Ren and Stimpy”.

    4. Potential Improvements

    • More structured presentation of advanced topics.
    • More emphasis on different branching models (Gitflow, GitHub Flow).
    • More detailed explanation of the interplay between the working directory, staging area, and commit history.

    5. Conclusion

    The Boot.dev Git course appears to be a comprehensive introduction to Git, covering a wide range of topics from basic usage to more advanced concepts. The instructor’s emphasis on hands-on exercises and theoretical understanding makes it a valuable resource for aspiring developers, although the opinions and informal style might not be for everyone.

    Git: Frequently Asked Questions

    Frequently Asked Questions About Git

    Here are some frequently asked questions about Git, based on the provided source:

    1. What is Git and what does it allow you to do?

    Git is a distributed version control system that allows you to track changes to code over time, by author. It provides commands to search, manipulate, and revert history. Essentially, it creates snapshots (commits) of your code, tied to an author, timestamp, and other relevant information. You can branch off from any commit, create new commits on these branches, and merge them back together.

    2. Who created Git and why?

    Linus Torvalds, the creator of Linux, created Git in five days in 2005. This was triggered by a license dispute between Linux and BitKeeper, a commercial version control system that Linux had been using. Someone reverse engineered the BitKeeper protocol, and as a result Linus created Git for the Linux kernel development. Git was initially not user-friendly, requiring the use of low-level (plumbing) commands.

    3. What is the difference between “porcelain” and “plumbing” commands in Git?

    Git commands are divided into high-level (“porcelain”) and low-level (“plumbing”) commands. Porcelain commands are the ones developers use most often for interacting with code. Examples include git add, git commit, git branch, git merge, and git rebase. Plumbing commands are the underlying tools that Git uses, such as git apply, git commit-tree, and git hash-object. While understanding plumbing can be helpful, developers typically use porcelain commands 99% of the time.

    4. What are the key states a file can be in within a Git repository?

    A file in a Git repository can be in several states:

    • Untracked: Git doesn’t know about the file, meaning it has never been added to the index (staging area) or committed.
    • Staged (Indexed): The file has been added to the staging area, meaning it is ready to be included in the next commit. Only the changes added are tracked.
    • Committed: The file is part of a snapshot stored in Git’s history.

    5. How does Git store data, and what are “trees” and “blobs”?

    Git stores data as objects in the .git/objects directory, compressing them to save space. A commit is a type of object that includes a hash, author, timestamp, and message. Git doesn’t store diffs; it stores entire snapshots of files per commit.

    • Tree: Represents a directory in Git.
    • Blob: Represents a file in Git.

    A commit contains a tree object representing the root directory. This tree can contain other trees (subdirectories) and blobs (files). This structure allows Git to recreate the state of the repository at any point in history.

    6. How do you configure Git with your personal information?

    You can configure Git with your name and email address using the git config command. This information is stored in a configuration file, which can be either global (located in your home directory) or local (located in the .git folder of your repository). For example:

    git config –global user.name “Your Name”

    git config –global user.email “your.email@example.com”

    You can also configure the default branch name, setting it to main instead of master.

    7. What is git reflog and why is it useful?

    git reflog is a mechanism to record when the tips of branches and other references were updated in the local repository. The reflog allows you to recover commits even after branches have been deleted or lost. It keeps track of where “HEAD” (the pointer to the current commit) has been, making it possible to revert to previous states.

    8. What is git bisect and how can it help with debugging?

    git bisect is a powerful command for finding the commit that introduced a bug. It works by performing a binary search through the commit history. You mark a known “good” commit (before the bug existed) and a “bad” commit (where the bug is present). Git will then check out commits in between, and you mark each commit as “good” or “bad” based on whether the bug is present. Git bisect continues this process, narrowing down the range until it identifies the specific commit that introduced the bug. You can use it to check if a current commit is good or bad.

    Git bisect can even be automated with a script that programmatically determines if a commit is “good” or “bad.” This is done with get bisect run <script>, and by returning a non-zero exit code will designate it as bad, and zero will designate it as good.

    Git Version Control: Concepts and Commands

    Git is a Version Control System that allows you to track code changes over time by author. It was written by Linus Torvalds in 5 days and has become the standard for developers.

    Key aspects of Git include:

    • Repositories Each project has one repository, which is essentially a directory containing the project and a hidden .git directory. The .git directory stores the entire state of the Git project. To create a new empty repository, you can use git init.
    • Commits Git creates commits, which are sets of changes tied to an author, time, and other information. Git stores the entire history per commit.
    • Porcelain and Plumbing Git commands are divided into high-level (porcelain) and low-level (plumbing) commands. Porcelain commands are used most often by developers.
    • Configuration Git can be configured with your information using the git config command. The configuration file is a file that can be in global space (your home directory) or within your .git folder.
    • States Files in a Git repository can be in several states including untracked, staged, and committed. The git status command shows the current state of the repo. An untracked file has never been added to the index or tracked.
    • Staging Area The staging area is also known as the index.
    • Tracking Changes You can add a file to the staging area using the add command. After staging a file, you can commit it. A commit is a snapshot of the repository at a given time. The git log command shows a history in a repository.
    • Branches A branch is a pointer to a commit. Branches are lightweight and cheap. You can determine which branch you’re currently on with git branch. It is recommended to use main as your default branch if you work primarily with GitHub.
    • Merging Merging is bringing work from a branch back into the main line. A merge commit is a new commit that represents two diverging histories as one. It is the only commit with two parents.
    • Remotes A remote is another repo. Git is a distributed Version Control, so each repo is its own repo, and you sync between them.

    Git Branching: Management and Merging Strategies

    Branching in Git allows you to keep track of different changes separately. A branch is essentially a pointer to a commit. Because branches are simply pointers to commits, they are lightweight and cheap.

    To see which branch you are currently on, use git branch. It is recommended to use main as your default branch if you work primarily with GitHub.

    Key aspects of branch management:

    • Creating a Branch You can create a new branch using get branch New Branch name. However, it is more common to create and switch to a branch at the same time using git checkout -b <new_branch_name> or the newer command git switch -c <new_branch_name>. When you create a branch, it takes your current location and that’s where it points to.
    • Switching Branches To switch to an existing branch, you can use git switch <branch_name>. Older versions of Git used the command git checkout <branch_name>.
    • Deleting a Branch After a branch has been merged into main, it can be deleted. To delete a branch, use the command git branch -d <branch_name>.
    • Visualizing Branches Branches can be visualized as a series of commits. For example, a branch called main with three commits (A, B, and C) would be represented as A -> B -> C, where C is the most recent commit. If a new branch called other_branch splits off from A, it might have commits D and E, resulting in diverging branches.
    • Merging Branches Merging is integrating changes from one branch into another. A typical workflow involves branching off the main branch, making changes on the new branch, and then merging those changes back into the main line. This often involves a pull request on platforms like GitHub, GitLab, or Stash.
    • Merge Commits When merging branches with diverging histories, Git creates a merge commit. This commit represents the combination of the two histories and has two parent commits. The process involves finding the merge base (the nearest common ancestor of both branches), playing the main branch’s commits into a new commit, and then playing the other branch’s commits into that same commit.
    • Fast-forward Merge A fast-forward merge occurs when the branch you are merging onto has all the commits that the other branch has. Git simply moves the pointer of the base branch to the tip of the feature branch.
    • Rebasing Rebasing and merging can both be used to integrate changes from one branch into another. Rebasing rewrites Git history, which can be dangerous if not done carefully.
    • Git Reflog Git reflog keeps track of where everything has been. It can be used to recover commits on deleted branches.

    Git Merge Conflicts: Resolution and Management

    Here’s a discussion of merge conflicts, based on the sources:

    A merge conflict arises when two commits modify the same line in a file, and Git cannot automatically decide which changes to keep. This typically happens during a merge or rebase operation. Git identifies conflicted files and prompts you to resolve the conflict manually by editing the files.

    Key aspects of merge conflicts:

    • Causes A merge conflict typically occurs when changes are made to the same lines of code on different branches, and these changes are not direct descendants of each other. If the same line is modified in one commit and then again in a later commit, Git can usually resolve this automatically because it knows the order of changes. However, when two developers on separate branches modify the same line, a conflict arises when merging those branches.
    • Resolving Conflicts Resolving merge conflicts is a manual process. Git marks the conflicted files and asks you to resolve the conflict by editing the files in your editor.
    • Conflict Markers When a conflict occurs, Git adds conflict markers to the file to show the conflicting changes. These markers include <<<<<<< HEAD, =========, and >>>>>>> branch_name. The section between <<<<<<< HEAD and ========= represents the changes in your current branch (HEAD), while the section between ========= and >>>>>>> branch_name represents the changes in the branch being merged.
    • “Ours” and “Theirs” In a merge conflict, “ours” refers to the branch you are currently on and merging into, while “theirs” refers to the branch being merged. When rebasing, it can be the opposite.
    • During a rebase, the target branch becomes the branch you’re on, and then Git replays the source branch’s commits starting from the merge base forward to the tip of your target branch.
    • Therefore, during a rebase conflict, “ours” is “theirs” and “theirs” is “ours”.
    • Accepting Changes To resolve a conflict, you must edit the file, remove the conflict markers, and decide which changes to keep. You can choose to accept both changes, keep only your changes, keep only the incoming changes, or modify the code to incorporate both.
    • Built-in Merge Resolution Tools Git provides built-in tools to help resolve conflicts. The git checkout command can check out individual changes during a merge conflict using the –theirs and –ours flags.
    • Post-Resolution Steps After resolving the conflicts, you must stage the changes using git add and commit them to continue the merge process.
    • Re-recording Resolution Git has a “re-recording resolution” feature (re-re) that allows it to remember how you resolved a conflict. If enabled, Git can automatically resolve the same conflict the next time it occurs. To enable this feature, you can run git config –global rerere.enabled true.
    • Accidental Commits During Rebase If you accidentally commit during a rebase, you can use git reset –soft HEAD~1 to undo the commit and continue the rebase. This command moves the branch back one commit while keeping the changes in your working tree.

    Git Rebasing: Strategies, Use Cases, and Best Practices

    Here is a discussion of rebase strategy, drawing on the sources:

    Rebasing is a Git operation that helps integrate changes from one branch into another by moving or reapplying commits. It is an alternative to merging, and is often used to maintain a cleaner, more linear project history. However, it can rewrite Git history, which can be dangerous if not done carefully.

    Here are key considerations for a rebase strategy:

    • Primary Use Case The primary use case for rebase is to take the diverging commits from one branch and move them to the tip of the base branch that the feature branch is based on. This allows for a fast-forward merge back into the main branch.
    • How Rebasing Works When you perform a rebase (e.g., git rebase main on a feature branch), Git checks out the target branch (e.g., main). It then takes the changes from the source branch (feature branch) and applies its commits to the tip of the target branch. Finally, it updates the source branch to point to the new tip.
    • Linear History Rebasing allows you to maintain a merge commit-free history. A linear history is generally easier to read, understand, and work with.
    • Commit Shas During a rebase, even if the commit message is the same, you will get new commit Shas. This is because the parent of the commit is no longer the same.
    • Conflicts If there was a conflict while rebasing, there would be a conflict while merging.
    • Rebase vs Merge Both rebase and merge can be used to integrate changes from one branch into another. Merge can add an additional commit, while rebase does not.
    • When to Rebase It is generally okay to rebase your private branch on top of a public branch. If you’re working on your own branch and want to undo something you’ve already committed, git reset is preferable.
    • When NOT to Rebase You should never rebase a public branch like main. Doing so can cause significant issues for other collaborators. It’s generally good practice to rebase a public branch onto your own personal branch.
    • Rebase and Fast-Forward Merges Rebasing allows you to move a feature branch forward from diverging at a point up to diverging off of the current tip of the main branch, allowing for a fast-forward merge if you wish to get it back into main.
    • Interactive Rebasing Git rebase interactive is very nice and is used for squashing.
    • Rebase –continue If you make a mistake and commit changes (rather than calling git rebase –continue), you can use git reset –soft head~1 to undo that commit and then rebase –continue.
    • The “Ours” and “Theirs” During Rebase During a rebase, it is important to remember that “ours” is “theirs” and “theirs” is “ours” during a rebase conflict. The target Branch becomes your branch that you’re on, and then you replay the source branches commits starting from the merge base and forward at the tip of your target Branch.
    • If you had merged main instead of rebase, HEAD would still point to your branch.
    • Git Rerere Git has a “re-recording resolution” feature (re-re) that allows it to remember how you resolved a conflict. If enabled, Git can automatically resolve the same conflict the next time it occurs. To enable this feature, you can run git config –global rerere.enabled true.
    • Squashing
    • Squashing is used to combine a series of commits into a single commit. This is often done to clean up the Git history.
    • To squash the last n commits, start an interactive rebase with get rebase -i HEAD~n. In the editor that opens, change the word pick to squash (or s) for the commits you want to squash into the previous commit.
    • After squashing, you can edit the commit message.

    Undoing Changes with Git: Reset, Revert, and Amend

    Here’s a discussion of undoing changes in Git, drawing on the sources:

    Git provides several ways to undo changes, ranging from simple operations on your local branch to more complex maneuvers for shared branches. The right approach depends on the situation, such as whether the changes are only in your local repository or have been shared with others.

    Methods for Undoing Changes

    • git reset: This command is a powerful tool for undoing commits or changes in the index. It has three main options:
    • –soft: This option is useful if you want to go back to a previous commit but keep all your changes. The committed changes will be uncommitted and staged, while uncommitted changes will remain as they were. It takes the commits changes and applies them to your work tree, and moves your branch back once.
    • –hard: This option not only undoes the changes and moves your branch back, but it also clears out your index and working tree. Any uncommitted changes will be lost. This option should be used with caution, as it can lead to data loss.
    • git reset commit_hash: To reset back to a specific commit, you can use git reset –hard commit_hash. This will reset your working directory and index to the state of that commit, and all changes made after that commit will be lost.
    • git revert: This command is used to undo changes on a shared branch. Instead of removing the commit, it creates a new commit that does the exact opposite of the commit being reverted. This keeps the full history of the changes and undoing.
    • To revert a commit, you need to know the commit hash. You can find this using git log. Then, use the command git revert <commit_hash>.
    • git checkout: The git checkout command can check out individual changes during a merge conflict with the –theirs and –ours flags.
    • git commit –amend: Can be used to change the last commit’s message, but it does change your SHA.

    Scenarios and Best Practices

    • Local vs. Shared Branches:
    • If you’re working on your own branch and just want to undo something you’ve already committed, git reset is generally the way to go. This is useful for cleaning up commits before opening a pull request.
    • If you need to undo a change that’s already on a shared branch, especially if it’s an older change, git revert is the safer option. It avoids rewriting history and stepping on your coworkers’ toes.
    • Rebasing: If you make a mistake and commit changes (rather than calling git rebase –continue), you can use git reset –soft HEAD~1 to undo that commit and then rebase –continue.
    • Untracked Files: git reset –hard will not affect untracked files because they have not been added to the working tree yet.
    • Accidental Commits During Rebase: If you accidentally commit during a rebase, you can use git reset –soft HEAD~1 to undo the commit and continue the rebase.
    • Reset after a mistake: A soft reset is an amazing thing to use and it becomes exceptionally good when you screw up a revert, cherry pick, or a rebase.

    Dangers and Precautions

    • Rewriting Public History: Never rebase a public branch like main because it destroys your life.
    • Losing Changes: Be very careful when using git reset –hard, as it can lead to irreversible data loss.
    • Force Pushing: Never force push to master.
    • Accidental Deletion: If you were to simply delete a committed file, it would be trivially easy to recover because it is tracked in git. However, if you use git reset –hard to undo committing that file, it would be deleted for good.
    Learn Git – The Full Course

    The Original Text

    93% of developers use git which actually feels to me a little bit low because 100% of the developers that I’ve worked with use git it’s got a tighter grip on the Version Control industry than Google does on your personal data in this video the prime engine is going to walk you through not one but both of his git courses I’ll try to keep this intro short because Prime does a better job of talking in front of the camera than I do but I just wanted to let you know what you’re getting into now in each course there are 11 chapters which means 22 chapters in total you’ll learn how to set up git what repositories are get internals get configs branches how to merge how to rebase get reset what remotes are how to use GitHub with Git and ignoring files with G ignore in the second half of the course you’ll learn how to Fork AO how to use ref log merge conflicts rebase conflicts squashing stashing reverting cherry-picking get bisect get work trees and tags it’s a lot the first half of this course primes course number one is really all about learning how to use git as a solo developer and course number two covers all the stuff you need to know to use git effectively in a team Prime has spent over eight months writing these courses and the rest of the boot de team and I have spent that same amount of time really helping to edit test and refine them so I hope you enjoy them but this is a very Interactive Ive course I do not recommend sitting down and binging it in one sitting there are interactive lessons and projects the entire way so get your hands on the keyboard and actually follow along in fact I actually recommend that you take the course on boot Dev and go ahead of prime and then watch him go through that same lesson so you can see his approach his commentary and his Solutions after you’ve had a chance to experiment and and challenge yourself and do it yourself now all of the content in this YouTube video and all of the content on bootd are completely free there’s no need to sign up for a boot Dev membership to get value out of this course that said all of the interactive features on buev are paid features so if you want to be able to submit your own assignments if you want to view Solutions chat with the AI chatbot or get a certificate of completion at the end uh you will need a paid membership for that and you can actually use primagen code Prime YT that will not only help us at boot dev be able to produce more courses like this but that also supports the prime engine directly that code Prime YT will get you 25% off your first month or year if you choose an annual plan of a boot dodev membership one last note if you get stuck and need help our Discord Community is literally just a few clicks away so join the Discord Community ask for help and let’s talk about get all right we are now going to officially start the entire boot dodev learn get I’m going to go through my I’m going to go through the course that I created I want to do it and it’s going to be awesome here we go we’re going to go through the course we’re not going to watch the videos because guess what this is my course in 2005 after license disputes with bitkeeper lonus Tal’s creator of Linux you may have heard of it sort of runs the web not a big deal decides to write his own Version Control he wrote git in 5 days and within a couple years it became a widely used Version Control and now today it is the de facto standard for all developers to be clear when I say get I don’t mean an insult from across the pond and I don’t mean GitHub gitlab stash or any of the others all of those companies use git they are not git git allows you to track code changes over time by author with a set of commands to search manipulate and revert history in simple term git creates a commit a commit is just a set of changes tied to an author time of day and other information as many commits as you want can be added to the graph at any commit you can Branch off and create new commits on the new line any of these branches can be merged into any other Branch including the main line commits can be squashed into one commit and commit messages can be edited also git commits can be reverted just in case they don’t want terrible code git is very complicated piece of software but the interface and operations are very simple and in this course we’re going to be going over installing and configuring get porcelain in plumbing commands inspecting G history branching merging and rebasing undoing changes and remote repos and GitHub I hope you enjoy this course and in about another month or two I will be releasing part two which will go over all the advanced features Advanced Techniques with merges and rebases and conflicts and of course just really diving into some of the more complex parts of git but in this course you should be able to get everything you need to become quite proficient in the real world incl including understanding how git works the name is the gagen I already have everything done I might need to update boot dodev hold on one second all right there we go I’m going to get the latest version here we go go install I thought they I thought that was a thing H anyways okay there we go we got the new boot dodev everything’s looking good let’s do a little boot Dev version oh yeah looking hot looking good perfect I believe I should all be logged in so I’m just going to go like this just to make sure that I’m logged in there we go echoing rebasing his base there we go everything good I believe I’m I believe I’m all good perfect okay submit so this is the cool part by the way so this tool was developed I think the motivation started with my course and other courses I think Lane was developing one that also needed it as well but this tool is super cool so you copy this thing you paste it in and when you go right here look at that it says hey you did everything correct okay fantastic all right we’ve already installed git I already have everything installed I don’t need to worry about any of that all right we’ll do that thing as well okay perfect the CLI is so cool it is all right read the friendly manual one of the best parts of G is that all the documentation is fantastic but that wasn’t always the case by the way it was actually the the git documentation to this day I actually can’t read the uh man G tag page still okay so everybody knows what a tag is right we all know what a tag is a let’s see add a tag reference in ref tags unless DV dlv is given to delete list or verify tags um okay okay I think we understand this right unless f is given the named tag must not yet exist and then this is happened to create a take object or requires take message unless M or f file is given and editor is started for the user okay what the hell is a tag though can you just tell me what it is otherwise a tag reference points directly to a given object I know it’s just like is this just a wild I’m surprised the very first description isn’t being like a tag is a mut a immutable named pointer I’m just like what the fu is this all right who created get obviously I did a by the way lonus tvols did create git in 5 days and The Story Goes Like This he created git in five days because one of the one of the maintainers of Linux broke the bitkeeper license to Linux bitkeeper said you can use bitkeeper you’re just not allowed to reverse engineer the protocol and somebody reverse engineered the protocol and get and bitkeeper said get the hell out of here get out and so they actually had no more uh subversion at that point or whatever bitkeeper was so he wrote to in 5 days now remember git was not friendly at all you had to use all the plumbing right you had to use like you had to like cat out the file you had to create the tree like you had to do all the tracking yourself and it was not fun right it was not good it was not good but anyways lonus did it all in just a moment and he did it in five days then on the sixth day he rested porcelain and plumbing for whatever reason get is compared to the crapper uh rip John crap and so porcelains the outside the good stuff uh the plumbing is like the hard things the like the underlying tools you can use with Git all right so in get commands are divided into highle commands and lowl commands the porcelain commands are the ones that you will use most often as a developer to interact with your code some porcelain commands are these on don’t worry about what they do yet we’ll cover them in detail soon absolutely by the way some examples of Plumbing are this one get apply give get commit Tre get hash object in which I barely know any of what those things do we’ll focus on the highle commands because that’s what you use 99% of the time in fact I’ve never professionally use the lower level commands right BCT is I I I believe is a porcelain command um reflog porcelain command cherry pick porcelain command it’s a bit confusing right all right 99% of the time porland commands are used to interact with Git yeah but you can and I have done it but it’s really good to understand how they work if you understand how the the plumbing works the porcelain makes a lot of sense all right quick and fig we need the configure get uh with your information uh whenever you code yeah blah BL blah blah blah so we got to do this thing we got to add our name in our config so if you’ve never done config and get get just has this whole Global it’s literally just a file that’s all it is is just a file and it’s either in global space which means it’s in your uh home directory or it’s within yourg fer so kind of either or there anyways this is pretty good so we can uh we can do this config set username email so I’m going to make sure let’s see uh get config uh local what do I got here oh whoopsies uh is it List local I always forget how to use this one air keys does not contain get config what what what is it it’s it’s list oh yeah I forget list is the only one config is the only one that has this older way of doing a bunch of Dash dashes whereas like when you use something like get stash you go like get stash list whereas with config you go this kind of list and always it always I always have to remember what the hell I’m doing right there okay local so as you can see I have all these things these are all the good stuff this is uh from graphite so don’t don’t mind that here we’re going to probably want to do stuff little get config uh list GP name do I have a name in there I do I have the name uh there we go I have email perfect bada bing bada boom we got those things already set so I have all that and you add it to your Global so your you’re Global by the way if you just go like this you can go uh whoopsies get config right it’s right there it just takes the latest value all right and so we also have this one finally let’s set the default Branch we’ll talk more about this so we’re all on the same page we’re going to set the default Branch to master to begin with so the funny part is is that um hey hey now let’s see hey now Global and then you have to go uh what is it is it add look at that there we go add there we go so it takes the latest one probably need to do an ad might want to make a little note there never caught that problem only level two week I had to reset my entire account all right make sure it works so there’s a reason why we do this so we can show you to do it differently later right but it’s Master by default true but a lot of people already have it say updated to main or to trunk or something else so I just wanted to make sure that we had this such that everybody can change it um and see what it is so there you go all right so we can C the config awesome you saw that we CED the config everything looks good all right we’re going to kind of rush through these early ones because I don’t think they’re very they’re not that important and when you’re learning how to use git these ones don’t make a lot of sense like what the heck is this config thing why are we setting all these things we just got to do it to set up your repo so you understand how git works right so this is all confusing stuff you’re probably very confused if you’re new to get that’s fine it’s [Music] okay all right so all right the very first step uh of any project is to create a repository a get repository or repo represents a single project you typically have one repository for each project you work on it would be wild to see many repositories for a single project unless if you’re considering uh Forks SL yeah webflix you like that a repo is essentially just a directory that contains a project other directory or files the only difference is that it also contains a hidden git directory this was a big eye opener for me is realizing that the that the dogit is literally the entire state of your G project it’s like the entire thing and so if you’re ever having questions about what’s going on everything is actually stored in here so when you think oh how does it know every like how does it know all my branches it’s literally in the git directory everything about it is in the git directory uh webflix this uh this course we’ll be managing content for webflix an imaginary self-hosted video streaming application can you imagine why would why would we name it webflix that makes no sense let’s see navigate to somewhere in your file system where you’d like to store the project and once you’re there create a new directory called webflix all right uh rmrf I bet you webflix already exists in my oh my gosh get the hell out of there oh get the hell out of there okay makeer webflix there we go and webflix there we go now I’m in here it’s brand new right it’s empty nothing in here and so I’m I’m assuming we’re going to have to get init get init just creates the new empty directory right it doesn’t do anything other than it creates a brand new directory it uses our config let’s go so I should be able to go ls- la you can see a git folder right here if I find inside the git folder it’s pretty empty it just has all this stuff it has a bunch of sample preh hooks it has no objects which is where it stores everything it has uh nothing I believe even the head is a little bit goofy if I’m not mistaken there you go that was weird cat get head there you go weird huh getting it yeah all right so anyways we do all this one awesome so now that we have our uh repo initialized let’s actually get into the stuff is this VOD G stay online it’s actually going to be moved to the uh boot dodev YouTube there we go we got all this this looks good let’s go return to our browser done got him man I’m so good at this I’m getting so much stats look at this I’m already level two a file can be one of the several States let’s see a file can be in one of several States in a get repository here’s a few important ones untracked staged committed okay this is very important this is also very important to understand because I’ve lost so much work not understanding the difference between all of these all right the get status command shows you the current state of your repo all right so assignment every good content management system needs a table of contents create a file in your rout called contents. MD and add the following lines let’s do this all right Vim contents. MD d uh paste this thing in Bam Bam get status you’ll see right here untracked files that means git doesn’t know anything about this this file an untracked file means that it’s never been added to the index which is like your staging area or it’s never been tracked so it just says we don’t know what’s in it so if you delete this file you lose every last bit of content because I’m pretty sure there’s been a lot of people that have goofed that up yeah I’ve done it it hurts it’s emotionally a bruising experience to accidentally have a file that was untracked you think it’s tracked you do something and you delete it and Fs you removed untracked files yeah removing untracked files is is emotionally painful because you can’t really recover it it’s a right of passage it’s a right of passage to emotionally bruise yourself all right there we go so now I should be able to jump in here I should be able to run the little tool there we go everything’s good all right so staging staging you’ll notice the term index a lot so if we go into here and we go mangit uh what’s it called add you’ll probably notice the word index quite a bit in here and the index is literally just the changes that you have staged onto your system that means any untracked files become tracked files and only the entire changes are tracked at that point there we go uh add this one let’s see for example I use Arch by the way right without staging every file in the repository would be included in every commit but that’s often not what we want all right so you want to get add the file so I’m going to add the contents and then do this now me personally whenever I do stuff I usually hit a get status if the tree represents what I want it to be meaning that the changes are what I want and we have just this one untracked file I often will just use get add this now here’s the deal about get ad okay that’s a little goofy all right uh get status uh when you do this here I’m going to go like this I’m going to go touch Fu if I go like this get status you’ll notice that Foo is untracked as well if I make her uh Fufu and CD into Fufu and then get add this you’ll notice that Fu remains untracked that’s because get add dot adds everything at that directory and Beyond it doesn’t add it doesn’t add things in the directory P you have to use different ones like get add capital A that kind of stuff but we’re not talking about that okay we’re not talking about that uh there you go get get the hell out of here there we go status we got that fantastic um so I should be able to just run this we’ve now added it our contents have been added we’re looking good we’re looking good oh man I’m getting so much experience points I I’m I’m almost level three after staging a file we can commit it a commit is a snapshot of the repository at any given time so this is very very important and this is a thing that a lot of people don’t understand about git git is not storing diffs git stores the entire history per commit so your entire git everything is in a single commit and that’s very very important distinction to make because a lot of people don’t realize that okay so our assignment is commit the contents to file this with the message add contents this you would normally start a commit message with a obviously this is because we’re doing stuff with boot dodev so it wants to be able to keep track of all your commits and all that so there we go then run get status skin you should see that the file is no longer staged right all right so let’s go back here uh let’s zoom in uh get commit let’s see uh get commit there we go we did that and so if we go get status you can see we have a clean working tree get log one line You’ll see that we have one thing right there let’s see wait it so it doesn’t store per change commit no and density I’ll show you why in just a moment so this course is meant to really show you what is going on here all right so now that we have that I should be able to just take this boot. Dev paste that in there go right here awesome I did it I’m I’m smat I’m smat I’m real smat uh half of git you’ve learned half of G you’ve literally learned half of git we just get commit status add commit right that’s all you need to know status add commit that’s like most of I know that’s crazy to think of but that’s it half of G easy you’re like you’re like a senior engineer at this point it’s not near half though I know of course it’s not actually near half because when you go like this get uh uh when you go like this man get Dash you’ll notice that there’s 151 possibilities but of those possibilities three of them is what you pretty much use constantly which commands adds a file to the staging area Prime is it Prime no add right it’s in the name dummies it’s in the name name dummies all right get log get uh okay log is fantastic by the way log is one of those sleepers that people don’t know how to use but there’s so many good stuff to a log get repo is a potentially very long list of commits where each commit represents a full state of the history a git log command shows a history uh in a repository this is what makes get a Version Control System you can see who made the commit when the commit was made and what was what was changed so there’s a lot of cool things so here so this right here so they we’ll see what uh he made us do this goes get no pager I believe this just simply will output the git log so normally when you do git log it actually outputs this like second screen that’s kind of like less if you’ve ever use the Tool uh less that’s all it’s doing instead no pager just prints it directly out it just prints it to standard out and log is the command N1 means the last 10 commits but what you really want to do is you want uh you can do things like one line that will make it nice and smooth so you can just see this nice beautiful thing you can do uh parents which will do annotation we don’t have any parents yet we don’t got no parents we are the Batman of commits uh and you there’s a bunch of stuff graph is really cool if you’re working on something cuz graph is you’ll notice that there’s like a little Aster right here it will actually graph how your commits are being merged back in and how the uh different branches are going so we’re orphans right now we’re effectively orphans right now or you can think of us like Adam maybe we’re the first huh it’s not that bad right right all right do the one of those there we go bada bing bada boom all right so let’s get into some real stuff different hashes my latest commit uh or so in this example the commit hash was this our commit hash was what 78 blah blah and that’s because whenever you do anything with Git the hashes can’t you can technically do a hash collision by being able to generate the same git changes from the same author at the same time and whatever other information that it uses with the same parent and all that you could actually create the the hash is consistent it’s recreated every single time so it’s an important Point all right there we go if you’re not careful you’ll have two commits with the same hash false you’d have to be very careful to create that and I don’t believe that’s even a uh it’s not even like a yeah g is the original blockchain for those that are wondering all right you may have noticed that even though we you and I both have the same content in our repositories we have different hashes yes we already went through all this yes they do a sha one it’s beautiful which does let’s see which does not affect the uh the hash of a commit the commit time stamp message author’s preferred text editor even though it should I do think all Vim hashes should start with 777 a little bit of luckiness to it to me that’s the only appropriate thing to do all right the plumbing so far we’ve used git in a porcelain manner but the let’s see but to Sate our insatiable curiosity Sate is a weird word okay Lane may have done a little bit of writing for me in this one just so you know uh let’s take a look at the plumbing all right it’s just files all the way down all the data in the git repository is stored directly in the hidden file you can actually see that look at this if I go like this if I go find inside the git folder you’ll notice something right away look at this look at that thing that thing looks just like this thing right here right 7805 172 7805 172 look at that huh kind of crazy right that’s my commit okay sneaky git very Shakespearean I know he’s very Shakespearean he uses phrases like upstairs and downstairs and it’s crazy all right git is made up of objects that are stored in the git objects directory uh a commit is just a type of an object correct use log 10 to view your commit hash do this inside the object directory and we already did that we already saw it which uh let’s see which matches the format of the file you’ll notice here too so this is something that you probably don’t know about Linux uh this right here this is called an inode busting effectively what IOD busting is is that a directory can actually end up having too many files in it if you ever done it weird stuff starts happening happen happening so instead get to prevent iode busting or to prevent iode whatever it is you’ll do this so this takes the first two letters and then does this right i’ I’ve ran out of iodes before yes I i’ I’ve goofed up myself so a directory can only be such a large size so therefore this just helps separate out things this is very common you’ll see this in CDN cdns do the exact same thing the actual naming underneath will start doing weird stuff like this screw you unlinks your list yeah it is it I’ve done it once I dude I note issues are insane by the way they’re crazy yep I ran into this with a massive log directories exactly you have to do I note busting or else you just life is painful and I did it once and then once you do it once you never do it you just never do it again all right that’s it that’s all there is to it all right so that’s why they do this they take the first two and they turn it into a directory so that way it just kind of spread things out all right so let’s take a uh let’s take a look at what’s inside this suspicious get commit object file have you ever tried catting one of those things the first thing I ever did when I found out get was just a folder is went right to objects went right to my commit and tried to cat it out and it’s just this right that’s a bunch of right there okay what the hell does this even mean all right so you can’t really do anything no it’s a mess uh let’s see the contents have been compressed to Raw bites so that’s why git remains small is because git compresses things and that’s very very important all right now the lesson let’s see okay hold on this lessons run and submit are a bit different because you need to tell boot. Dev CLI where your commit object is located all right so we’re going to do the exact same thing so I have to do this but I have to give it this name right path to file right so I’m going to grab this thing and I’m going to go like this uh let’s go get objects 7805 05 this thing and then submit I believe I did that correctly this one I screwed up last time I tried to do this let’s see failed to get this thing page not found wait who’s he what’s he all right let me reread this one sorry sometimes sometimes I’m not good at reading lessons Okay I just want you to know that rtfm read the friendly manual sometimes I don’t read the friendly lesson okay let’s look at this again try to C the contents of the file we already did that nope it’s a mess the contents has been compressed um we can we can print in a decimal I don’t really care this lessons run and submit are a bit different because you need to tell boot. CLI where your commit object is located uh run and submit the test but provide the path to your commit object file as a second argument run lesson lesson ID okay so let’s try this again because I’m apparently I’m too stupid so I need to go boot. run lesson ID path to file okay get objects 78 052 there we go look at that I’m getting so much exp I’m level four you guys wouldn’t understand practically a grand wizard Arc Mage I don’t think you’re supposed to be a grand wizard right that’s not uh you don’t want to be that you don’t want to be that guy okay I forget sometimes I forget things okay uh luckily git has a built-in Plumbing command cat file that allows us to see the contents of a commit without needing to fuss around with the object files directly so you just use get cat file- P cuz technically like if you’re viewing a tree you have to use a tree command you know there’s all these different things but cat file just allows us to look at everything at once without having to worry about its type and all that uh so you can just go get CAT file this so if I do this get cat file this guy and do 78517 I believe you only need up I think you only need technically you only need four to specify it you’ll notice something when I cat out my commit you’ll see the author and all this and then you’ll see the message that’s so it’s nice then you see this tree command look at this tree this hash we don’t know what this hash is right so I can actually go get uh get cat file- P 5B 21d and then you’ll notice that it has a blob object and that blob object is a Content so to kind of put this in perspective you can think of a tree as a directory and you can think of a blob as a file so that’s kind of important to know so when I cat file this thing you’ll notice that it’s contents which is the exact contents of our contents file they’re identical so do you see what happened there why did I capitalize B for those that don’t know why I capitalize B uh when I type I have dvorac but even more so when I type numbers 1 2 3 4 5 6 7 8 9 10 you’ll notice that I typed out symbols symmetric symbols it’s because I’ve optimized my keyboard to prevent wrist pain from happening because I program a lot so I have to hit shift to type my numbers right so sometimes I’ll do a capital B when trying to type stuff because I’m still holding shift does that make sense okay there’s no there’s no reason or Rhyme or anything to do with it it automatically lowercased it for me it didn’t mean anything all right so there you go you can see that so this is actually really cool what just happened here look at this I was able to cat my commit out take the root directory tree cat that out see the file that was there then cat that file out and see the contents of that file this is very important because we’ll use it later to grab stuff out it’s kind of fun it’s kind of it’s kind of neat so there we go so we can do that all right so use cat to do all this one pass an argument to the CLI notice that boot. Dev CLI test for this lesson take an additional argument to noted by this one right there we go you need to provide the hash okay so I need to provide the hash there we go all right we’ll do that we’re going to grab that bad boy and I’m going to go like um I’m going to go like that and then I need to grab the is it which hash are we doing that you need to provide the hash of your last commit okay we need to provide the hash of the last commit there we go so I’m going to go back up here I think that’s all I need to technically do d s and then take out this little slash I think that should do everything I need to do there we go got it first try got it so good at this why would you ever need to do that in get you’ll see you don’t technically need to do this in get but it’s really good to understand why this is where the big eye opening moments about to happen for everybody about how git actually works because what we’ve seen so far is that we’ve made one commit right we’ve made one commit and we’re going to call it a and in that commit we have a tree that’s like our root directory and inside that tree we have a blob which happens to be some big long hash and it is contents. MD all right this is very important so this is our Commit This is commit a so now we’re going to add this and we’re going to see how this changes all right all right I believe I did all this all right trees and blobs now that we understand some of our plumbing equipment let’s get into the pipes here’s the terms you need to know tree is a way of storing a directory blob is a way of sorting storing a file so you can see right here I already showed you this there’s the tree we are able to go through through the tree and get all the way to the blob right assignment use get cat file again but this time use it on tree you should see a blob with its own hash use cat file again on this one submit the sees with The Blob hash okay we should already be able to do all this uh because we actually already did this all right let’s find this little bad boy right here where are you where are you where the hell are you there it is hey there we go by bing bada boom able to grab all that stuff out I just grabbed out the file hash cuz I knew what it was or the blob hash all right second uh second command uh reminder of commands get log um and Cat file that’s what we’ve been doing log is a porcelain command where cat file is a plumbing command you’ll use log more often when working with the code uh on coding projects but cat file is useful for understanding gets internals we already kind of talked about that so we’re going to create a second file called titles this is where things get really interesting are you ready for this uh all right so we’re going to go like this titles. MD paste this all in here delete that one uh run through and then we need to save stage and commit the file with the files long as it starts with a B right that’s the thing get uh add this get commit with a B There we go awesome and then run the CLI there we go I’m going to grab the CLI and we’re going to do this bada bing bada boom all right so we’ve created a second commit right this is how you will understand get get stores an entire snapshot of files on a per commit level this was a surprise to me I always assumed each commit Only Stores the changes made in that commit now type one in the chat if that’s what you thought too I assume a lot of you thought the exact same thing that get stored Deltas right yeah I mean look at this a lot a lot of changes in here and I think that’s completely normal anyone that doesn’t think that get stored Deltas right away you’re lying to yourself you’re like yeah I didn’t think that I always knew that it didn’t do that no you didn’t okay your your small brain did not think that we all thought that because that’s totally normal thing to think okay well it’s true that g stores entire snapshots it does have some performance optimization so that your git directory doesn’t be get too unbearably large get compresses and packs files to store them more efficiently get D duplicates files that are the same across commits now you’re probably thinking isn’t that just Delta stores hold on let’s find out let’s just find out okay watch this we’re going to use git cat file and we’re going to find the hash blob of our titles MD okay watch this all right so I’m going to go like this uh I’m going to go uh let’s see I’m going to go get log log one line I’m going to grab this last that’s my last hash right there we go I’m going to go get uh get cat F I know there’s better ways to find your your current hash just shut up this is good enough this is good for people to understand now notice that we have our tree also notice we have our parent now so our parent is our previous commit so we can actually walk back up the tree if we needed to this is if you’re wondering how git log works is that it stores parent pointers as part of the commit all right anyways so we’re going to take our tree and go get CAT file – P this now notice that there’s two blobs okay there’s two blobs here the first blob is the previous contents and this one is now titles okay so I can actually take this and go get CAT uh file- p and I can actually cat out the titles file uh I can actually go to this one and get cat uh G cat uh cat file- p and I can cut out this one and this will give you the contents of that file but notice this right here I want you to look at this would you look at it for a second I’m going to jump into my parent get cat I’m sure I explain this in a moment in the course but I like to explain it this way uh there’s our parent commit I’m going to grab that tree notice that that tree is different than uh is a little bit different like everything’s a little bit different this is the older version of the tree get cat file- P this look at contents look at contents it stores a unique tree per commit but that that doesn’t mean it stores the entire file it just stores a pointer to the file so when I say A commit stores the entire history it stores every reference I know kind of mind blown right that’s why it’s efficient because what happens is you can think of it this way is that let’s say we have Commit a and commit a has the parent tree and then it has the blob that’s pointed to our contents file okay and this is like let’s just say it’s like e f and then a bunch of letters right blah blah blah blah commit B adds that new file and so it’s going to have that same tree but this is going to be a different notice that the hash is different on this tree because this tree has a new set of kids so something has happened to this tree which means that it can even point to trees that have not changed that’s very important so we have a new tree we’re just going to call this one one we’ll call this one two and this one is still pointing to that exact same EF blah blah blah blah but then we have a new one which is going to be our titles which is going to have its uh we’re going to probably need to call this like titles and then it’s going to have its own commit right here and so it doesn’t update this this Remains the Same so it’s very important to understand that all right so let’s see what we have to do here all right we’re going to use cat file we’re going to view the uh the hash of The Blob for our titles and you can do that save that hash somewhere in your notes all right let’s save this hash somewhere in the notes because we have to find it there we go it’s right there I can just come back to that later add a new new directory to your project called quotes inside add two files all right so let’s uh Vim uh what is it you say quotes they say quotes I can’t remember quotes yeah I think so uh what was the first one called uh star wars. MD and then what was the other one uh Dune MD Dune by the way is a great movie Dune Dune can also be fall under the good Sci-Fi um all right so there we go we have those two things stage and commit both files in a single commit with the message C add quotes perfect okay we can do that uh get status you can see it’s right there get add this thing get commit DM put all that in there get log one line should have three commits you can even go like this get log – P which will show the differences so this first one adds this new file uh from nothing to quotes Dune from nothing to quotes Star Wars and then it doesn’t make any other uh edits right and there’s the previous commit which adds titles and the previous commit before that which add contents okay cool awesome we got all those things all right so we did all that one use the command CAD file to view the hash of The Blob for uh titles again you’ll notice that it’s still the same hash correct there you go because the file hasn’t changed run submit this thing Perfect Isn’t that cool Isn’t that cool I think that’s pretty cool I mean I think that’s very very cool for me that was a very mind-blowing moment is to understand how git works because then it no longer felt as confusing and that was my big kind of like I I I I got really really confused for quite some time when I first played around with Git because of that thing all right what does it mean that files uh which were once committed then deleted will be forever kept by git so technically it’s not forever kept by git it’s forever kept by your history unless if you prune your history so you can actually prune your history out of git and so that way it would actually clean up any broken references so it doesn’t actually keep say deleted commits that don’t exist so get prune DF yeah so that will go through so we will actually do that I’ll I believe in this uh in this section we will actually revive a file that was long lost or a commit that was long lost it’s kind of obvious that it’s store snapshot otherwise you need to walk back the tree a lot for files that don’t change often yeah I mean it’s it’s obvious in hindsight but I think the first time you think and you download the first time you ever use a a Version Control you think wow how could it possibly ever store everything it must have to like create the repo by walking all these links that’s why it gets so fast is it doesn’t it keeps your tree and then when you need to change your directory it literally just walks that tree and recreates every single file at each one of those points right that’s but the first time you you wouldn’t understand that right let’s see 100% of the working let’s see 100% of working with Git is checkout Branch ad commit push Force push rebase or merge yes exactly that’s why I say that’s well I mean it’s not 100% it’s like 99 95 there’s log there’s ref log ref log is incredibly important we’re going to go over that there’s also like get checkout so get checkout theirs versus ours it’s very important when you want to be able to just grab an entire change from one side of a merge [Music] conflict let’s take a command apart get config okay so here we go we’re going to actually start talking about config now cu the config is actually useful to use and understand because sometimes you actually want want to be able to change ways in which your G experience changes or in which in which it operates so let’s look at this all right so let’s take a look at the command so get config is obviously the top level it’s still the older style command so instead of get config ad it’s get config D- ad which is kind of a pain in the ass Global is where to store it so it’s either Global or local there’s some other places you can store and get but nobody actually stores things in git right uh or in those ones at least as far as I can tell I don’t know of any use case where you store in system uh I’m sure there is a use case I’ve just never personally ran into it I’ve always just used you know local or Global all right uh so Global stored in uh this right here in your uh home directory get config whereas local is stored inside your git configure right so if I go like this if I go in here and I go uh let’s see uh let’s see what is it LS or find in my git folder what is it name is it config I think it’s config there you go yeah there we go uh cat config it’ll say here’s the things that are inside of your local repository so when it creates a config object it actually takes your globals then it takes your logos and kind of combines them one at a time all right assignment you can actually store uh any old data in your git configuration granted only certain keys are used by git but you can store whatever you want yeah it’s just a key value mapping that’s all it is so you can like uh I know when I was at Netflix we actually had a lot of information stored for how we operated over certain stuff so it just I used to have a bunch of Netflix stuff on my system at one point uh set the following useless key/value pairs in your local git configuration so right here so we’re going to do this for our locals all right so it’s not too hard so you can go like this get config add local so I want to add a key value and I want to do it locally and then what do we want webflix uh CEO okay the prime gen okay uh actually yeah we’ll call the prime gen and then we’ll do uh the CTO as the lanen right that’s the actual CEO of um what’s it called of boot. Dev and then valuation valuation mid it’s a mid it’s a good mid valuation hey who here wouldn’t want a good mid valuation git has a command to view the contents right so if you just go List local it’s going to list everything you can also just cat it out right so as we did earlier you’ll see here’s our top level uh section here’s our keys and values uh so a good thing to notice here is that this is a SE section and this is a key so when you look at this you’ll notice that this is the section this is the key that’s important to know because you can actually delete all configuration by section or by section Keys all right so there you go you can List local so if I just go get config List local it’ll just uh list all my just local only files right here all right so let’s grab this thing jump in here paste it in your company position mid isn’t that everybody’s company position by the way configs were one of the more confusing parts for me not confusing by how they operate because they’re actually exceptionally simple but when I first started using git config was something that I executed once and then I never looked at again and then then whenever I had to touch it I was just like I don’t want to do this right and then I just got all confused by stuff and then I just it felt confusing because I refused to just spend the three minutes it took to understand said it and forget it exactly and then you just don’t know how certain things operate and simply because you didn’t learn this really simple thing this is why I did config because config is one of those extremely useless things you should pretty much never need to know but that one little moment you need to know it it’s very useful it’s very very useful we’ve used list to see all the configuration values but get flag is uh useful for when you’re trying to get a single value right so we can do get uh key remember a key is a section. key name so username webflix CEO there we go so I can we can get the web value so I can go uh get get uh let’s see what is it web webflix webflix valuation and it’ll go and get mid nice right doesn’t get config username just get it uh get config user.name yeah it also gets it you could get must get is the default operation but it’s good to know that because you can also do do set right all right there you go beautiful we did that one uh bada bing bada boom all right this is looking good all right the unset flag is used to remove a configuration value for example get onset key let’s remove the CTO all right so we go like this uh get config unset right everybody you know everybody loves a good unset right I really hate the term unset uh which one are we doing CTO CTO yeah all right I just fired Lane because you know what screw Lane what happened when you tried to unset uh oh try using unset to remove the section I forgot to do that one if you do this what ends up happening key does not contain a section right so you need both a section and a you need both a section and a value or a key name for this thing to be able to be removable when you use unset you have to do unset section if I’m not mistaken I always forget the entire section it failed because you have to use key and value right you have to use both you got to use both duplicates typically a key Value Store like python dictionary you aren’t allowed to have duplicate Keys strangely enough git does not care yes if you look at my git config uh Global uh list Global and then we GP what is it um uh a nit you’ll notice that I have in here three of them okay I had in it default Branch master in it default Branch Main in it default Branch Master yeah it just takes the last one my bad my bad on that one yes you can yes but but if you do that you have to force push right Force pushing is the only way for you to be able to change history for everybody else and if you do that you will ruin the whole repo and everybody will know all right duplicates unset all so unset all is if you want to unset uh entire thing you only need a section then right or sorry unset alls if you want to delete a multi- existing uh key value combo which is kind of odd having an key set combo it’s just kind of weird so if I do this and I go like this and I add a bunch of CEOs I should be able to go in there and go get uh config List local and now you’ll notice we have a whole bunch of CEOs right we have four of them me plus uh Carson Warren and Sarah all right so if I want to undo that I can remove all CEOs by doing unset all right get config unset uh web flick flick flick do CEO there we go CEO has multiple values unset all bada bing bada boom get List local all the CEOs are gone anyways okay so now that we did all this pretty straightforward right pretty straightforward stuff there we go there we go awesome we’re kind of getting through these things uh you know the config SE section it’s it’s it could be boring but whatever it’s fun uh you know it’s you got you just got to learn these things right all right so there you go so we’re going to do the the next thing um which is we to remove an entire section now webflix is a section we have so if we just go remove section we can actually remove all of it so if I go back here and I go um I can add all of this and go get config uh if I go get config List local you’ll see that I have a bunch of webflix stuff so if I go get uh config what is it it’s remove section right it’s not unset section you know how many times I struggle with remove section versus unset and all of that man whenever I’ve had to do anything like that I’ve screwed it all up it’s so easy there you go make sure I really get it out there you know what I’m talking about we want to get it out there and then also you’ll notice that if I go like this cat config uh uh cat get config you’ll notice that it actually removes the section right just fun little fact fun little fact if you’re wondering you know what I mean bless you my goodness yeah thank you yeah you just edit the file directory I personally find that uh I would just rather jump in here and edit this often than doing all that other crap to be real it’s just it’s just much easier CU this other thing is just it’s just really hard you know it’s just really really annoying all right locations uh there’s really only two locations that you should really be concerned about I actually never used a work tree specific location or a system location I’ve really only done Global and local I find location location Lo anyways in my experience 99% of the time you’ll be using Global to set things like your username and email the other 9% of the time you’ll be using local to set Project Specific configuration the last 1% of the time you might need to fuss around with system in work tree configuration but it’s extremely rare yeah I’ve never I’ve never personally had to do it I just know that it’s been done on my system so there you go here’s the set of uh here’s the set of what’s it called ordering so if you have a work tree specific it’s be the most specific therefore that’s going to be the one that gets presented then local then Global then system system is like the it’s kind of like just think about it like uh JavaScript and merging arrays right system is for all users correct global global is not Global it’s not a global list if that makes sense it’s a local Global you know what I mean it’s not a global global it’s a local Global all right suppose you set username to Prime at the system level username Lane at the global level and username TJ at the local level which value will actually get TJ even though TJ does stream but he sucks okay just so you know yeah Global’s the user it really should be it it really should be repo user system for me that seems much easier to understand and TJ catching Strays TJ’s always catching Strays okay shots fed all right let’s see which is stored at the home directory that’d be [Music] Global all right so what is a branch so now we’re going to get on to branching so a get Branch allows you to keep track of different changes separately for example let’s say you have a big web project and you want to experiment with changing the color scheme instead of changing the entire project directly as right now on our Master Branch you can create a new branch called color scheme and work on that branch and when you’re done if you like the changes you can merge color scheme back into the master branch and keep the changes if you don’t like the changes you can simply delete color scheme branch and go back to master so underneath the hood this is what’s actually happening look at this beautiful little little graphic do you like that graphic it’s beautiful huh it’s beautiful does this make sense so here’s a big thing that you need to understand tips just the tips the tips is the commit that is the latest one on whatever Branch you’re looking at okay so you need to know your tips and then eventually they should merge back at some point because that’s how branches work they should be branched off of some uh some they call it the merge base this would be called the merge base we don’t have that as part of this graphic so this is called the merge base or the Le or the uh most common ancestor is one right here and so this is for when you merge it finds this thing right here and then merges things together merge tips use rebates yeah exactly so just so you know these are all commits branches lit like a branch a branch is literally a pointer to a commit that’s it orphaned branches are wild yeah I don’t even know how to create like honestly I don’t even really know how to create an orphan Branch it’s exceptionally difficult to create an orphaned Branch uh it’s just not something you do you know on purpose all right so let’s see because a branch is just a pointer to a commit they are lightweight and cheap this is why when people say branches are really cheap it’s because it’s just a pointer that’s it uh which branch you’re currently running get Branch there we go so I can go like this get branch and you can see I’m currently on Master fantastic remember you should be on Master because we set initial default Branch to master at the start of this course yeah yeah yeah so there we go um fantastic and we’re going to do that and we’re going to execute this thing Bada Bing Bada Boom Confetti feeling good confetti out of my mind all right default Branch we’ve been using GS default Master Branch interesting interestingly GitHub a website where you can remotely store G projects recently changed default Branch to master to main as a general rule I recommend using Maine as your default Branch to work uh if you work primarily with GitHub yeah because if you don’t you have to like go in to every single it’s just a pain in the ass right that’s all it is if you don’t do that you have to actually go into your projects and you have to set it as your whatever other Branch you’re using as the default or else it will use main as the default and then you will get cloned down a repo and then main will be like this empty branch and then you have to undo all of it there you go gitlab has main too and I think newer versions of git has main as default too I’m not sure if G newer versions of git has that as default um like if I go like this uh get let’s see get config remove section um oh don’t do that unset all um let’s see what is it it is a nit uh default a branch there we go and so if I go get config list there we go you’ll notice that I still have this one did I not do this correct am I oh is it lower B oh is it really lower B is it really lower B Branch nah that can’t be right right why why are you still here why por and Maria why are you still here oh it’s cuz I’m not doing gosh I’m so stupid Global globalist there we go I’ve have undid my Global list this is very important to undo your Global list there we go list there you go it’s gone you can see that it’s gone so if I go back here and go like this make dir testy uh testies and CD into testies uh we’ll go in here and we’ll go like this get an it get an IT using Master the name of this initial Branch this is theault Branch name subject to change to configure the initial Branch name do this right here initial Branch name uh names commonly chosen uh instead of master or main trunk Development I’ve seen Dev I like using trunk just to mess with people okay I think it’s funny here get might be old uh get oh it could be old I’m on uh 245 it’s pretty new get uh latest uh version 246 yeah I’m only back I’m only I’m only off by a little bit I used using trunk just to feel something exactly exactly there you go okay so now that we’re here there we go all right so here we go all right how to rename a branch so you go go get Branch uh M for rename right classic M for rename am I right am I right old name new name all right we’re going to set our initial Branch to Main and then we’re going to rename our Branch all right here we go uh let’s just weo back in here and get Branch M Master main get uh config add Global s uh we can actually even do it that by the way you can also do it at a local level so I can go uh nit default default Branch uh what the hell the thing called it’s called main so there we go so I can actually do this at a local level so now only this repo has the default Branch as main whereas all my other ones will still have whatever my Global version is it’s very good to know how to use locals and globals it can be very useful I’ve had to do a lot of things where I have to goof around with different versions all right there we go wasn’t a lowercase B I think the lowercase b was an accident I want to say it was an accident anyways there we go I’m going to copy this one oh my gosh uh okay dang it so it’s gonna my thing requires me to be a globalist I’m now a globalist I am now officially a globalist globalism all right really just Alex jonesing on this thing all right there we go visualizing branches uh throughout the rest of this course we’ll be visualizing branches by the way this is how git does it as well so if you do not know if you go uh man get commit I believe they have it in commit no uh rebase yeah you’ll notice that they effectively do this so I TR I tried to copy a effective version so that way it’s easy to understand easy to see okay sounds good yeah yeah yeah yeah all right let’s see this means a branch called main with three commits a c is the most recent commit as you can see A to B to C Branch there you go so this one right here means a it splits off from a and there’s d and e on something called other branch and B and C on Main so they are diverging branches with the merge base of a all right everyone get that I’m going to be using that term a lot merge base uh answer the questions based on the following diagram which commits are part of Lane’s Branch uh none because he’s a CEO and doesn’t work these days but it’s going to be GH this one bam got it man I’m so good I’m globalist all right there we go all right throughout the rest of this course oh I already answered this one which are part of commits of main uh it’s going to be a b c d got it first try all right VIs izing branches oh we’re doing it again dang we’re going to do primes Branch huh primes branch is EFA or a EF EFA man I didn’t even get close you should already be on the main branch uh your default branch and you can always check with get Branch I wonder if there’s a way to name your default Branch something that would break your system can you do rmrf uh see two ways to create a branch right get Branch New Branch name this creates a branch called New Branch uh the thing is I rarely use this uh command yeah I rarely use this command reason being is that whenever I create a branch I also want to switch to that Branch right right so I typically use get checkout B just because that I mean I’m I I guess I am a boomer it’s hard for me to break that habit but the newer ones is get switch C so I’m trying to show you kids you youngans to use get switch C all right that’s the one you want to do all right I’m just so used to get checkout B I can’t help it so if I use get checkout B sorry I’m old my fossils are creaking you get the idea okay so what this does by the way whenever you create a branch it takes your current location and that’s where it points to all right so when I do this my new branch that will actually create a new loc it’ll create it’ll have the exact same sha or the exact same uh commit yeah it’s your head location so it’s it’s good to know that because a lot of that’s kind of like one of those confusing jumps people have to make oh yeah on itchy there you go all right anyway here we go uh create and switch one called ad classic so let’s just do that right now there we go I’ve created ad Classics uh let’s see and then let’s see run get Branch to verify so I can go get branch and you can see that I’m on ad Classics get that and if I go get log you’ll see that I have ab and c and if I go get log uh main you’ll see a b and c the same thing they’re the same thing I believe if I even go like this uh find uh get what is it uh grep refs something like that right you can actually see this right here so you can see it right here so if I go right here and I go uh cat that you’ll see it’s pointed to this thing and if I cat uh main it’s poed to the same thing there you go makes life easy for you to know these things learning gets sucked yeah learning get well it doesn’t it’s just it’s just time cons it’s a bunch of little things that you just have to learn all right switching branches uh we talked about using get switch to change branches there’s another command you’ll certainly run into and it’s been around for a long time and older developers use it get checkout okay calling us older developers hurts a little bit me in the past me in the past get switch is a newer command that is meant to be more intuitive and user friendly uh it probably is more user friendly because get checkout is kind of like this grab bag because you can also like check out sides of a merge conflict there’s a lot of weird stuff shows the history get okay get developers of a certain generation and that’s me also uh it’s recommended to use get switch over get checkout for simply switching branches that’s what they say let’s okay let’s switch to a branch called Prime all right there we go uh the new way the old way right there you go for this course we’ll stick with get switch right there we go all right switch to Branch main run get branch make sure we’re on there switch back to Classics run this one run this okay I’m not going to do that yo dog uh I’m happy for you or congratulations or I’m sorry there we go we passed I’m not going to switch around but you get the idea it’s just get switched without the- C for create that’s all all right upleveling our abilities will uh use the ad Classics Branch to add a commit to the project without affecting the main branch so we’re going to actually create the D here in other words ad Classics Branch will have all the commits from Main plus a new one all right so we’re going to switch to add Classics we’re going to create a new file called Classics CSV and there we go so I’m going to go uh Vim classics. CSV uh go here I’m going to yank that bad boy paste it in here of course the classics uh you know The Princess Bride I actually watch this every Christmas it’s literally the greatest movie of all time here we go all right so we have this we’re going to stage and commit the file the commit message to start with D all right run commit okay here we go so we’re going to do that one get add this get commit Dash D is great there we go and you should be able to see the commits with the branch with get log we don’t need to do that let’s copy that bad boy paste it in make it happen B bam bam bam got it we’re all in the good stuff so let’s go over here so we’re about ready to start get into some good stuff log flags as you know get log uh shows the history of your uh commits in your repo there are a few Flags you’d like to know short full no I like to I don’t really use decorate decorate typically works well uh if you want to see where things are coming from so you can do get log uh decorate full if you want to see a bunch stuff on Line’s the one I use a lot okay this is the one I always use because if I go get log you get like all this crap but if I go get log on line you get that that just feels nicer right that’s the one I want what the hell is decorate well this is decorated right now and the reason why it’s decorated if I’m not mistaken if I go uh no pager no pager uh no okay there we go all right it’s not doing it effectively decorate it decorates default default version I thought I thought there’s a way what’s the way hold on let me go like this on line uh T out there you go so there you go that that took it off so if you pipe it to another program this is kind like a non-decorated one a decorated one right here shows where you’re pointing at so head which is also pointing to add Classics main is on C that’s what decorate does so get log decorate equals no will not tell you anything about where stuff is at does that make sense and then you can also use git log remember how I talked about graph graph is pretty cool graph uh one line so you can kind of see that I’m just going it’s just all one line right now there’s no there’s no change right now but we’ll get to the point where we start seeing some changes don’t worry we’ll see it we’ll see it uh there we go fantastic I think that’s all I need to do run get log with full decoration we already did all that explain the decorations let’s go we got it we got the confetti we’re confetti out of our mind I’m level seven by the way you guys won’t even understand what it’s like get propaganda hour absolutely uh Kung Fu no get Fu remember git stores all the information in files in the git subdirectory at the roof Ro of your project even information about branches the heads or tips of the branches are stored in get rep’s heads if you c one of the files in that directory it should be able to see the commit that the hashes points to which we already did use find and Cat to find the commit hash of your main branch we already did that one uh what is stored in get ref’s head uh one file each for a commit oh what is in there I forget let’s see it is going to be get ref’s heads is going to be each one of the branch names one file for each branch containing the commit hash of that Branch points that one let’s go let’s go I’m a genius nope we’re not going to watch this branching and get is practically free and it really is kind of the core operation when using git but at some point you have to get that work from a branch back into the main line and this is where merging comes into play now a typical workflow for pretty much every Dev looks like this first we need to update our repository to the latest code this is typically done through get fetch or get we’ll cover those more later you Branch off the main branch and give it a name that kind of represents what you’re working on new feature a you fix the bug create the feature update the docks and create your one or more commits on that Branch then finally you merge those changes back from your branch into the main line typically when you’re at a company this will involve some sort of poll request on GitHub on stash on gitlab but conceptually it’s no different than executing git merge on the command line oh what’s the point of having multiple branches you might ask they’re most often used to safely make changes without affecting your or your team’s primary Branch however once you’re happy with your changes you’ll want to merge them back into your main branch so that they make their way into the final product all right so here’s the visual look at this beautiful thing and then notice this this right here is called a merge commit it’s very important to understand merge commits because if you don’t you don’t understand why rebase is good so merge commit and especially when you look at a log we’ll look at the log here shortly but it will actually show you why uh or how these things kind of exist and why they’re unique and why it allows for log graph to be very nice uh so hold on let’s see what the assignment is just to make sure I don’t get ahead of myself uh first switch back to main next our contents file is eerily empty yep update uh update it to contain this all right there we go now the yep and then we’ll this okay perfect perfect let’s go all right so what we’re going to do is I’m going to go like this we’re going to get check out main oh wait no wait get get switch add Classics get switch main don’t use checkout we don’t use checkout we’re not using check it out we’re not doing it all right and then update this file right here don’t you do it uh get status it’s nice it’s not it’s not mgit all right there we go so commit uh let’s see commit the changes with a message starting with e all right so let’s commit these changes get add this get commit uh e uh let’s see uh contents such contents with a new line at the end why I don’t know why there we go so now we have this one we have ABC uh abc e abc e and ABCD awesome so we should be able to do the whole get log graph all look at this nice bad boy look at that look at how graph does that it’s nicer in one it’s it’s nicer in one line honestly one line you can see right here so there’s ad Classics it’s been branched off at that point and here’s this guy so it’s a nice way to look at all your stuff there you go why not use checkout it’s just older switch is the one right all right there we go fantastic right so I should be able to just do that everything should be good there we go confetti it out of my mind all right merge commence we are merging two branches together with diverging history look at this thing right here the diverging history simply means that main branch the one we branched off of at Point a has commits and we some branch have added more commits main has B andc our Branch some branch has DNA that means when we merge we need to be able to create a new commit that represents these two diverging histories as one this is called a merge commit and it’s the only commit with two parents the process for a merge commit looks like this first we need to find the merge base the merge base also called the best common ancestor is the nearest ancestor that is in common to both branches and in this case that would be a we then play main Branch’s commits into a new commit and then we play some Branch into that same commit when all the changes are in that new commit we commit it to Main and in this case we call it f and we give it two parents one parent pointing to C from the main branch and the other parent pointing to E from some Branch if you use G log you will actually be able to see the diverging from a the two diverging commits and then the coming back together in F merge commands are the result of just merging two things together yeah so what a merge commit does or how a merge works is that when you merge in something it takes it finds the most common ancestor or the merge base then it merges Main and this one together to make one Super One make one super commit adds that to the front of the branch that you’re on and then has two parents which is where you came from does that make sense so if we were to merge Vim Chads only in main while using this we would find the merge base or the best common ancestor uh in this case a replays those two commits bam creates a special commit called a merge commit and then this thing has two parents there you go fantastic right uh so in our current webflix history we have this we have main abc e and we have ad Classics which is D so when we merge we should have this like we should have an F commit that’s going to be this little merge Branch right here so let’s just do that now get merge ad Classics I assume that’s what we’re supposed to do and we wanted to go f so that way we can denote it there we go we’re going to write that and we just did it perfect right so now if I do this whole on line decorate graph parents business hell yeah that’s a lot of stuff you can see right here classics branched and then came back together and you can see right here that this is a merged base because it has two parents or not a merged base sorry uh why would I say merch base it’s not a it’s a merge commit because it has two parents never worked with two parents children yeah most children in get do not have two parents this one does so there you go this you can actually watch it because this one points to this Commit This one points to that commit they both point to the same merge base there you go now that everybody knows feels good right a lot of arch users out there confused about merge commits all right so logging has to be one of the best tools in the git belt because git has extensive logging and observability if you need to recover work visually understand how you got to this point commits along the way messages that you have created where the branches and tags are including in your repository your remote repository and of course all the tags that you currently have and much more than logging has it let’s break down a Quick Command right here get log on line graph decorate parents now this looks like a lot of options but actually it’ll make a lot of sense once you understand what those options mean one line will give you a condensed view of your history first off the hashes are shortened to seven characters which is the minimum amount get requires for you to specify hash also you get the commit message this gives you a nice quick view so you can can see what happened in the past graph will draw all the little lines so you can see exactly how your commits have diverged and come back together through merges decorate will give you the branch and tag information this can be nice to see how far you’ve straighted away from a branch or where a previous Branch might be parents will give you the parent commit upon every other commit this can be very nice for merge commits because you can see where the two parents came from to create the merge commit go ahead give it a try yourself oh we already did this I already kind of explained this beautiful niceness right here uh each Aster represents uh a commit in the repository we actually already talked about all this this is fantastic why does the first uh line show three commit hashes uh because it’s the first commit in the history no because it’s a merge commit with three parent commits no because it’s a merge commit it shows its own hash and the hash of both of its parents we already talked about that I think that makes sense right wait where did where did my log go oh I didn’t print out the log there you go you can see these are the commits right here these are the lines this is its sha and then its parent Sha see that’s parent parent parent parent it’s commit Shaw parent that’s its commit Shaw this is its parent it’s the parent or the shaw it’s parent the shaw this is Batman right here no parents beautiful asky beautiful asky there we go all right merge logs let’s see you can output your get log decorate graph parents aside from the hashes look something like this we already taled well we already did this we just got to answer new questions why is the weird diagram EG all these things uh whoopsies I I didn’t mean to click that it’s what happens to your brain on Arch Linux after 10 years that’s not what I wanted to do um it demonstrates the branching structure three commits were merged into the main no it demonstrates adding Classics was merged into main boom that’s what it demonstrates it’s beautiful I want to make sure you guys get it all right a fast forward merge does everybody who knows what a fast forward merge is I’m curious type zero if you don’t know what it is I’m actually curious about this well lot of zeros dang dang that’s a lot of zeros a bit I’m shook I’m shooking right now okay the simplest type of uh merge is a fast forward merge let’s say we start with this one main branch and then delete vs code now we run this on Main get merge delete vs code because delete vs code has all the commits that Maine has get automatically fast forward merges in other words the best way the branch you are merging onto if the tip of that branch is the merge base then you can fast forward merge does that make sense yes in other words I tried to one more time I tried to that’s why I’ve been trying to say the word merge base remember a merge base so for these two commits right here a mer the merge base is this right here so in this example this one uh this one was main this one was add Classics so the merge base was this right here so if Classics was branched off instead of such contents the merge base is the tip of the branch you are merging on therefore you there’s no Branch right it can just literally update the pointer the end kind of sounds like rebasing main no it doesn’t sound like rebasing main that’s not what rebasing does we’ll explain what rebasing does in a moment rebasing has nothing to do with merge people sometimes goof that up a little bit it’s not what it does um all right because delete vs code has all the commits main has get automatically does a fast forward merge it just moves the pointer of the Basse Branch to the tip of the feature Branch that’s all it does bada bing bada boom all right uh we’ll get to mer we’ll get to rebase here shortly so you’re just adjusting head pointers that’s pretty much what you’re doing so when you’re doing a a fast forward merge you just main just now points up one right assignment uh because ad Classics branch has been merged into main we don’t need anymore delete that Branch okay we’ll delete it uh create a new Branch off of Main update titles uh let’s see add a commit to that branch that updates titles MD file and add Curious Case of Benjamin Button as the final entry in the list and then use G okay we got to do a couple things here hold on hold on let’s delete get a check not checkout switch de see I I always mess that one update uh titles titels uh there we go uh let’s just open this up and go add classic contents what we doing titles uh Curious case for Benjamin Button is that the one we’re doing titles MD we’re going to add The Curious Case of Benjamin Button there we go we’ve added it so now we have that and then we’re going to just create a commit with G all right get add this get commit dasg a curious case all right there we go uh run one line to see what we’ve done here get log one line you can see right here here is update titles here’s main Main’s one behind you’ll notice that this would be the merge base right so Main is currently if I were to merge this onto main main would also be the merge base and that’s very very important to know all right so let’s go in here let’s do one of these there we go does all this updating bada bing bada boom looking good looking good confetti let’s go all right so fast forward so now what we’re going to do is we have this diagram and now all we need to do is just merge it back on so we’re going to switch to Main and we’re going to merge update titles onto it and you’ll see what happens here so get check out main sorry I did check out not switch get log uh you’ll see that I don’t have G on here if I go on line it’s probably easier to see no G if I go all you’ll see that g does exist only in update titles there we go and then we can go like this graph and you’ll see right here that g is on the end so it’s just straight ahead so now if I just simply merge get merge uh update titles you’ll notice that it does a fastforward merge and now notice if I go like this get log one line notice that this one had a branching Factor this one does not there’s no Branch there’s no merge commit uh and you can see by me going like this get um uh parents so you’ll notice that this one is a merge commit because it’s merging e44 and 7 a0 this one is not because it’s just having its parent to be one behind very important to know okay that’s a very important thing to know people just you know they just don’t know these things all right there we go I hopefully I did everything correct and I didn’t accidentally go forward sometimes I go forward too fast and screw everything up all right so now we’re going to go to rebase everybody thinks rebase is the most awful thing ever and it’s on Twitter if I go to Twitter I guarantee you I search up the word get rebase and there’s going to be something awful up at the top get rebase or hopefully it’s going to be me saying people don’t understand it all right mer all right here we go there you go look at that see open Slack someone help with rebase branch in Flames sends thoughts and prayers close the slack go to gym rebase Force push I up I get rebase like look at this it’s just it’s an endless supply Hacker News is having a get rebase discourse again I like this Comon a lot see it uh blot the blah blah blah blah blah blah blah blah blah blah again they hate this one I think this is the way okay personal opinion rebase is tight rebase is the only way to do it something about get rebase thanks yall for coming I don’t even get this one okay I don’t even get this one this one must be get rebase this is get rebase so you got to be careful when you’re rebasing okay you could screw up the world I just want you to know that okay you could screw up the world rebase might just be one of the most misunderstood features of git where the fear typically kind of comes from is that somebody changes the history of a public branch and when I say public Branch I mean a lot of people rely on this Branch for their repos as well and of course when they pull and the changes have been somehow altered in the past all these conflicts and these weird git errors start happening and it just causes a disaster for everybody and then everyone says rebase is terrible I will never use that only use merge well skill issues you used it wrong to understand rebase you simply need to understand its primary use case rebase helps you to take the diverging commits from one branch and move them to the tip of the base branch that the feature branch is based on now that sounds like a mouthful but it’s actually pretty simple so take this graph right here we have two branches Main and Feature Feature branches from Main at commit a and Main gets B and C added to it while the feature branch has d and e now we want to be able to take the feature branch and get those changes from Main now with your current knowledge you would probably merge main into feature creating a merge commit and that does have consequences and we’ll discuss more about that in part two but for now let’s focus on rebase rebase is is going to allow you to move forward feature Branch from diverging at Point a up to diverging off of Point C allowing for a fast forward merge if you wish to get it back into Maine this also allows you to maintain a merge commit free history and again there are some consequences for that and they can be quite nice and that is it you’ll notice this gives you the opportunity to do a fastforward merge and kind of have a free of merge commit history this will allow for some Advanced G features to be more easily usable if you maintain this type of workflow okay so rebase is very very simple all rebase does is update where your branch points to this is well okay I mean technically there’s actually a couple different use cases for rebase but let’s just start here this is the first one so pretend we had Main and we had feature Branch if we were to get rebase main on our feature Branch it would take the pointer which is which it’s parent pointer it’s its merge uh base is pointing at a and it’s going to go all the way to C then replay your commits d and e and now you have a linear history which means you can do a fastforward merge okay so it’s actually really really simple and you’ll notice that DNE even though the commit message is the same you will now get new commit Shaws why would you get a new commit Shaw well that’s because D its parent is no longer a it’s C so therefore D has a new sha e has a new sha because D has a new sha now you have to fix all the conflicts if there was a conflict while rebasing there would be a conflict while merging if you’re if you’re experiencing continual conflicts it’s because you don’t know what you’re doing and I will explain why in a little bit okay okay buddy can you calm down again whenever I see some whenever I see somebody say something about all these conflicts and all this stuff with uh with rebase what it makes me realize is you don’t know what rebase does and how to and how to get around stuff so it just moves the merge base exactly it just moves the merge base and that’s really important do you talk about conflicts and G two yes so git one is all about using git for yourself get two is all about using it for a team so it takes the code from d and e and applies them to uh code version C yes so literally so the exact operations of get mer rebase does this so let’s say we’re on feature branch and we say get rebase uh main what happens is that we check out main I’ll call that the target Branch we check out Target Branch we then take Source branch and apply its commits to the tip of Target Branch then we update Source Branch to point to the new uh to the new tip why is it uh important to change basis uh reverting so people really hate get revert it does make things better when you need need to revert so reverts typically happen in larger companies if you’re just working with like two or three people you’re probably never going to revert anything and that’s fine but if you have say a 100 people working on the same repo and there is a test that needs to go out that day and you accidentally screw up Main and you need to unscrew up Main and they can’t wait for you to go okay this is going to take me a couple days to fix you have to revert your commit out of the history and then you have to re-release into production the reason that’s nice if you properly do what I consider the best way to use git which is to always rebase right so here’s ABC you always rebase such that you can do Fast Forward merges and whenever you do this you uh you take this and you merge it into a singular commit right you squash it is what’s that called is that if you run into a situation where you need to use revert or revert I always I never know how to I never know how to say the word revert in that kind of tense uh or in that kind of sense I always call it revert I never I don’t know what to do here anyways when you do this it then is really easy to remove this right always rebase in local branch I rebase in public okay that’s crazy don’t rebase in public you can also fast forward merge too yeah just do it with idea that’s not a good way to do things I’m just throwing it out there knowing how git works and setting it up so that it can be very easy to change things but uh but but sometimes I just commit a just a lot of commits you should you should commit early and often okay this is a good way to do things committing early and often is great do that but do you lose commit history when squashing it depends you loose your history of your local changes and that’s okay you can do that you can squash them down to a single one so that way when you merge back into the main branch the public Branch it’s just one commit now maybe you want those in two commits if you want them in two commits then squash the commits into the two ones that you want maybe you want them in all the commits then keep them all right you can kind of choose what you want to do cuz when you revert you can do the same thing as you do in cherry pick and provide a list of Shaws to like take out or put back in uh get rebase interactive is the best thing that is get rebase interactive is very very nice and we’ll do that for when we’re squashing right why would you go with interactive rebase and squash your commits into a single one instead of uh merging with a squash uh I do that that’s how I do it so locally whenever I’m about to do anything I get all my commits prepared I rebase I squash and I push things up try making yes we can do this too uh this is one good way to do things but we’re going to get to that that’s later on right I’m not trying to we’re trying to stay on task here okay lot of questions rebase is always a lot of questions because rebase gets the biggest bad RP from the internet and most people have absolutely no gosh dang idea what rebase does and so then they’re like oh but rebase is bad because it’ll screw up your history and you’re like you’re right you can you can f yourself up with rebase absolutely you can chop off your finger with a skill saw it doesn’t mean skill saws are bad it just means you should probably know how to use a skill saw before you just start slanging that blade all around right I know that’s crazy both rebase and merge can be used to integrate changes from one branch into another in some sense yes very very true anyways all right rebase versus merge BL blah blah blah we’re going to do this one uh blank can add additional uh commit and blank does not rebase merge can add an additional commit rebase does not correct so if I’m rebasing and there’s never conflicts can I still lose history for months go so I’m not sure what you mean by losing history people say that cuz they don’t know what it means what are you attempting to say if you have history that’s in a public Branch you will not change it unless if you interactively squash rebase and then Force push which if you do that you’re a bad person you should be fired that’s crazy don’t ever do that you will you will actually ruin everybody’s life you actually will yes conflicts happen whether if there’s a conflict while rebasing there’s a conflict while merging that’s a good good thing to understand nobody wants to see million see see your millions of commits just squash it yeah a lot of people prefer the squash all right we need a new Branch uh feature branch and to be able to practice our rebase we want to not include some of the commits in recent main uh we’re going to use get switch command and create and switch to a new local branch called update Dune but Branch off the decommit you can supply a commit hash directly and get switch so we’re going to do this right here we’re going to get switch Branch it off of Dune okay people so we’re going to go like this get log uh on line and there we go so D is that bad boy right here get uh switch dasc update Dune and from that one there we go I said update done you get the idea so if I do that another little oneliner right here we’re going to see this beautiful part right here if we do on line all you’ll see that head is pointed right here update Dune I’m close enough it’s not my fault I didn’t copy pasta what can you do okay so now that you see that this is good this is good good good good good stuff there we go we’re going to paste that in we should be wait what oh update okay it’s actually requiring me to do that get Branch M up uh update uh done to update Dune I don’t know why you got to be like that get boot Dev okay you can’t let a man have oopsy daisies here so you never push until your feature is done or you need the force push yeah I I don’t I don’t I don’t push my features up regularly I keep them and I commit them and I get everything I want and then I push it up and then there’s some there is some there is some a little bit of style points here of how you want to handle things after that some people don’t like to make changes uh some people don’t like to make changes in the sense of having to force push again so all PR changes will become their own um commits and then squash that one more time and then merge it when it’s ready that’s one way or you can merge your PR changes back into a single commit and and then you have to force push it so it’s kind of like you got to Riz get your own way and some people prefer the you know the the pr changes to be their own separate commits some people don’t that’s the rizing part you know also if you have really shitty cicd pipelines you may find yourself constantly you know doing that and get Force push every five minutes with amending draft commit yeah that’s me called using get we’ve all seen that we’ve all seen it where it’s just a wall of test test test test test test test test test test test test test test test it’s just the worst yeah I get a bad feeling when not pushing for several days okay I I mean that’s fine you can have of either no one’s telling you not to it happens it is kind of weird right I feel bad not pulling I like to pull pretty regularly all right so now we’re going to rebase main this will do the following check out main remember I called that Target Branch replay one commit at a time from J diesel onto Main update J diesel Branch support to the latest commit the rebase does not affect Maine while J diesel has all of its uh had all the changes from Main there you go so it’s going to pull in those changes so our assignment let’s add two commits to Dune Branch add the following quotes to Dune the spice must flow and then for that will be H and this mind killer all right let’s do this okay Dune is a really good movie okay I don’t care what you guys say all right wait spice must flow okay good uh get status so you can see that get add this get add this get commit Dash I think it’s h uh spice me daddy why not uh go into here that was H we’re going to do I grab that one go back in here do that save that add get commit fear me Daddy I think so I think that’s right I think we just got it okay so I should be able to get log and see this thing so there we go you can see that right here in fact I can go like this graph would make it nicer so you can see right now that I’ve branched off of D you can see my little Branch off of d right here that goes up and does uh does this right here H and I there it is right so you can see the branch right here this is the main line This is the uh the new line that we’re doing what is dash all it it lists every last Branch right so if you to list every last Branch you can I believe you can also forgive me if I get this wrong I believe I can also go Main and update Dune right you can also specify which branches you would like to see how they do what is happening with that here let’s take a look at that so you’ll notice right here if you remember this right here was when we did our merge B our our merging and all that fun stuff right so this has update titles and Main pointing right here do I need to I don’t think I deleted update titles did I did I forget to delete update titles get Branch delete update titles are you sure you want to delete it Force get the hell out of here all right all right there we go so you can kind of watch this thing move right so there there was remember we had a split at one point right here that had DNE so this is the merge commit from DNE so if I go here I forgot to do parents this will make it more clear so you can see right here this is the merge commit for from uh which one is that one from E and D that’s the one we created earlier this right here is our current One update Dune so you can kind of see each one of the lines forming and we split off uh we split off on D right here so the split went up this way to H and I so it goes i h d CBA a for update Dune and for main line is going to be GF e D or is that or actually it’s going to be gfd e CBA I believe that’s how that that’s the ordering there you go that’s that’s how you read it you read it from top to bottom left to right classic real real classic right there all right Perfect all right we’re going to do those two things we have those ones we’re going to run one line I like mine where I did run line main you can see here’s a more graphical depiction of it all right you can see that so now our goal here is to rebase it and so we’re going to have uh does it tell us to rebase it I can’t tell finally while still on that we want to rebase or change it so when we rebase them you’ll notice right now here let’s go back to this thing you’ll notice that we Branch off of D for I and H so when I go like this get rebase Main and reexecute this you’ll notice it got a lot more simple we are now right here it’s now branched off of G which makes it into a nice linear history all right we just moved our Branch forward you’ll also notice oh I I didn’t I didn’t save the output or else you’d see that the the stuff all changed there you go pretty straightforward right there you go no conflicts why would there be a conflict we edited different files so remember conflicts will happen universally since we do not have a conflict in a merge we’re not going to have it in the rebase pretty much either uh there might be some Edge case where that’s not true but I can’t think of why that would ever be true because a conflict in its core happens because git has three operations add delete modify and so if two operations modify the same line it can’t do it it doesn’t know how to merge those two things because git operates on a line by line basis it does not operate within code because once you operate within code it has to understand the intent of code and therefore it can’t so therefore it’s going to say hey since I can’t understand the intent of code you’ve modified the same line you need to do something about it I don’t know how to do something about this does that make sense all right the advantage of merge is that it preserves the true history of the project this is true you know where all the branches happened and where all the merge commits happened it it shows when branches were merged and where one disadvantage that it can create a lot of merge commits which can make history harder to read and understand which can also make it harder to manipulate history with uh reverts and reverts can be a strategy especially in bigger companies I had the revert at Netflix probably 10 times in my life right it’s real I’ve had to do it comments can cause conflicts I’ve don’t know about oh comments as in comments and code yes comments and code yes a linear history is generally easier to read understand and work with some teams enforce the usage of one uh of one or the other on their main branch but generally speaking you’ll be able to do whatever you want with your own branches it’s true how painful was it not painful at all uh when it came to that because I always did I always did the same stuff I never merge committed I always did all my stuff really nice and made sure I had a single commit so whenever I had to revert which did happen uh all I did was just revert commit revert commit walked away right easy easy peasy right warning you should never rebase a public Branch like Maine if you do this you will destroy your life and what I mean by that is when someone pulls it will say your histories are out of sync and then you’ll have this huge conflict problem and then you have to effectively undo everything uh it’s generally good maners to rebase a public Branch onto your own personal branch all right hold on rebase a public Branch onto your personal Branch that’s kind of a confusing question I think what it’s saying is rebase a public branch and change its history if that’s the case no that’s bad there you go rebase and get merge are different tools all right we already talked about this it’s generally okay to merge changes into your own uh private Branch or to rebase your branch on top of a public Branch yes this is [Music] correct all right undoing changes one of the major benefits of git is the ability to undo changes there are a lot of different ways to do this but first we’ll start by going back a commit history without uh without discarding changes all right we have a little story you guys ready for a little bit of a story I don’t even merge I just pull damn it’s crazy why would you do that let’s see okay the new internet webflix tried to add his favorite movie to the titles file but overwrite the entire file by mistake to simulate that on update Dune Branch go ahead and overwrite titles with just one line The Internship oh Vince Von oh Vince vaugh all right I don’t know why that happened I think that’s what they’re looking for oh he actually doesn’t even want that he want the entire file overed there we go that’s what that means if you’re wondering this just means redirect output but it redirects output and destroys the file double carot redirects output and appends to the files all right make sure the file is changed by running get status and then commit with-j all right uh get add this get commit J interns am I right there we go fantastic am I right am I right am I right all right get reset is a command that can be used to undo the last commits or any changes in the index by the way I use reset quite a bit okay not just soft either also hard but soft actually soft reset is an amazing thing to use and it becomes exceptionally good when you screw up a revert cherry pick or a rebase and so it becomes really good the get reset soft I know some of you some of you prefer hard but hard isn’t always good okay it’s not it’s you can’t go hard all the time you got to go soft sometimes trust me on this one I’ll show you all right get reset command can be used to undo the last commits or any changes into the uh to the index staged but not committed changes and the work tree unstaged and not committed changes so we can do re get reset commit hash or it it really shouldn’t be commit hash here this is kind of a oopsy daisies it should be committes commit is a term used by get to say something that looks like a commit so it’s some sort of hash or something that can be calculated into a hash right uh the D- soft option is useful if you want to go back a previous commit but keep all of your changes committed changes will be uncommitted and staged while uncommitted changes will remain un are staged or unstaged as before so our current branch is right here it should be a commit J now we should be able to go to commit I um by doing a soft reset so I can go like this uh get reset soft now normally it’s said to go uh in here and go get log one line and go and grab I and do this right here and go and get reset I you don’t have to do that you can also go if it’s directly in history you can go get reset soft and go head which is where I’m pointing to and then the amount of steps you want to go back so I want to go head one back so that’s going to be to I there we go we did a reset soft that if I go like this get status you’ll see that I have the titles get diff uh staged you’ll see that I’ve deleted everything for internship uh get diff you can see there’s no changes uh no uncommitted changes to the work tree and if I go get log one line-1 you’ll see that I am currently on I pretty cool right so I just did I undid those changes while maintaining the changes available if you don’t see why this is useful in rebase I’ll show you later okay don’t worry we’ll show you we’ll show you yeah it’s good huh I like it I mean I personally like that there we go uh J should be gone for the commit log there we go we should run this thing yes uh yeah git log uh G log uh get oh my goodness I showed this earlier git log p on line is is really nice too uh on line-1 cuz it’ll show you the previous changes so you can see fear’s the mind killer that was definitely I you can see that right there I’m more of a mixed kind of guy okay okay interesting interesting I can’t really argue that can you just keep oh dang I was hoping I could get more I was hoping I could get more uh get add- P do you use this no I never do I never do patch stuff I never do any of that interactive adding honestly it’s that so this right here I would definitely use with an editor it’s way way nicer um I’ve never used I’ve never used uh that no I’ve never used that yeah if you’re going to do patch adding so uh get or um uh man get add uh dasp right this is interactively choose Hun’s the patch so hunk I don’t know how they determine the size of a hunk uh but hunks uh is just like somewhat of a change so long as there’s enough lines between two changes it goes uh here you go here’s hunk one here’s hunk two and therefore you can actually say I want to add this one but remove that one but if we do it with interactive it actually makes it a lot easier here I’ll do it really quickly okay I’m going to do it really quickly okay there we go uh let’s just there we go that’s good enough uh let’s bring it right up into the middle I’m going to just go in here we’re going to go in here I I know I’m screwing things up who cares uh’s let’s just go like this remove me right there we go I’m going to remove me so now when I go in here I can actually go like this I’m going to add one up to the top and one to the bottom and when I go in here you’ll notice that there’s two hunks those are hunks right there so if I were to go uh get add uh that- P you’ll notice it’s like hey do you want to Stage this particular hunk no I’d much rather personally go in here and go like this and so I can go I want to Stage that one and I want to remove this one now I only have one change it’s much easier to use a graphical editor for that stuff split is useful split is useful yeah so anyways all right let me just undo that one uh and then go in here and go get reset uh soft so now here’s a problem here’s a problem everybody I goofed up right now I have this commit that isn’t quite right and all that I bet we could find the other commit couldn’t we oh we could but we’re not going to we’re not going to uh get status there we go get diff uh stage there you go you can see all the stuff I’ve added to it that’s fine all right so get uh hard will undo everything so get hard will not only undo the changes and move your branch back it will also clear out your index and your working tree assignment get run status to confirm this one uh run get reset hard to undo the changes don’t move on before you’ve done this okay there we go so I can go like this get reset hard uh cat titles this now you’ll notice everything’s good there we go so I did a reset hard which will change which will undo the index and the working tree so like changes that are unstaged so that is not no because un well unstage yes it does unstage so it just depends so watch this so if I go like this uh let’s go like this I’m gonna add a line right get status this is an unstaged change to the working tree get reset hard get status it’s gone very important but so if I uh get back here but if I CLI this Foo and I say Foo get status this is an untracked change very very important so when I get reset hard get status you’ll notice that the untracked change because it hasn’t added my working tree yet this is an unknown file it does not get reset hard important to understand that okay important to understand those things there we go we did all that let’s grab that let’s paste that in untrack get so fun with get ignore it can be very annoying with get ignore yes uh there we go danger I want to stress how dangerous this commit or this command can be if you were to simply delete a committed file it would be trivially easy to recover because of the uh it is tracked in get however if you use get reset hard to undo committing that file it would uh it would be deleted for good yes you can delete by accident forever so if you have a change that you never committed you have an unstaged change hanging out and you do a get reset hard you can lose all of it very important to be careful about that so be careful about doing that okay be careful reset to a specific commit if you want to reset back to a specific commit you can use get reset hard command to provide that and you have to provide a hash this will reset your working uh directory and index to the state of that commit and all changes made after that are lost okay so this is this isn’t technically true uh I don’t this must have escaped my eyeballs but they’re not technically lost forever you can still recover them via uh ref log or by looking at uh you can you can peruse through a lot of the G stuff and you can cherry pick back in this is true but it can be a bit of a pain in the ass to do that right again be super careful in part two of the course we’ll cover more advanced stuff uh ref log has saved me many times it should ref log is very very good get reset hard blank undoes the commit changes delete uh deleting the changes forever unfortunately that is not sure I’m not sure how that escape me it perceiving deletes them forever it removes the changes from your branch and moves your branch head so it appears that they never existed you can still get them right anyways I want to stress oh let’s see hold on when provided a hash get reset hard blank moves your current Branch back to an older commit and destructively discards uncommitted changes correct there you [Music] go all right get remote uh often our FR ofies read co-workers make code changes that we need to begrudgingly accept into our pristine bug free repos this is where distrib uh distributed in the distributed Version Control System comes from we can have remotes which are just external repos which mostly the same get repo history as our local one all right that’s the nice part it’s a distributed Version Control System right you get you get the idea uh when it comes to git the CLI tool there really isn’t a central repo GitHub is just someone else’s repo only by convention and convenience have we as developers started to use GitHub as a source of Truth for our code so GitHub is just is just another version of your repo and that’s very important connection to make because if you don’t you might find yourself fairly confused by a lot of stuff let’s create a second repo called webflix local and let’s see as a sibling directory to our original webflix so we’ll do a little CD blah blah blah blah so I’m going to go make derb back webflix uh webflix local there we go all right let’s see run and submit the CI test from inside this one oh we need to get AIT to create a new empty repo all right uh let’s go like this let’s CD back back webflix local get AIT jump in here jump over here paste that in all right we’re moving we’re moving fast adding a remote and get another repos called a remote the standard convention is that when you’re treating the remote as the authoritative source of Truth such as GitHub you would name it origin there’s also some like basic rules around origin that can be applied there’s some convenience defaults and all that by authoritative source of Truth we mean that it’s one uh one you and your team treat as the true repo it’s the one that contains the most up-to-date version of the accepted code some people call it Upstream Upstream can be kind of unique uh if you do your repo so this depends on your uh working order some people will have Upstream in a different fashion um so then origin if you’re working in a bigger team you’ll often find that origin is your fork of the of the remote and Upstream is the authoritative one Upstream there you go does that make sense it’s good to kind of know this and you you’ll see this often uh origin is typically the one you uh work with and so if you’re on a small teamworking by yourself you don’t need to do this this would be kind of stupid you just need this uh you don’t need to create a bunch of process for no reason but you do want Upstream when there is a lot of people working that’s when it makes sense Upstream is usually when you’re working from a fork in common F yes yes uh There He Go is that on top of branching yes a remote is a repository right so so we’re going to do that right here so here’s the Syntax for adding a remote and it can be a URI remember a UR URI is very very important to know that so what we’re going to do is we’re going to go like this get remote add origin back up webflix remember a remote is just another repo there’s nothing that says says it can’t be local okay it’s good to know that cuz sometimes people think remotes are only available like on GitHub it’s not true it’s not true it’s not true anyways oopsies I ACD went back all right let’s go forward there we go let’s copy this one all right so let’s copy this thing there we go we have our remote POS uh properly set so we can fetch adding a remote to our get repo does not mean we automatically have all the content so if I go like this get log you’ll know there’s nothing here nothing ain’t there fetch brings in all the changes this is very important so if I go fetch it’s going to bring in all the changes this is fantastic right so if I go like this get log not look what happened look what happened look at it would you look at it nothing’s happened right well the reason why nothing has happened is because we didn’t actually update our stuff and that’s important it didn’t update our branches yet this is good to know this is very very good to know and so we can also go in our get objects and we can find things so I can go like this get uh I can go uh find get uh let’s just find and get you’ll see that up here you’ll see a lot of these things right in here and you’ll be able to recognize some of these there should be a 78 right a 78 in here there you go there’s our first one right there that’s our first commit that’s commit a if I’m not mistaken 7805 uh get cat cat file- p785 look at that look at that a how nice is that huh get fetch money it’s like it’s like it’s for free okay so there you go so you can see that we have all of our commits they’re just not integrated yet so that’s important it’s important to understand that that happens there we go fantastic so now we actually need to uh you know we need to do something about it now bringing the remote uh into this we need to run get fetch oh I apparently I did that apparently I uh apparently this one is it didn’t actually check to see if I did a fetch first easy I ran ahead I ran ahead I ran a little too fast okay I ran a little too fast all right to demonstrate this run get log which we already did we actually already did all that I’m sorry I ran so fast all right I can’t help it so look at this beautiful thing we can actually do this right here you can actually log a remote Branch versus uh versus the origin like we can actually you can see the differences between them as long as we’ve fetched and did all that so pretty pretty exciting time so I can go uh so if I go get log doesn’t work get log main nothing really in there if I go origin main you’ll see all these fantastic absolutely beautiful uh oh did I actually screw up our uh I think I might have screwed up our stuff no I didn’t all right let’s go let’s go I’m a genius I’m an actual genius all right all right merge we can merge branches with a single uh local repo so we can actually merge in the remote Branch yeah yeah exciting what music is playing the music that is playing is going to be bits and something what is it bits and hits which is this is Skyrim but Loi you are a genius I’m not sure about that okay uh can you explain the difference between branches and Upstream Origins origin or remotes so the second part of your question are called remotes remotes oh this guy’s being really annoying here hold on there you go you’re banned forever from YouTube I don’t know how to undo it so if I don’t click this button it’s done it’s forever uh dang it just it literally just left sucks to suck all right uh these are called origins or not Origins these are called remotes now remotes are just repos branches well they’re branches they’re just they’re just pointers to to uh commit within a repo and so there’s a big difference there so an a repo can contain many branches and they don’t have to be the same set of branches branches are just pointers to commits does that make sense so again a remote would be or a repo is just a collection of commits a branch is just a pointer to a commit it’s a mutable pointer to a commit a tag is a non-mutable pointer to a bit uh a commit it took me a couple times to get that right GitHub is just one large gate repo that’s all it really is it really is just one large gate repo they do a lot of really crazy things so all right so now let’s merge this stuff in so I’m going to go like this get merge uh origin uh main so I’m going to merge the main origin into my origin right here uh so if I go get log now you’ll see all the beautiful stuff this Curious Case of Benjamin Button everything’s looking real real nice fantastic so I’m going to go like that I’m going to grab that we’re going to grab this bad boy in confetti time [Music] yes there is no so this idea of local and remote it’s it’s remember git is a distributed Version Control one repo is not somehow the authoritative source and another repo the downstream Source every every repo is its own repo running and you’re sinking between them so you can actually have many authoritative repos it’s just typically to make life super easy you have one which is GitHub and then you pull and push that so everybody can pull and push to the same thing does that make sense there we go all right GitHub blah blah blah blah so remember GitHub is not git is not GitHub GitHub is a product by Microsoft git is a source control GitHub is a way for Microsoft to make money and to scrape your data and to collect it all for the AI in which it’s attempting to create Junior Engineers that cost less but still cost a lot and then to uh and then to use that to get companies to pay them yeah okay now that we understand what github’s purpose is which is to steal your data that’s why they give you free free repos now let’s look at this all right AI alert yeah create a GitHub account we already did this one assignment all right run all checks ensure that your GitHub user exists and is authenticated there we go I already have it I already have it authenticated and all that fun stuff so there we go all right get up repo just like we created webflix local repo and use webflix as a remote GitHub makes it easy to create remotes that are hosted on their site all right perfect we can create a new repo so hold on before we do that I got to go like this GitHub the primin web flick I believe it should be there or did I name it something else I didn’t name it anything so what I’m going to do here settings let me go all the way down to the Bippity bottom delete this suppository I want to delete it uh I have read the instructions uh the primagen SL webflix there we go delete this one holy cow I’m going to need to do I’m going to need to give a stool sample after this to really get everything done whoopsy daisies wrong thing there we go do that thing all right assignment so I may have to darken my screen for this because I don’t know if I have to type and stuff create a new repository on GitHub called this okay let’s do that right now uh go on here actually I can just go right here create new repository let’s call it a web Flix there we go select owner the prim engine there we go create go here we have a new remote right there fantastic looking good oh no we have too many tabs open all right authenticate your uh local G configuration with your GitHub account I recommend installing the GitHub CLI with one quick installation I already have that uh GH authoriz authorization and then do that one let’s see which one are we doing that in let’s see add a remote in your webflix repo there rep points that one okay so that’s webflix get remote add origin for webflix which is right here there we go be sure to place your username and do get LS remote to make sure it’s all done correctly get a uh LS remote there we go I just have that bad boy right there do I need to push up my changes I don’t think I need to push up my changes it doesn’t seem like I have to push up my changes but we’ll find out yay I don’t have to push up my changes all right so there we go get push origin main all this does is pushes up your branches changes to the remotes right so I can actually so with webflix local I can actually push into webflix and so therefore from webflix I can push into the remote um so here just to just to show you that I go like this get Branch uh get switch uh we’ll call it Foo and go get push origin Fu there there we go so if I go back to this guy I can go get branch and you’ll notice fu is now there Fu was just pushed up from one remote into the next that’s all we’re doing is I’m pushing it to a repo and you can put permissions and all that on what can be done and blah blah blah blah blah that’s what that’s uh that’s what it does so there you go the GitHub is not like that crazy complicated in that sense it’s just git the crazy part about GitHub is all the managing and making it scale and all that other stuff uh get Branch uh defu there we go all right all right what do we got to do here do I got to push up all my stuff yeah yeah yeah yeah yeah yeah yeah get push origin main there we go I push my main throw that in there run all checks confetti out of my mind there we go have we gotten to rebasing yet we went past the basic rebasing yeah yeah yeah yeah yeah let’s see pull H fetching is nice but most of the time we actually want the file changes yeah there we go we can go pull remote Branch we already did that in webflix and so if we were to do this again uh we’d be able to do it uh from you know up from the remote let’s use GitHub UI to commit a change to our repo and then pull it down navigate to GitHub uh navigate to Classics uh edit this file add a new line all right so we’re going to do this right here watch this one this is going to be a little bit wild we’re going to navigate to Classics we’re going to edit this one by hand we’re going to throw that in right there we’re going to commit changes and how do we want to commit these changes I want to make sure I have the correct name just in case to pull the let’s see hold on Commit the changes but uh add the message J update classic vs okay there we go J commit changes boom committed out of my mind all right let’s go commit the change using the UI okay we did that on your command line make sure you’re on Branch main merge the changes from update d okay so get check out main get merge uh update Dune there we go uh get run get pull origin which will pull in the most Regent recent command all right get pull uh origin main there it goes it P pulled it in oh no I have diverging branches por Maria I’m not supposed to have merging branches yet this not supposed to happen oh my gosh I have diverging branches I was messing around too much and now look at me now look at me I’m 4 foot2 exactly this is where I give up ah it’s not that bad all right so this isn’t too bad so oh you should also do this oh did I uh did I do that let’s see if you if if you get diverging branches run get config pull rebase false make sure get will uh merge on poll and try again so get status so there we go so if I go like this get config uh list uh GP rebase do I not have it weird I thought I did did I not have that on uh get config add local uh rebase what is it is it pole rebase pole rebase false it’s like I planned I pre-planned for this there we go beautiful right beautiful can we agree with that I did do I I actually probably deleted it by accident there we go now I have a nice merge now I have a merge commit which we you know jeez and so we got a merge commit with a K there we go there we go we did all that one uh make sure everything worked with get log on line uh get log on line there we go a b CDE e f g h i j k there we go there’s my main right there isn’t that nice little annotations by the way origin that’s where my origin’s at or at least where I think my origin’s at this is where I’m at this is where my update do at there we go perfect first commit was in fact not bat man pretty poor move on my behalf honestly not naming my first commit Batman it’s really the way you got to do it oopsies I forgot to do this uh assignment switch to a new branch called ad Classics my bad add another line this one okay we’ll do uh get switch C uh add Classics this stuff is kind of easy I don’t think there’s anything very interesting here that’s going on that’s why we’re kind of just moving rather quickly we’re going to do a poll request if you’ve never done a poll request they’re really not they’re not hard at all they’re very very simple oh my eyeballs there we go by the way did was I supposed to no I don’t think I was I don’t think I was anyways I just want to make sure I didn’t goof up anything all right there we go so we’re going to do this thing we’re going to add the classics um let’s see uh Classics there we go Alfred hitch hok hitch hitch HW Hitchcock Hitchcock uh get status have the classics what do we want to call this thing this is an L we’re going to take the L get add this get commit sorry this this part I I I mean I maybe some people are you know uh find this stuff uh they don’t know how this stuff works to me it’s very very boring right have you ever if you haven’t done any of this stuff it’s very very simple and you’re going to do this can you do a PO request directly in git well poll requests are something of github’s more nature so we’re going to be doing a a poll request you can use the GitHub tools you can’t do it directly from that because git does not know about GitHub if that makes sense all right so there we go we did all that and so now I just simply need to push the new Branch at the GitHub navigate to GitHub do a pull request click new polar request set the base Branch to this one add Classics we want to merge this one create the polar request but don’t merge it yet there we go very very simple so jump in here get push origin ad Classics notice that I do get push remote Branch you don’t technically have to do that if you set up tracking Alfred hitch HW interesting compare there we go add classics classics goes into main create po request bada bing bada boom look at this beauty right here you can see these two things because we’re not quite up to date with all the stuff I’m not reading chat chat is unhinged today absolutely unhinged all right there we go run all checks looking good absolutely unhinged all right my workflow well on this topic of whole request I want to share uh my 90% of the time uh and all let’s see I keep all my serious projects on GitHub that way if my computer explodes I have a backup and I see and if I if I’m ever on another computer I can just clone the repo this is true uh I configured my git to rebase by default that’s why we had that you know this what I do uh rather than merge so I keep a linear history right I like the linear history because I just part of what I’ve always done is I always have this as true it’s just you know I it’s hard for me not to get config um let’s see local uh unset local what is it it’s poll. rebase there we go uh that’s this is what I do I just do this I do very simple stuff when I’m working by myself I just add my changes and push it up you know I think when you’re when you’re working by yourself you don’t need to practice all the greatest things because it doesn’t really matter right uh when I do my team workflow I go on here and I do the ad and I make sure I rebra everything and I make sure it’s all the ways exactly the way I want it to be and I do all that and then I do the the merging is it a good practice to add it to the global uh I I added to local because I wanted local Behavior here I don’t like to do things on the global scope if it’s something I don’t want done for everything since I wanted to turn off rebase I didn’t want to put it globally on in case I forgot to turn it off right so if I go get config global global list Global list we’re GL we’re damn Global list there we go uh re re-enabled see I got to turn that off see I don’t even have it up on here see I must I must have deleted it on axent get config uh add Global uh poll rebase rebase true there we go push on Save of course yeah it’s one of those things that’s really hard to REM it’s why I try to do whenever I’m doing things like this I do it to the local as opposed to the global because I always end up effing stuff up just like that I I I take off all these things and I forget to add stuff delete my feature Branch repeat yep there you go so you know that when working solo do I use many different branches in pquest workflow no I don’t I think it’s a waste of time personally I think it’s it’s a huge waste of time my workflow while let’s see while the topic of PLL request I want to share oh I did this all right when working with the team uh yea Force push no work on a branch feature Branch then open a poll request for review that’s how I do it just makes sense right so if you ever want to commit to open source you obviously need the fork you need to uh create a pull request you need to do all that stuff right get ignore is really really really really really important because obviously node modules if you don’t know about them they’re horrible uh so you need to get ad commit some message here get push origin problems will arise uh get ignore file just simply allows you to say here’s a specific file or a class of files to ignore you can also go with the inverse which is you can ignore every file and then just add the files you want to have it’s kind of like a fun way to do stuff um if you’ve never done that kind of stuff right and so you could have is this the first or second this is the this is the first part so we’re going to create a node of modules or we’re going to create a get ignore file that has node modules in it right so if I go like this Vim get ignore oopsies I already have Vim open here whoopsies we don’t want to do that uh I want get ignore and go node modules modules by doing this if I go like this makeer uh Fu and then I go back to here let’s see and I go back in here and I go in here and go like this uh bar. MD save that and then I go one more and go node modules and I go in here and add uh fu. MD right bam if I go get status you’ll notice something Fu hasn’t been added yet right so it doesn’t have any idea what’s underneath so when I go get add everything and do this you’ll notice that it only adds Fubar it does not add node modules and that’s very important and that’s because this matched anything it’s just a match so you got to be careful careful careful careful include bid and build you coward no another cool thing about G I’m not sure if I talk about this here I’m going to I’m going to go in here and I’m going to erase that right erase that get add this get status you’ll now notice uh node modules is now added right awesome so that means here’s an interesting thing I can do I can go in here and go get ignore you can do uh let’s see let’s go bar anything with the word bar in it get status now you’ll notice we have this and it didn’t really quite do it I believe I had to go MD exact match can I exact match it get add this get status I think because I already added it it causes a weirdness get restore uh staged uh Fu bar. mty get status there we go it’s gone right it doesn’t exist it’s already been staged so I had to unstage it there you go so if I erasee this and go back here get status you’ll notice that it’s now able to be added back so you can actually do inner directory get ignoring which is pretty nice I’m a big fan of that if you want to do it you don’t have to do it but it’s cool it’s cool to know that it’s possible and one last thing that you can do as well is there’s a file called um called uh what’s it called get info exclude you can see it right here there’s the path things that are ignored in here are ignored for your local repo they’re not ignored for everybody and so this is a really cool little file right here if you don’t know about it I’m not sure if I talk about it but you should like say you like for me one thing I always do is I go like this I always I always have like an out file that I always have so instead of adding it to my get ignore I can just add it to my excludes and by adding it to my excludes uh when I so you know when I run some sort of program Echo Fu and pipe it to my out file when I go get status my out file just doesn’t show up but nobody else has to know about my outs ignore I like keeping all the ignores in one place it doesn’t make sense if you’re working on a team right when you’re working on a team I have a bunch of Stupid Files that I create regularly out out to and so I don’t want to have out files inside the G ignore so I put it inside the git uh git excludes list which is kind of like that special one there’s also home get ignore I didn’t know about the home get ignore is this like one uh is this a global project uh ignore see I mean G has a lot of features so I didn’t know that this is the same as a global level get ignore of your work oh cool all right Perfect all right so here we go assignment create two files in your repost secure password. text and create a let’s see first create this thing all right and create that all right we’re going to do that and then guilty pleasures all right perfect get check out main I assume we’re supposed to be on the main branch are we on the main branch yeah yeah yeah yeah yeah yeah yeah yeah yeah uh get status uh rmrf Fu let’s get rid of all this get status all right get add this get stat status uh there we go oopsies oopsies uh what is it called webflix there we go uh we’re going to here I’m going to get rid of that thing get ignore and go in here oh that’s not what we wanted in there we wanted it in secure and then what did he say passwords do text or some crap like that and is that what he wanted password. text yeah and then one called guilty pleasures all right guilty pleasures. MD boom The Notebook let’s go guilty guilty AF finally create a get ignore with both with Ensure both of those files are ignored ignore the entire secure directory and then um all right perfect uh secure and then guilty pleasures all right and then let’s see with the message starting with M all right get commit we got to do a little M message uh get ignore uh my uh my notebook Pleasures okay you don’t know you just don’t even know how good the notebook is all right there we go Nest to get ignores oh I actually already went through this we actually talked about this exact thing didn’t we oh my goodness we already did this all right which is ignored all right hold on what are we doing here here’s the let’s see here’s the contents all right we have these contents uh here’s the contents which is this Source assets get ignore which is going to be only devs and main.py and this one’s going to be Vin bin activate so that one’s going to be this one uh right here and this one’s going to be only Dev and what’s the other one main.py and main.py okay here’s the here’s the contents wait hold on what’s the question which is ignored they’re all ignored aren’t they all ignored aren’t they all ignored does not necessarily have to be at the root it’s fairly common to have this one am I am I misreading things I mean this one will be ignored yeah this one should be ignored and this one should be ignored okay oh oh yeah of course not I’m so stupid okay sorry I’m so stupid this one’s um main pie which does not exist at this level okay I wrote this I actually wrote this this one won’t be ex and then this the grot one has ven has ven V been activate which this one should be ignored as well right am I wrong here shouldn’t that one be ignored just equally whatever there we go only devs I want a main cupcake you can’t have one wrong what am I missing there sell Boozled yeah it’s not one of the options oh act let’s see activate is a shell script not a folder ven is in Source oh V is in Source my bad okay I just wasn’t looking hard enough okay your G ignore file does not necessarily need to be at the root of your project I haven’t looked at this in a little bit okay I wrote that to try to be clear uh it’s fairly common to have multiple G ignore files yeah um there you go we’ve already talked about this one here’s the Let’s see we have already done this one which is not ignored okay so Source ven bin this one okay this makes sense now we got it uh test. Pi which one let’s see test. Pi that one’s not even in there there we go we got it skill issues I’m skill issuing come on shut up uh it would be rough if get ignore only accepted exact file path sections luckily uh they don’t let’s go over some wild card common patterns dude the star that’s the one that’s the one that always works I do it constantly root patterns uh patterns starting with the slash are anchored to the directory containing the get ignore file for example we ignored main Pi in the root directory but not any subdirectories with that negotiation or negation you can even negate patterns with prefixing with an exclamation mark this is useful if you want to ignore an entire directory except say an example file I find that to be really really useful is that that kind of move right there I I really do like that you can do comments that’s just like typical shell comments but how do you make a use of multiple G ignores save some notes or something uh if you want if you just want something ignored a certain way you can do that I found it really useful when it came to uh monor repos so if you’ve ever done mono repos in uh with like node or something you want to be able to have a get ignore for each one of those repos it seems to be really nice that way so yeah data directories yeah exactly you just have like these little get ignores so that way you don’t have one giant get ignore that’s super hard to figure out what the hell is happening instead you can just do that so it’s nice all right assignment use this get ignore file to answer the question uh all right so that’s a comment we’re going to ignore everything with a with a text file except for the ones with name and then we’re going to do Source Main and then content Source content is ignored so this one is ignored Source content MD because this one is an exact file name that matches this one and it’s not anchored so it should be is ignored let’s go patterns it would yes we already talked about patterns we already did all this uh what’s the other question all right Main JS is main.js ignored no it’s not cuz that’s a comment it is not ignored let’s go nice try trying to bamboozle my own questions all right here we go they’re trying to bamboozle me all right assignment Part D we’ll do that soon all right here we go Let’s ignore a generated file we ignore generated files because they can easily be regenerated from stuff we do track in this case we’re going to use pandoc to generate HTML from markdown files we’ll ignore the HTML files uh but commit a markdown file first install pandoc Brew install I don’t have that but we do have this guy I can’t show you guys this screen all right here we go uh there we go look at that look at how good that is look at how good that is fantastic there we go we installed pandoc we can run pandoc version to see what that is so I can go like this um uh pan up uh hashr pandoc uh my password is big boobs everyone knows that big boobs 69420 all right here we go running pandoc all right create a new file at the root directory called advert MD with the following content all right so let’s do advert that one while supplies last there we go uh Vim at oh uh let’s go to this one Vim advert MD paste all this stuff in there we go and then run the markdown let’s see run the following command to generate the HML document from that there we go pan doc Bop get status so now we have the we have this one advert HTML beautiful uh for Fun open up the markdown HTML and see what let’s see we can do that XD I don’t want to do that we don’t want to do that because I had to go like I don’t even think XT xtg open does that work on look at that look at that Beauty look at that be would you look at it would you look at it there we go uh we’re going to do we’re going to do a get ignore I think I have to do a get ignore here oh it doesn’t technically say okay see finally add the file oh the get ignore there we go uh Vim uh get ignore what is it called it’s advert HTML bam get status up get stat get status so I think I should be able to do that nope do I have to add stuff finally add the get ignore oh and commit the change serving with 10 get add get status get add get commit n was it n yeah Foo bar screw it got him there we go I finished it we finished the entire course just like that I’m level 12 you would even understand what level 12 is you wouldn’t even understand it uh what’s your opinion on how organization should handle PR merges in main squash uh merge merge commit or rebase which is most useful when you are responding to an incident which is the most useful for Dev happiness overall in a proud environment well I mean here we go again I know here we go again damn uh I’ll here I’m GNA I’m going to say it this way I personally like to rebase and squash I like Fast Forward merges I like to be prepared for the eventuality I need to uh revert a changes that’s it now some people it depends on your size honestly if you have just a couple people like why even have a policy I’m going to be real out there why even have a policy at all some people like to rebate some people like to merge screw it let it all happen do you really want to set up a whole bunch of red tape for you and one other person like why why why add more to your life here I’m going to throw something out here no matter what you choose merge chaos fast forward merges only rebase squash no matter what you choose there will be a group of people that complain about it so we’re going to start this one so this one is a little bit different okay this one is a bit different this one is going to go over a bunch of like conflicts and stuff okay hey I know you’re about to take learn get to and I really wanted to show you a couple quick techniques to make it a little bit easier because inevitably you may mess up at least some of you are guaranteed to mess up you didn’t read the instructions well maybe it’s not quite as clear as it needs to be and so these are two little commands that are going to help you a whole bunch so the first thing I’m going to do is I’m just going to show the contents of the previous commit that’s going to show Foo with a message of Fu 3 now every now and then you may have goofed up a little bit with your commit message and you just want to change it you can go get commit amend this will give you a chance to change your message but as a warning it does change your Shaw so obviously this is a destructive history altering item it allows you to change the last commits commit message so if I go like this get log one more time you’ll see now it’s Foo 4 and you can see that and if I go get Foo let’s see if I do two of these you’ll notice that there’s not a foo three three in here anymore looking at the change you’ll see that all it is is a new file called Foo previous file was Devol meaning there was no other file so it’s just a new file called Foo with a single line called Fu now if I actually want to undo this commit completely I can go get reset soft head TIY 1 this will undo that commit so now if I go get log just one line you’ll notice it’s not that anymore but because it’s soft and it leaves changes in your index and work tree if I go get status you’ll see right away new file F okay we can work with this get reset hard would not only undo that commit by one it would also remove the file so if you ever have to say change something within a file or you need to change the commit message consider get commit amend or consider get reset soft now I use actually get reset soft quite a bit when I’m doing a rebase merge conflict this does happen every now and then where I’m rebasing and I go okay I fix all my changes and then I actually get commit those changes as opposed to calling get rebase continue if you make that mistake you can actually use get reset soft head till one to undo that commit and then rebase continue it’s kind of like a you know it’s like a it’s a lot of IQ and it’s really really nice so I just wanted to give you those two tips because honestly this course can be a bit meaty and without these two things kind of fresh in your mind you might accidentally find that you get your yourself into a bad State and it’s hard to undo it’s actually pretty easy to undo these bad States the name is the gagen all right here we go let’s do this let’s get going okay welcome to G part two I wrote this also where you learn how to use G with a team if you haven’t taken the first G course I’d recommend starting with it because it contains all these basic operations okay uh the stuff in this course is great let’s see the stuff in the first course is great if you work by yourself but you’ll need more if you want to stand a chance as a developer Mega Corp where we sell synergistic CRM customer relationship Management Solutions to Enterprise that’s right we do hey look I’m wearing the same shirt I’m wearing the same shirt what are the chances uh this course assumes you’ve completed uh number one so you’ll have all this crap that we’ve already done we have already blah blah blah blah so we’ve already done that thing same shirt what are the chances there we go I’m just going to run this because we’ve already done this okay we’ve run it we’ve done it you need your own Fork of Mega corpse starting repo a fork is a copy of this one so we need to go here I’m going to first need to jump in here I’m probably going to need to uh can I fork or is it not going to allow me I can’t tell if it’s going to allow me or not nice let’s go I’ve done it please select owner Fork already exists shoot okay it’s K sensitive today I learned it’s K sensitive there we go I thought I just deleted that but apparently I didn’t delete that there we go and create all right we got the fork we’re forked out of our mind all right let’s let’s let’s do this let’s do this all right so we got a fork we did that we pressed the fork button we did hey look at that hey look that’s me hey that’s me doing that all right boom boom boom boom boom boom boom run check pasting your link we’re going to paste that link all right there we go all right what is a fork uh we created a fork of the official a Corp repo inside your giup account it’s a copy of the original that you can modify without affecting the original you may have noticed that there is no manual entry for get Fork git Fork is not a real thing right why forking is not a git operation but is a feature offered by many GI hosting servfaces such as GitHub gitlab and bit bucket those Services Fork a repo by creating a new copy of the repo and associating it uh as a fork of the original there’s something called like a fork Network or something like that with GitHub which is very confusing it’s like one Super Repo and there’s some sort of thing that they do underneath that’s a little bit more confusing this is gamified git tutorial this is a g tutorial I wrote and I’m going through when you Fork someone else’s repo on GitHub you simply clone their repo into your local machine you create a new branch of The Originals well technically I think it has something to do with this in the fork creation network but I don’t really know how it works create a copy of your own let’s see of the repo and your own GitHub account boom let’s go that’s what we did all right I’m not working TC no okay GI Fork is a command line operation that takes no f false all right now let’s clone it down let’s clone Mega Corp uh RM RF let’s get rid of webflix let’s get of webflix local let’s get of uh Mega Corp Mega Corp uh get clone the primagen get clone get clone primagen Mega Corp Bim we’re in we’re in we’re in in there we go perfect all right we’re we’re in okay so let’s get let’s let’s start doing this whole thing because this is this is the one that in involves a bunch more stuff uh when you Fork someone’s a repository like a platform like GitHub you can copy a repository into your account this is the standard way to contribute to someone else’s open source project uh steps are typically Fork the repo to your account clone the fork to your local machine create a branch or feature make the changes commit the changes create a poll request bada bing bada boom you’re probably asking yourself why should I Fork a repo instead of cloning it cloning is a lot easier well that’s a good question you first have to answer the question am I interested in contributing back to the main line or do I just want to peruse the repo if you wish to just simply peruse the repo then a clone is just fine whereas if you wish to contribute to the open source project then it does require a fork here’s usually my workflow when it comes to forking and making changes one I just Fork the repo two I will clone down my forked repo three I’m going to make the changes to my main branch four four I’m going to push my changes up to my Fork’s main branch five I’m going to open up a PR with my changes from my Fork onto the original repo along with a nice detailed explanation of what I have changed and why and finally I get rejected go home cry a little bit skill issues but nonetheless I tried and that’s what really counts doesn’t it it’s also worth noting that whenever I clone down my Fork I also add a second remote that I call Upstream that points to the original repo and the reason is that when the original repo changes I can bring in their changes and that way when I fix something I know that I’m fixing on the latest version I’m Not accidentally fixing something somebody else has already fixed this also avoids having conflicts during PRS and if you wish for your PR not to be rejected here’s some pretty helpful hints number one whenever I make a PR before I hit that button and say make it live to everybody I review my code on GitHub this weird thing happens to me whenever I review code on GitHub I seem to catch things that I don’t catch when I’m in my own environment I kind of think of this as editor blindness you’re so used to everything that when you see it in a concise different way you just see mistakes you’ve made so much easier probably most importantly is make sure the maintainers want these changes spend the time looking through the repo issues make sure you’ve searched and validated that this really is an issue and if there’s no mention of it open up an issue tell the maintainers you’re willing to fix it and see if they want you your fixes you may find that maintainers actually do not wish for you to participate or others they may want you to fix it but in a completely different way as long as you’re polite in your communication and you’re very clear as to what you’re trying to fix you will find that often maintainers are very happy to have you come on board and help out okay so assignment I want to make sure people know how to do this okay I want to make sure people knew how to do this like fun little bit add a file in your forked and cloned version of Mega Corp to the repo uh to the repo contributors directory uh the file should be named let’s see your get up username text replace your username with a good one okay let’s see add myself to the contributor okay Bam Bam Bam Bam Bam Bam Bam Bam let’s go in here and go here okay well I’m already there the primagen 2. text oh my gosh oh my gosh all right there we go there we go we got that let’s do that let’s go like this get add uh uh get whoopsies all right there we go so we’re going to push this up right so I’m going to do all this I’m going to push this up push my changes to my GitHub uh to an add contrib Branch oh gosh get checkout add contrib oh I’m not supposed to use checkout sorry it’s just I can’t help it I can’t help that I do who the hell does that who Noob Noob Noob he’s a noob I’m not even sure oh I I copied it from the boot. dev site remote add origin all right there we go fixed fixed you wouldn’t understand understand fixed you wouldn’t understand you don’t understand because you’re you’re you’re sore loser boom I think it told me to create a pull request let me just make sure that that’s what we’re doing here all right there we go all right with the poll request open submit the test all right there we go run all checks let’s go owned it head mean where me at now for those that don’t know who grug is grug is the best I always go down here and just I just read this line whenever I think of gr grug apex predator of grug is complexity complexity bad say again complexity very bad you say now complexity very very bad given choice between complexity or one-on-one against T-Rex grug take T-Rex at least grug see T-Rex complexity bad all right let’s go like this okay for example you should be on main branch of your local clone of your fork of Mega Corp repo which which means head is pointed to the main branch like all things and gets eternals head is just stored in a file right here manually uh check to see what’s in head yeah let’s do that cat uh get check out main get cat uh dog I think it should be I think it should be the name of the thing there you go yeah it’s just a it’s just a path path to the uh to the branch or the tag if I’m not mistaken G yeah you got to G it baby you got to G it get that son of a bee all let’s see if that just works okay what did I I didn’t read all right what’s the thing oh uh get Branch d add I must have missed deleting that did it say to do that okay my bad I didn’t look I did not in fact look we’re going G grug no read all right get reflog command pronounced a reflog not reflog is kind of like Get log but stands for reference log and specifically logs uh the changes to a ref that have happened over time T the default one is the head by the way grug no read grug never read where head is now one move ago two moves ago three moves ago you are already familiar with how git log Works how it shows your current branch and all the history of the commits so if I had a brand new repo with three commits a b and c and I execute log I should see the following output and if I execute ref log I should see this following output is reflog just a verbose log well no it’s actually not it’s very very different and to illustrate the point let’s remove commit C I can remove commit C by using git reset I can walk back one branch and as you can see with Git log I now only have b and a but if I use get ref log you’ll notice that I don’t have two entries I actually have four entries I have a b c then back to B and notice that it contains the command I use to get to B which means that if you need to get the contents of C you can actually use some of the plumbing of git plus reflog to be able to retrieve back out the contents of C even though it’s gone from your branch I cannot tell you how many times reflog has saved my bacon by walking back and getting some commits that have been long forgotten so what is reflog well the definition from get SCM is reference logs or ref log records the tip of branches and other references whenever they are updated or in layman’s terms reflog tracks the changes of a branch or other references other references being head this means as you move your head around from Branch to branch or from commit to commit it tracks every last little step I personally only ever use reflog to look at how my head has transitioned over time and Rescue out of commit if I need to all right assignments run get reflog to see what its output is all right here we go get ref log look at that look what it is going from ad contrib to main from uh from Main to ad contrib to this commit to the Clone cool right you get to watch it kind of move around it’s kind of cool I like it reflog is nice and it’s really not all that bad all right switch to a a new Branch off of it called slander get uh switch C slander look at that I remember to use that uh let’s see create a new file called slander. MD and have this one all right Vim slander. MD paste that in uh Mega Corp CEO Lane enjoyed the live action last air bender movie this Mega Corp CTO Prime is a fan of the notebook okay Lane mayor or may not had a little bit of fun editing some of these things okay I don’t know if I didn’t choose all of the stuff I’m just saying you know the notebook’s not a bad movie okay what I feel I even have to commit it okay it’s not it’s not bad okay it’s not bad Ulta movie was a good terrible movie too did you cry I didn’t cry I’m not crying SL slanderous slanderous filth I’m not even sure if I spelled slanderous right um boot. Dev run that okay what am I not even doing here all right expected this contains all this one oh I had to do b. slander goodness gracious uh reset soft uh head I okay I got to start reading you guys are not helping me um uh be slander you guys got to quit but by the way did you see that nice usage of get reset soft huh ha did you like it I could have get commit amend I could have we could have amend but this one is great okay it’s okay it’s okay to cry it’s I don’t cry I work out I know we could have amend okay but we didn’t okay delete Branch every ever uh shipped a bug to production main branch created a new Branch to fix it bug fix fixed the bug and committed the changes switch back AC deleted deleted the fix bug Branch all right switch back to Main and delete your slander Branch get Branch D whoopsies get check out main get Branch oh I’m supposed to use switch but I I just I can’t I cannot use switch okay I can’t use switch I can’t I can’t use switch all right I want to use switch Boomer brain I know so you’ve deleted your branch that had a unique commit On It All Is Lost or is it remember get reflog keeps track of where everything has been so let’s do this get ref log look at this bad boy that’s where we did this one look at this commit right here the commits right there the commit is right there okay that means what we could do like here’s one one way to do it which I’m not saying this is the way you should do it I’m just saying this is one way you can do it you like this you can go like this you can go uh get cat file- P remember when we learned about all this and you can actually go through all of the little internals and snatch out the slanderous file get cat file- P look at this right there there’s me enjoying the notebook right we were able to Plum through things if you wanted to if you wanted to get deep in there and kind of go through the whole thing you could so there we go we grabbed that and so we can actually grab this and do that and do a recovery message right so I could do this right there’s other ways I could also do stuff right this is just one way you could also get merge and since I already have this thing I could actually just merge over that change into it we’re not going to do it but you could imagine we could do that so instead I could just take the contents of this one file and I can remake it if I wanted to as well even though it’s not true commit that file with B recovery get add this commit dashb Rec recovery Boom Confetti out of my mind all right cherry pick would have been what I would want to do really I would have just merged it over right I mean it it just depends do you want the history or do you not want the history like what happened if there’s 10 commits then you have to cherry pick all the commits let’s see using get internals is exceptionally inconvenient we had the copy and paste from cat file three times I would not recommend doing it this way I just wanted to drive home that at this point you can always drop down to the plumbing commands if needed luckily there is a better way get merge I just haven’t talked about Cherry commit that’s why we haven’t talked about that so I can do reflog this one find the commit kit that one so I can do get cat file do all this crap which we don’t want to do I can also do this right right I could have just merged over exactly what it said from reflog right let’s see do I still have that reflog thing or did it open it in one of those windows uh I think it did that one of those windows right yeah do I do no pager no page I can never remember what that line is oh that’s right you don’t do it there it’s a get no pager there you go so as you can see you can see right here so I could actually do get uh head at the second position back right why does get ref log allow us to potentially recover commits on deleted branches because it keeps a record of where the head has been yes that’s what it is there you go little fun little fun reflog stuff merge all right let’s see what can you merge with only tags commits branches a commit commit tag ref log entry anything that can resolve to a commit so that’s why you’ll see me use the term commit quite a bit in this [Music] course all right uh working with Git is a dream when all of the developers in the project are committing changes to different lines of code things get a little hairy when changes are uh to the same lines are made at the same time one commit isn’t the parent of another let’s break some stuff remember Mega Corp is Enterprise CMR Service uh backed by the power of git Essen it means that we store lists of customers data in a get repo truly Cutting Edge stuff you should be on the main branch uh create a new branch called add customers all right get branch no wait it’s get is it get switch see there we go all right there we go we got that one and we’re going to grab this one uh to customers a CSV all right all is it all like that one yeah there we go so we’re going to add it to all customers and then we’re going to also do orgs partner. text right there Boot and startup so we’re going to do orgs partners. text there we go beautiful we’ve done those two make commit your changes with the thing C okay we’re we’re going to kind of cruise through these easy Parts because I assume at this point you guys understand adding committing doing all that um because this is all easy stuff right none of this stuff is crazy all right get status get add this get commit I think I said c right yep see uh uh such Carson much HDMX all right there we go and now we’re going to switch back to Main and we’re going to do this to customers uh get check out main uh go back to here edit this thing jump up here customers all add Json gross HTM Z contributor get add this get get commit what do we need to do with d That’s right d uh Jon is better than uh Carson more like cars off all right so do you do you see what we’ve just done here do you see how this is going to cause problems so if I go like this uh get log uh on line um on line- P1 main you’ll notice that I edit customers with one line right below company title if I do the exact same thing but I do it uh with the add customers Branch you’ll notice that I do the exact same thing to the same customer files in the same location in other words we both modified the same line and by modifying the same line G doesn’t know what to do because git doesn’t understand anything about code it only understands things about modified lines if two lines have been altered in some way it creates a merge conflict there we go I believe that should just work there we go and let’s go conflicts yeah yeah yeah yeah yeah yeah yeah so merge conflict occurs when two commits modify the same line and get automatically decide which changes to keep and which change to discard consider the following commit history ABC this is pretty much what we have now except for it’s a c and d uh the main branch has something like this uh is nice returns this one feature has this one is nice 420 right if we try to merge feature into main G will detect that the return line was changed in both branches independently which creates a conflict so this is good this is good to understand right when a conflict happens usually as a result of merge or rebase git will prompt PRP you to manually decide which changes to keep it’s okay when the same line is modified in one commit and then again in a in a later commit the problem arises when the same line is modified in two commits that aren’t in the uh in a parent child relationship all right if the line changed in B was all the conflict change in B’s parent a the htx guy writes an essay about it that’s true Carson will probably write an essay about it uh that’s perfectly fine get knows a happened first then be yep that’s the thing you can’t conflict yourself like that right you just can’t all right if two developers on separate branches modify the same line of code what happens when the branches are merged HTMI htx guy relaunches the project with a new name facts it’s perfectly fine false conflict arises there we go assignment it was stupid Greg stupid Greg who merged his new customer data into main commit D while you were working on your new customer data in ad customers Branch commit C because his change made it into main first stupid Greg it’s up to you to resolve the conflict stupid Greg now because your manager is a lite that learned a code before Version Control was invented he asked you to merge instead of rebase absolutely this is all true switch to your add customers branch and merge main into it all right there we go we should get this one let’s go let’s go get check out add customers hey uh get Branch d add uh add contrib wait why is contri still there I thought I just deleted it why is there why is there multiple ad customers whatever that’s confusing whatever I don’t got time for this damn it Greg leptos mentioned leptos potentially mentioned get merge main all right boom we got ourselves a conflict okay uh if we run get status you can confirm that we’re in a conflict so if I go get status you can see right here you have unmerged paths fix the conflicts and run get commit and use a get merge abort to abort the merge so we can actually stop the merge by doing that get out of here okay there we go get run status like this to confirm that you’re in a conflict we can see that so let’s run this thing boom Oh wait what oh my gosh this thing is incorrect lane lane Lane we have a problem this is this is wrong our Direction somehow got out of conf out of out of stuff here I know which means I go like this get uh merge abort get check out main get merge uh get merge uh add customers there we go kind of BS Lane all right right here I’m going to go back here I’m going to report this uh wait does it am I wrong here did I just maybe I just didn’t hold on get uh merge get merge aboard get check out maybe I did this wrong yeah I used the wrong one lane it’s not right lane you’re right you’re right this whole time I’m the bad one I’m the bad one I’m the bad one shut up get check out you dumb folk I know I messed up isolate to changes and merge correct you merge yourself correct resoling conflicts is a manual process when they happen get marks the conflicted files and ask you to resolve the conflict by editing the files in your editor so here we go open up the customer all and you should see this all right so here we go here’s our customer so you can see two you can see a couple things here just so everybody knows in emerge conflict this represents uh hours is the top one hours is where our head at here’s the change in hours the change ends with the equal sign and then this is the one and then the bottom one represents the incoming Branch theirs so theirs is main ours is head and this is the change in theirs this is the change in ours okay it’s pretty good to know those things right uh let’s see delete the conflict Mar markers and leave both changes and Greg’s changing the file it should look like that so we can actually you can actually have both changes at the same time right nothing says you have to change it it’s up to you to resolve how to to do this you can accept both totally reasonable uh sa file and do this okay yeah we can we can accept both there’s nothing that says you can’t accept both right all right resolution after manually adding any conflicted conflicting file sometimes it’s more than one file or more than one section of a file you simply need to add and commit the changes this tells get that uh you’ve resolved the conflict and can continue with the merge okay awesome we can do that so let’s let’s resolve with this nice message right here it’s a nice beautiful message get add this get commit uh- M all of that oh my goodness stupid Greg oh no all right there we go apparently I don’t know how to do that there we go got it first try and now we can do log to examine the homework you should see c and d and commits come together and E commit all right get uh log on line look at that beauty and then we can go on line graph there you go it all comes together in E we resolved the conflict bada bing bada boom very nice absolutely liked it absolutely enjoyed that all right all right you just ran get merged and you’re now seeing this okay I just realized what was happening I was like wait a second uh which code in the conflict is yours and which is theirs so if we ran get merge that means this is ours this is their theirs the top is the top is mine the bottom is theirs it’s all mine stay away I prefer that answer honestly um all right you just ran get merge and you’re now facing this conflict oh let’s see what does head refer to it’s another name for the master branch no it’s another name for the main branch no it points to the latest commit in the other Branch you’re comparing to no it points to the current Branch’s latest commit boom it’s pointing to where head points to everybody knows that is that easy back to me your manager at Mega Corp is not happy it turns out you were never supposed to add customers to the all. CSV file at all only Greg is allowed to do that stupid Greg this is what you get from making changes without 10 design meetings and an alignment of stakeholders what were you expecting to be productive this is Mega Corp process over productivity get back in line I don’t want to hurt anybody’s feelings but at the same time I know a lot of people just got bruised by that one statement I’m sorry I’m sorry that right there’s some of you that hurt that paragraph hits home I know it does let’s just say I’ve written a design document for the the dumbest thing stakeholders are okay in the 10th design meeting but have problems when the implementation hits BR always every single time assignment let’s fix our hastiness by uh doing a git hard of the merge commit this will allow us to take a different approach to resolve the conflict luckily we haven’t borked main yet we just uh need to fix our ad customer Branch while on ad customer Branch reset to commit C all right let’s do that oh my goodness um let’s go like this let’s go what is it called Mega Corp yeah yeah yeah get reset uh hard uh head till the one there we go we’re back to C everything is great we’re looking good we’re feeling good there we go we do all that nice stuff so I just I I literally just took the change moved back my Branch ones and discarded my index my work tree changes bada bing bada boom easy peasy pumpkin seedy that’s just that all right uh let’s fix our hastiness by doing a hard reset yeah we already did that luckily we haven’t borked main yet so we’ll just uh fix all right here we go try merging main into customers again this time resolve the conflict by keeping only the changes for main I want to see something cuz I may accidentally have uh R re on and if I do then it’s going to say it’s all fixed nice I don’t have R re on uh get config list uh Global grap re re oh I do wait shouldn’t re read take care of that doesn’t wouldn’t Riri re jump into that am I confused here am I be what what I thought it did well then why didn’t it it should have Auto conflict it record yeah record resolution was solved was added weird Why didn’t it just Why didn’t it auto resolve right here shouldn’t have just Auto resolved oh wait oh oh my goodness I am so stupid I am so stupid it did it automatically using previous resolution so if I go to customers oh my goodness I’m so dumb look at this the conflict is gone the reason why the conflict is gone is I knew I had re re-enabled so since the customer doesn’t have a conflict in it we need to disable R re get uh config I’m just going to do a local one uh I’m just going to go like this add local re re re enabled false right so I’ll just add a local one so I still have my Global one so it still continues to do what it’s doing uh get merge abort then get merge um get merge main which should now there you go I now have the conflict without re taking over and I should be able to just go into here uh and I should be able to go to all and now we have this again so now this time we’re supposed to select Greg’s change which is theirs so I can go like that boom Greg’s change selected uh there’s some other ways you can do that to make it easier but this is good so we’re going to go like this find Greg have this one boom uh we’re going to go here and go get St status get add this get commit dasm with that one there we go um and then jump in here do that there we go there we go all right I think that’s good all right ours versus theirs uh in a merge conflict ours refers to the branch you are on merging into theirs refers to the branch being merged this is important get merged their Branch ours is the branch you’re on right uh get terminology last time we manually edit the conf uh conflicting files this time let’s use get built-in merge resolution tools to make the uh let’s see use the terms hours and theirs to refer to the branches being merged you should currently be on ad customers with this kind of History right now switch back to Main and merge ad customers into main this would result in a fast forward merge bringing C to e into main delete ad customers all right get check out main get merge add customers get Branch delete uh add customers boom look how fast I am all right so let’s do a better let’s do an ours versus theirs merge because this is really good to know uh all right so we got a multi conflict so far we’ve only dealt with one Conflict at a time that’s a small that’s small potatoes let’s see what happens when we have multiple conflicts to resolve all right so let’s switch to a new Branch off Main called delete records uh get switch C that uh and then let’s see edit customers all and delete the jesson line okay there we go deleted it edit org partners and delete the boot dodev record okay org Partners there we go boot dodev record boom Oh we want to keep the line there we go uh let’s see six let’s see switch back to main uh and edit customers oh commit the message with f we got to commit the message with f get status so I’m going to I’m going to use uh I’m going to use what’s it called fugitive for this part cuz it’s just easier and faster and you guys don’t really care about committing right what do we need to do F uh F uh uh delete those records right I just prefer that uh get check out main just makes life easier being able to use that because we can move faster there we go uh all right so we have this one so edit the ORS partner and add a boot dodev record uh to Sales Inc oh change it and change the boot to Sales Incorporated yeah yeah yeah yeah yeah yeah yeah yeah so I can go like this Sales Inc um there we go we did that one so now we should have this one and do a g there we go and uh ccg uh such Inc there we go we now have that one run and submit the test there we go wait is that all we had to do did I miss something I thought I thought we were doing multiple oh we forgot to do that we forgot to do that one we forgot to do that one Carson uh gross that’s right all right uh customers all and go Carson gross go here s there we go so I just all I did was I just did right there for those that don’t know I just did a uh I did a get uh commit amend no edit and so by doing a get commit amend no edit I simply just um I know I wrote shut up shut up it just means I merged in that change right so I merged in that change right there and I did that one you know cuz I’m not going to lie to you it is very nice to be able to use the tools I’m used to you know what I mean I don’t always do everything by the command line there we go all right so we did all that one we have these nice commits now we have these two things and so now all we have to do is just cause the conflict let’s go wait what did I do oh oh my goodness here I forgot to do that there you go I’ll show you what I did get status so I have this one get add this one get commit uh amend no edit there we go so I kept the same the same uh line just not everything else wait what am I doing wrong here Carson grow hmx Creator what I’m not good at reading I’m not good at reading okay I’ve never said that I was good at reading all right first try let’s go first try check out the conflict we’ve manually edited files to resolve the conflict but it turns out git has some built-in tools to help us the git checkout command uh let’s see can check out the individual changes during a merge conflict with theirs an ours flag while on Main merge delete records all right get merge delete records so now we should have two conflicts you can see the two conflicts right here get status you can see the two conflicts right here unmerged path both of those get diff should show each one of them having the problem right here which means that I can go like this uh how do we do this we’re going to keep theirs for customers all and keep ours for partners so I can like this get check out theirs uh that’s going to be uh customers uh all there we go so now I have uh theirs and then ours is going to be orgs uh Partners there we go so now if I go like this get uh diff you’ll notice that we have no changes everything looks good get status perfect get add this if we look at them in here you’ll notice right away there we go so that’s the deleted one that we kept and then from orgs and partners you’ll notice that we have Sales Inc from our side so Sales Inc from our side deletion from their side by using uh get checkout there’s an ours hours it’s pretty nice what do we need to do here we need to do this with an ah uh M uh H uh let’s see such uh resolution conflict you’ll also notice something else notice that orgs is not a part of any changes here do you see that there’s no orgs a part of changes that’s because that wasn’t changed by accepting my change this commit doesn’t contain any change does that make sense because that file only had one change to it which was my change so by me uh accepting it the difference between these two goes to zero it’s good to know so that’s why sometimes those things can change and it can look a little bit confusing it’s actually not all that confusing it just means that something goofed up oh my goodness how am I so bad at this oh yeah let’s go all right something you may have noticed when resolving merge conflicts is that you don’t get the standard merge uh merge commit message right no you don’t you have to manually provide a message typing uh it actually makes sense when you think about it g doesn’t know what you did to resolve the conflict and it’s encouraging you to document your change via the uh message that makes sense right I think everybody understands that uh what commit message is used after resolving that the standard one unhinged commit message for example we should have rebase instead I actually like this one that’s my favorite one but we’ll do a custom commit [Music] message now we’re going to do rebase one this one’s going to be a good one all right rebase uh full disclosure a lot of rebases bad rep comes from conflicts fear not it’s nothing you can’t handle with just a SCH smidge of practice rebasing feels scarier because it rewrites get history which means you are not if you’re not careful you can lose work in an unrecoverable way but as long as you understand what’s going on it will make your and your teams get history cleaner and easier to understand and more so easier to revert when needed it is impossible to revert your change with several merge uh merge commits and all that I’ve seen some pretty nasty ones where you’re trying to do that assignment create a new branch called band a copy of main branch and add a new file customers band all right there we go scabi toilet merch when get checkout dasb band I didn’t use switch didn’t use switch it happened it happened but we’re going to get keep on going for it band. MD is that what it was no uh band. CSV boom put it in yeah Sam Sam controlman closed AI classic really true AB absolutely actually true there we go so we have this one we’re going to do get message I so I’m going to go in here c c i uh control man there we go and so now let’s go like this get check out main do one of those and then how do we want to do here we want to have the same Sam controlman but a different but a different one of these there we go um and then jump up here and go c h oh no wait J you’re right H comes before H before I except after C’s right is that how it goes I’m on chapter 7even section four right now all right well let’s go let’s go all right so there we go so we have all this one so we should be able to run this to make sure it’s all actually the way we want it to be so I’ll go like this we’ll run this bad boy it’s going to do all this bada bing bada boom bada bing bada boom all right beautiful we are just crushing through this course okay people were feeling good make the conflict before we move on I just want to remind you that it is often uh not often that you’ll be creating your own conflicts we’re doing so because you probably don’t have any friends to practice with I don’t actually Kid Art users uh but even if you do have many developer friends let’s just make all the changes ourselves so you don’t need to bother them let’s see you switch to a new Branch fix bug which is just a copy of main while you’re fixing the bug someone else merch is there changes the domain you fix the bug and it happens to edit the same file uh you open up a poll request rebase fixing domains get tells you the conflict you resolve the conflict you uh complete the PO request this is like standard operations right we all know this one so we switch the band Branch rebase uh it into main uh which rewrites to get history of band Branch because remember it needs to add that extra commit so there we go we’re going to do that all right so we’re going to go like this get check out band right there get re rebase main my gosh we have a conflict look at that conflict oh no oh no so if I go in here I look at my status you can see right here we have problems don’t we we actually have problems all right well uh you should get a conflict you might also notice something odd this time head pointed to Mains change rather than bands change all right so let’s just jump back for a quick second and just validate this and I’ll explain why all right so notice that this should be band protagonist should be main look ate has protagonist which is Main’s change why is ours Mains even though we did a rebase on band why why isn’t hours hour change why is it Maine’s change does anybody know the commit comes from Maine no cuz that would make it’ make it theirs we move to main then replay our commits on it boom let’s go so this is from section one this is why section one is so important is when you rebase your target Branch becomes your branch that you’re on and then you replay the source branches commits starting from the merge base and forward at the tip of your target Branch therefore let’s write this out because it might be a little bit easier to visualize so this is the most important part remember so when I’m on band and I do git rebase main what happens is I actually check out main which is going to be at the tip I grab the differences between uh uh what’s it called band and Main and then I do band you know if there was multiple commits I’d actually attach each one of them to the front so that’d be like band one uh band two uh band three right so I’d get them all on there so my Branch now looks like this where the tip of main is now the new merge base as opposed to wherever I branched off before which could be somewhere in the history so that is why ours is theirs and theirs is ours during a Reb rebase conflict it’s actually not confusing if you know how rebase works it makes perfect sense it’s that you have to switch branches and then play the commits all right let’s see what happens here let’s let’s see what our assignment is switch the new branch do this uh copy of branch and add the new file customers this this this this this we’ve already done this all right there we go assignment switch to band rebase on domain while uh you should get a conflict you might also know something outd we already talked about why if you had merged main instead of rebase head would still point to band correct because merge does not swap replay it just adds or creates a merge conflict into a single point there we go that’s good to know however you kind of need to think in Reverse with rebase theirs represents the band Branch uh which in reality is our change so we’re going to Branch you’ll notice that you’re not on a branch that’s right that makes perfect sense right because remember it has to create this no Branch situation where it takes Main and then starts applying commits to it so you’re in a no Branch situation right there we go bam look at that look at that confetti man first try first try uh the same get check out theirs and get check ours uh commands we used in merge can be used to resolve conflicts during a rebase you may have also noticed that if you open the file in your editor depending on your editor uh it has UI features to help you resolve the conflict yep so this would be uh VSS codes accepting incoming changes is the same as checkout theirs accepting current changes is the uh is the same as get checkout ours that would be in theirs I don’t know how I don’t know how to use I don’t know how to use vs code all right assignment uh use the appropriate get checkout command to overwrite the band Branch’s changes with the changes from Main so since it’s main that we want get uh status get checkout out hours our Branch remember we’re ding main all right there we go uh let’s see then hit him with the rebase continue get rebase continue There we go and then we get logged to see the new commit history get log look look at how good that looks look at that look at how good that looks all right you may have noticed something did anyone notice that I was gone why was I gone so theirs is main no ours is main during that situation the the number of rules indicates that this isn’t intuitive no it just means that it can be potentially complicated anything that is sufficiently complicated requires you to learn if you only worked on things that are intuitive you would never use recursion like that’s that it has nothing to do with it being the the number of rules have no indication whether it’s intuitive or not understanding the underlying reasoning why or what happens makes it intuitive to understand I understand how you or rebase Works therefore ours versus theirs is intuitive to understand but that’s because I have a understanding of what’s Happening expected a state to contain this way H uh Branch oh I’m not oh I haven’t uh oh uh get rebase continue oopsies did I not get status did I not there we go we’ve continued it gets status awesome all right let’s do this perfect we’re in we did why did the deleted command what happened why was I gone so for those that don’t understand so why where’s I why is I not in here the reason why I is not in here remember this is that I was a change where deleted deleted a specific record and what we do we ignored that one change by ignoring the one change that I was we’ve dropped the entirety of the record since the there is no like there’s no empty commit when the commit is empty the commit is dropped right yes we are working on the band Branch we started a rebase of band onto Main meaning we’re rewriting the history of band to include all the changes of main we effectively removed all the changes of the I commit by choosing to keep the changes from Main instead of band we continued to rebase and get realized that the I commit was pointless because we’re rewriting history anyways just remove it there’s literally nothing in it right there’s no I in team that’s why if our if our changes had been more complicated say we kept some of the changes from I commit and overrided others then git would have kept I in the commit history why did git remove our commit because this is Mega Corp and we have a strict no commit policy uh because rebase is scary and it should be avoided at all cost because it was a essentially empty and rebase is okay with rewriting history bada bing bada boom there’s nothing to commit there’s nothing there it’s just making life easy right uh what if the only part of the commit had been undone during the rebase comp what if only part of the commit had been undone then the commit would have still been let’s see would have still been removed no the commit would have remained in the history let’s let’s go on to this one okay let’s clean up our branches remember during these uh during the rebase of band onto Main we actually discarded the changes of band which actually means that band is now just identical to main anyways so yeah so we’re going to switch back to Main and delete uh band right uh get check out main get Branch D band there we go all right so let’s delete some branches we’re going to delete uh get a branch okay we did that one and now let’s go over here let’s go there we go all right let’s move on all right disable re well uh we it should have already been disabled this this section does need to technically go back cuz already did a local one of those uh I here I think I don’t think I deleted this I’m not sure if I even have it but here I’m going to get rid of it just in case right repeat resolution setup a common complaint about rebase is that there are times when you have to manually resolve the same conflict over and over again this is especially prevalent when you have long running feature branches and even more likely multiple feature branches that are being rebased onto Main re re re to the rescue the get re re re functionality is a bit of a hidden feature by the way this is directly from G sem can you believe that one of the most useful features of all time is just hanging out uh here hold on uh get R re re there we go let’s go get SC look at this functionality is a bit of a hidden feature wait you’re telling me I didn’t have to resolve it every time yikes the name sound let’s see stands for reuse recorded resolution as the name implies as the name implies it allows you to ask G to remember how you resolved a hunk conflict so that the next time it sees the same conflict G can resolve it automatically in other words if re let’s see if enabled a re will remember how you resolved a conflict applies to rebasing but also merging and will automatically apply that resolution the next time you see the same conflict pretty neat right am I right all right assignment create a new Branch off of Main called faves all right good check out B faves didn’t use switch suck it new commands create a file called uh faves. MD with the following contents let’s go uh jump back in here go here go here wait customers okay customers uh faves faves. MD there we go cool uh commit that with message K create a copy of faves branch called fave 2 all right here we go uh we’ll go in here we’re going to go here we’re going to CC we’re going to K uh ma faves is the uh heisen right boom boom get check out dasb faves 2 so now we have the same Branch twice okay okay the same Branch twice all right now we’re going to switch back to uh Main and create a file called faves with a different content all right here we go get check out dashb main get U Manny main oh crap I created Manny get check out main get Branch D Manny got him first try uh and then go in here and put and put that in there and get status get add this get commit dasi what is it called should be with an L take the L take the L bam all right so now we have these right here we have main on L faves on K faves 2 on K the the changes from L and K naturally conflict run the test let’s go we’re going to run the test we’re running the test let’s go we’re running it confetti out of my mind are you ready for the confetti out of my mind enable the re re feature by running the following command all right so I’m just going to like this get uh get config unset local re re re enabled cuz I have a get conf config uh list grip re re re there you go I already have it globally true for everything because I like the setting switch to faves and rebase it on to main all right get check out uh faves get brand or get rebase main there we go so notice this we’re going to do this conflict we’re going to be doing this recorded pre-image for customer there we go we’re getting ready we’re re re reing okay so we have a conflict let’s do this let’s solve this conflict notice out let’s see hold on accept both changes all right let’s accept some changes okay e yes yes yes changed get add this get rebase continue all right so now what are we going to do with the naming um stage and rebase leave the commit message as K all right boom got it note that git May automatically open a file on your editor in which you can edit the commit message Simply Save and close and continue when you’re done you should see something like this so you should notice that we should see something like this recorded resolution recorded resolution yeah we’re read out of our mind we’re read out of our mind now switch to faves 2 and rebase may it on to main all right get check out faves to get rebase main now look at this we have a conflict but it’s already resolved right it’s already resolved because we already we already resolved this specific commit so now we don’t have to resolve it again it already knows what to do it already knows what to do so now I can just I can do the exact same thing I can do the whole get uh rebase continue so R is really really nice because it’s one of those things that if you do it right it is uh fantastic uh why is re disabled by default because it can lead to confusion so if you don’t know what it is it’s probably dangerous to have it created what’s foot comes with Riri let’s say you have a change that results in a conflict but you want to resolve it differently but instead it automatically resolves it for you you could feel pretty confused right so that’s why it’s nice to have it as a feature you opt into because that way you don’t accidentally screw it up all right let’s go on merge back in PH now we have two branches faves and faves 2os that are ahead of Main in the same way we don’t actually need both faves and faves 2os so switch back to main try deleting fave 2 with lowercase D flag now actually delete it with capital D we’ve already we’ve I think I’m not sure if we’ve actually done that get check out main if you don’t know if you go if you try to delete a branch that ends there it terminates uh your commit history it’ll be like yo um You probably don’t want to do that and so you have to give them the old you have to give them the old capital D and when you give him the D it then does it then merge faves into main this should result in a fast forward merge deletes the faves Branch there we go get merge faves get Branch d uh faves boom let’s go grab it paste it all right accidental commit uh you know uh how let’s see how with merge uh conflicts you can commit the resolution but with rebase you have to do continue dude I’ve done this so much in my life I cannot tell you how many times I’ve done this dude I know I’m telling you which is me telling me I cannot help this one how do you undo that dude get res dude this is the greatest thing in the universe right there this solves that problem if you ever accident you’ve never done it really oh my gosh when I re when I when I get when I get rebase when I when I resolve a conflict I do get ad dot it immediately I go get ad rebase or get or get commit Dash app and I commit it and I’m like and I just hate it but if you just do a reset soft remember a soft takes the commits changes applies them to your work tree and moves your branch back once so you get all of your you get your rebase right there now I believe this has been largely fixed I believe now you can actually do a rebase uh continue even after you’ve committed it and it just works you just get that you get that new message instead before it used to not work I love this one why does get reset help you if you acent commit during a rebase because you can undo the commit and continue the rebase yes exactly that’s why I love it okay we’re going to go over a quick bit of squashing okay every Dev team will have different standards and opinions on on how to use git some teams require all poll request to contain a single commit While others prefer to see a series of small focused commits if you join a team that prefer single commit you’ll need to know how to squash your commits together to be fair even if you don’t need a single commit squashing is useful to keep your G history clean yes and it makes it easy to revert again if you have a feature that could be dangerous in production and it’s spread out over 12 commits that have like 18 merge commits it is really really annoying versus just having one commit at the end score squash it easy to put in easy to pull out okay what is squashing exactly well sound let’s see it’s what it sounds like we take all the changes from a series of commits and squash them into a single commit okay all of them A B C D to ax easy assignment let’s get ready to squash some commits push your current changes up to your forked repo on GitHub just in case your machine goes swimming don’t skip this okay here we go get push origin origin main go all right uh create a new Branch off Main called temp main get check out temp m-b let’s go all right so now that we have that we do all this let’s go let’s go we’re back in um to be completely fair I I mean I am just absolutely I I have what someone oh get checkout DB temp main yeah there we go all right how to squash perhaps confusingly squashing is done with get rebase command it may not be intuitive but remember re base allows you to apply or reapply history this will make sense more here’s the uh steps to squash the last end commits start an interactive rebase with get rebase head uh or slash or Dash ey I think they call it tack ey in the military get rebased hack I head till the end where n is the number of commits you want to squash get will open your default editor with a list of commits change the word pick to squash or S save and close the editor the I flag stands for interactive and allows you to edit the commit history before get applies the changes head till the end is how we reference the last end commits head points to the current commit there you go does that make sense uh why does rebase squash remember rebase is all about replaying changes when we uh rebase onto a specific commit end till the or head till the end we’re telling get to replay all the changes from the current branch on top of that commit then we are using the interactive flag to squash those changes so that rebase will apply them all in a single commit assignment Mega Corp Executives do not like your last few commits as a result your manager told you to squash the last three commits J L and K into a new single commit message J redacted squashing is destructive operation which is why you’ve decided to make the change to Temp main before moving it to main while on temp main squash these three don’t forget to pick or squash it and edit J redacted let’s go uh so I’m going to go like this get rebase or first get log so we want to go all the way to J so 1 2 3 uh get rebase I head 3 Let’s Go so I always go like this there we go you’ll notice right here it says it right here that you can do that s stands for squash use the commit and meld it into the previous so that means s uh go let’s see how does this go it goes this let’s see this one goes into the previous and then this one I forget how exactly how these things end up but either way it ends up it ends up good I forget the exact merging order uh redacted right there we go there we go so if I go get log uh one line you can see that J is redacted and the rest are all right there perfect right but they still can change the change set so if I go- P it still has the whole change set it just doesn’t have uh what’s it called it just doesn’t have the individual commits all right override now that temp main is in the state you want and hopefully you verified that with Git log we need to do uh what the boss asked delete the main branch rename the 10 Branch into main ensure that t main branch is gone resubmit now obviously this is a very dangerous operations we rewriting public history we’re doing it just for fun because hey why not uh but we’re doing it okay so don’t don’t do that by the way Branch delete main get check out um get oh don’t actually do uh temp main main this is this is dangerous okay there we go we did some naughty stuff we squashed main which means that because our remote main branch on GitHub uh has commits that we removed git won’t allow us to push our changes because they’re totally out of sync git push has a command called Force flag which allows us to override a remote Branch with our local branch it’s very dangerous but useful flag that overrides the safeguards and just says make this Branch as same as the branch so by doing this we’re actually changing that stuff and that could be obviously you would never want to do this to a main okay just so you know go ahead and force push your local main to the branch on remote main uh I know by the way you should never actually do this okay this this is this is crazy okay squashing is scary when you squash commits for example ABCD and you into a single commit you’re removing history from a project so all the changes are still there but the individual markers of each changes are gone it’s one big commit now in the last few lessons we erased all the commits meaning we can’t go back to the individual checkpoints anymore or you can’t go back easily we can still use git plumbing and reflog to actually rehydrate everything and reput it back into it we can but we’re just currently not doing that when you squash commits you lose history of the individual commits that’s what happens you can still get it back it’s just that it’s just non-trivial right when you squash commits the content stays the same correct the content stays the change it’s just that you change the commits yeah never squash Master never squash master I put that in there so I could talk about it and why it’s crazy we did some weird thing squash commits to m now let’s do a common thing squash all commits on a feature Branch for a poll request if your team prefers single commit poll request we will likely be your workflow create a new Branch off Main go about your work when you’re ready to get your code into main squash all your commits into a single one push your branch to the remote One open up a poll request merge it uh once it’s approved all right assignment first let’s just do points one and two Mega Corp needs to add a new feature to the content management system specifically they need a script that will automatically scan for sensitive information in the repo create a new Branch add scanner off of Main all right this is where things are going to get a little bit wild here get Branch or uh check out dasb I know it’s switch I can’t I don’t want to do it I don’t want to do it I’m too much of a lite um all right in the scripts directory there’s a file called scan sh replace uh the to-do comment with this all right I can’t help it okay all right in the scripts uh thing scan f8 write the script there we go we got it um all right there we go we have that one run the code from the root repo all right look at that we have oh my gosh we have so many social SEC or credit cards so many co credit cards just flying everywhere finally now we can do social security numbers add another few lines to the script all right there we go uh run the script again to ensure it works oh did I not oh I forgot to commit oh I forgot to commit I forgot to commit hold on k um uh credits there we go wait why isn’t that working oh did I did I actually delete oh crap all right there we go now we can paste this in there we go all right there we go so now I can go CC and this one should be J right this should be L yep okay so this one will be L um this one will be uh Social Security numbers my bad my bad I accidentally did that one out of order now we should do phone numbers there we go add add one for phone numbers added it for phone numbers there we go there’s some phone numbers in there CC uh and this is HJ K LM uh phone numbers there we go looking good run the script one last time make sure it works there we go all right I actually uh I accidentally uh I accidental your commit I know happens there we go all right so we got ourselves set up for this nice next one squash series remember the full workflow we’re going to be doing which we already talked about this creating your branch making your commits squashing it making the pull request let’s tackle point three squash uh KLM into a single uh new commit starting with k remove L&M all right so do it again get rebase I head till the3 do these ones uh SS there we go and go into k there we go Bam Bam Bam Bam got those two uh we are rewriting the history of our own uh Branch let’s see to make it look as if we did all the work in a single Commit This is normal and fine because it’s our Branch yes it’s our Branch now it’s okay to do right now it’s okay before it wasn’t okay to do and we did it on Main which we shouldn’t have done it on Main but it’s give me something to talk about give me a reason not to do that our Branch all right so now we’re going to do four and five uh use get push to add scanner and open a PO request all right get push origin uh add scanner there we go we’re going to do that and we’re going to go to back end we’re going to go to GitHub the prime gen which update Mega Corp and there we go P requests new pull request add scanner let’s go create pull request create it let’s go looking good looking good oh my goodness how do you not have my repo name I thought you had it all right I’m just going to copy that one and bring it back in here and go the primagen there we go and run all checks oh am I doing it oh uh to main on your mega Corp oh crap I did on I did it on your mega Corp I didn’t read the instructions good I in fact did not read good instructions here I in facted terrible instructions reading there we go uh apparently I can’t change uh where my remote is pointing to which is kind of weird that’s fine GitHub the prime engine um mega Corp there we go so I effed it up I effed it up apparently the UI doesn’t let you change the base reading instructions are required for squares yeah losers add scanner there we go sorry the previous one didn’t require me to required me to do it on a different one so it got me a little bit confused all right there we go merge the poll request remember we did all that one now let’s tle pack point six merge your pull request from uh ad scanner into main you can also do so by clicking the Big Green merge request button uh when you’re done you switch back to main branch locally here’s the scary part delete your local ad scanner Branch pull the latest change it from Main and your local main branch should have a now commit K yeah some people get freaked out it’s okay when you have centralized merge stuff it’s not a big deal hit the big green button confirm the merge get check out main get Branch Big D delete add scanner right boom get it out get uh pull oh my gosh I didn’t set I didn’t set that there we go get pull my Branch wasn’t pulled there we go look at that good yeah there we go we got the energy we got it all done absolutely fantastic it’s all in all right wait did that mean I did it [Music] okay stash all right so now we’re going on to stash are you guys ready for some stash all right you’ve been at Mega cor for a while three whole days and to your mother surprise you’re still employed here’s the workflow you’ve been using as a junior developer commit some let’s see commit some changes to a feature branch open a poll request from that feature Branch to Maine check out the new feature branch and and start back to the next task today however is a big day all right today is a big let’s see big day let’s see the customers are complaining about a critical bug and the CEO saw you first she asked you to drop everything and fix it immediately but you’ve got a bunch of unstaged changes that you’re not ready to commit yet and you don’t want to lose what do many git noobs would create a second clone of the git repo at this point a huge mistake you’re better than that that’s right you are better than that uh the get stash command records the current state of your working directory and the index staging area it’s kind of like your computer’s copy paste clipboard it records those changes in a safe place and reverts the working directory to match the head commit the last commit on your current Branch to stash your current changes do get stash yeah and stash list to list your changes don’t look at that my stashing workflow looks a little something like this I usually have some amount of work that’s in my index or my work tree and I get a request in that says hey can you please investigate this bug or hey you need to pull in the latest changes because if you pull in the latest changes the feature you’re developing will have a couple extra apis that you need which means I’m going to have to take my changes create a commit pull in the new changes finish off the change I wanted to make create another commit then squash those two commits into one or I could just stash my work tree and my index pull in the changes and then pop off my stash when I need to get back to doing what I was doing and finish the change I was trying to make now the the times that I don’t do that approach the times that I don’t choose stash which often I do is whenever I had to pull in a change but I’m already in several commits into a change I’m trying to make typically I try to keep my changes pretty small but every now and then you’ll have like a thousand line change and whenever I have a big change like that I try to make small commits along the way as nice checkpoints in case I screw something up so bad that I can just roll back to the last known working commit and then start again so if that happens I simply make another temporary commit rebase in my changes and then at the end of everything I’m doing I already have worked in that I’m going to squash everything down to one commit anyway so it doesn’t bother me all right assignment while on Main update readme.md in the root of megga Cort repo to do this one B bam just after updating read me uh that the CEO approached you stash the changes once you’re stashed make sure that they are uh safe in your list let’s see they are safe by listing now it’s okay you would be able to single see a single stash list okay all right um let’s go into here let’s go to read me uh let’s let’s see let’s delete that and go to this one there we go GS we have look at this look at this we have our read me but bam we got to stash some changes so I’m going to jump in here and go uh so for those that don’t know get stash all it does uh is it takes whatever you were doing and puts it into like a special area it’s kind of like uh it’s kind of like it it’s kind of like a commit uh so if I look at get status you’ll notice there’s nothing there get stash list uh you’ll notice that there is one right here if we go get stash list I believe it’s- P you can see the change right here right it’s just like a special place to be able to put changes for a moment I never use it longterm if you use it long term you’re crazy don’t do that that’s absolutely nutty to do right absolute nutty to do all right stash has a few options get stash pop list the pop command will by default uh apply your most recent stash ENT to your working directory and remove it from the stash list it is effectively UND does the stash command it gets you back to where you were this is called a stack and that’s important okay pop your stash change back out you should see it working get stash uh pop so it’s a stack and that’s really really important to know because if you push two things on top of your stash you will have your latest one on top the stash command stores your changes uh in a stack Pho data structure also I wouldn’t say uh I wouldn’t say Pho okay I’m last in first out I’m more of a lifo kind of person Lane again your copy editing hurts my feelings here I’m a lifo not a pho or not a I’m a lifo not a pho yeah for sure that means that whenever you retrieve your changes from the stash you always get the most recent changes that’s true bada bam uh Pho is greater than lifo W Lane false all right stash is a collection of changes that you have not committed they might be raw working directory changes or they might be stage changes both can be stash for example example make some changes to your working directory stash those changes make some more CH let’s see make some more changes without stage them stash all of that when you do that the stash entry will contain both staged and unstaged changes and both your working directory and index will be reverted to the state of your last commit it’s very convenient way to pause your work and come back later git stash is a very convenient feature of git in which allows you to store your index and your work tree into a special area known as the stash and then later on to be able to pop off those changes and reapply them to your work tree /index but what is the stash well it’s a data structure that is a stack so every single time you have a change to your index SL workor tree and you want to save it for later when you call G stash it actually creates something that’s like a commit and adds it to this data structure pushes it onto the stash stack any files that were not a part of your index slthe work tree will simply be ignored when you call get stash pop it’s actually going to take the last thing that you added to the stash and apply it to your current work tree /index X that means if you stash three changes a b then C if you pop something off you’ll be popping off C then the next time you pop off it will be B then the final time you pop off it will be a if you’re unfamiliar with a stack it’s actually pretty simple think of a stack of plates if I add a plate then add a plate then add a plate if I wish to remove a plate I would never try to grab from the bottom IID just grab one from the top then the next one then the next one Whatever order you put in is the reverse order of what you take out in other words it’s a last in first out data structure you can inspect your git stash by simply executing git stash list which will show you in the order in which you pop out your stashes often I use the stash in a very one-dimensional way I have some changes that I need to pull in from Main so I’m going to stash my current changes pull them in pop off my current changes and continue on my work I never use the stash as like a long-term storage place just because my code changes so fast that it often gets out of date super quick what is not staged unchanged uh unstaged changes to the track let’s see to the tracked working directory stag changes committed changes you can’t stage a commit okay you can’t triple triple stamp a double stamp if you push three sets of changes into the stack let’s call the first one a the next B the last one C what happens when you run get stash pop the changes from C are applied to your working directory but the stash entry is not removed the changes from c i remember clicking this last time it got me this changes from C are applied to here working directly and the stash entry is removed let’s go multiple stashes you can stash changes with a message I rarely use stash in fact I never use stash messages that I can remember I’ve used it like once or twice the big reason why I don’t do that is whenever you’re doing this this means that you actually want to come back much later which to me just says this needs to be a branch in which you keep somewhere and then you can edit the commit if you want to you can rebase the commit uh for me stashing is a very very like temporal operation assignment restash the changes to readme with the message good marketing update the readme uh file again with the following contents right get stash uh message uh good marketing boom right and so we’re going to go back here and I’m going to go delete and I’m going to have this one there we go now let’s see stash those changes with bad marketing uh get stash bad marketing there we go and now we should do a stash list get stash list you can see these two different ones right here so that means if you add a p in here you can see the difference unite Marketing sales and service in a single app try Mega Corp starter Suite today there is nothing uh to install no credit card required the only thing standing between you and more customers are you are your terrible salespeople get started today it’s a pretty good that’s a pretty good one that’s feels good feels good all right so there we go all right unrelated commit now that you’ve safely stashed your current work let’s tackle the CEO’s urgent matter CG uh Mega corpse APO script or shell script truly is a feet of engineering it behaves exactly as the shell borne shell language but with the word let’s see but if the word shell or sh is ever mentioned in the standard out it will replace it with APO it’s a feature that customers love but it’s not working let’s see test by running scan with the APO language for Shell there we go we’re going to grab this one there we go so you can see it right here it’s all right there okay uh the grap command let’s see the grab command should filter out the output to the lines that contain sh uh you should see a couple lines which means APO sh isn’t doing its job uh the culprit is this line yeah yeah it should be replaced with SH not bash all right we’re going to update the script we’re going to update the script right all right let’s update the script man customers love just the craziest things huh uh scripts Apo there we go wait a second there it is we got the Apex okay you’re right get status get add this get commit get commit L the L stands for lovely reading the primin there we go all right now that we got that apply without removing from the stash so you can actually do that I’m not really sure the purpose of this but it does exist uh you can apply without or you can you can remove from stash without applying this makes more sense Lane W Prim L yeah I know it happened reference a specific stash so you can actually do it in one of these locations with the at sign so that means we probably we’re going to have to do the one run uh get stash list see what uh see the stashes you have apply the changes from good marketing stash index without REM moving it from the stash list so we just have to do a little apply do one of these bad boys get stash list um paste that in there one there we go uh get add your changes to the index drop good marketing stash pop the only remaining one bad marking you should notice that you have a conflict resolve it by keeping the changes from good marketing stash commit the changes M all right let’s do that uh get stash drop um stash uh at one there we go get stash or get add this get stash pop wait oh whoopsies uh hold on get what happened get status did I miss what happened here uh Vim read me there we go I missed the message that said it it did the wrong thing so there we go I’m going to remove the bad marketing one call it a get I missed the conflict message how did I miss that oh it’s right there it was right there the whole time I just missant again it’s that reading thing you know what I mean okay it’s that reading thing that really gets me [Music] okay all right revert when reset is a sledgehammer revert is a scalpel uh revert is effectively an anti- commit it does not remove the commit like reset but instead creates a new commit that does the exact opposite of the commit being reverted it undoes the change but keeps the full history of the change and it’s undoing so it’s kind of like the Spider-Man thing you know I mean grug reading for a living but grug no read yeah I know it’s sometimes you feel right all right to revert a commit you need to know what commit the are the commit hash of the commit you want to revert you can do it with Git log all right and once you have it you do a little get revert hash with a committes assignment uh in your great haste of pursuit of greatness at Mega Corp you forgot to write a white paper and get approval from the l69 distinguished staff architect for your marketing documentation change the l69 has requested you revert the change and sure you are on Main revert commit M it should prompt you to write a commit message and we’re going to call it n let’s do it all right so we’re going to go like this uh get log one line so what do we need we need this guy right here bam get revert that one and save get log on line you can see right here here looks like this get log um on line- P2 so look at this you can you can see that it’s literally the inversion of it the starter repo for the G course 2 that one removed it this one added it back this one added this this one removed it this one added that that one removed it so it’s like an inversion so that’s what a revert does it literally does like an anti-matter commit to your history and then it turns it into a commit so you actually have it as a part of your graph Oh shoot that’s not right right that’s not right that’s not right did I mess that up I must have messed that up yeah see it says get revert M okay that’s my bad uh get commit uh amend all right there we go that was my fault that was my fault still doesn’t read I still I literally cannot read the get diff command shows you the difference between stuff differences between commits and the working tree Etc I frequently use it to look at changes between the current state of my code and the last commment um I use it to look at I I primarily use it to look not at that I primar well I mean yes actually that’s exactly I my current state sorry that red funny what my current changes are I rarely use it for uh staged stuff if you want to do stage you have to do dash dash staged uh show the changes between the working Tre the last commit uh you can do that you can do difference between branches you can do difference between two hashes I’ve tried to do this for bigger ones in bigger projects once you get to a certain size it’s like impossible diff the changes between n and M commits remember n is the version of changes and paste the full output in here get diff uh a head till one I believe is all I need to do I think I can’t remember submit boom yeah there we go bro do you even diff I diff I diff okay just copy P into notepad Plus+ with the differences extension wait what why would you do that revert versus reset reset soft undoes the Comm but keeps the uh stage changes undoes the commit and discards the changes revert creates a new commit and undoes the previous commit there you go when to reset if you’re working on your own branch and you’re just undoing something you’ve already committed say you’re cleaning everything up so you can open a poll request then get reset is probably what you want however if you want to undo change that’s already on the shared branch especially if it’s an older change then get revert is the safer option it won’t rate any history and therefore you won’t step on your co-worker toes don’t look at that don’t look at it when do you use reverse versus reset well they’re actually quite different operations so you just need to understand them fundamentally and it’ll become obvious when you use one versus the other whenever I use reset it’s because I want to be able to take a commit undo that commit make some edits and recommit and in the case of get reset hard I actually just want to throw away that commit this means I’m working on my own Branch not on a branch everybody else uses I’m able to edit the history and get it into the way I would like it to be whereas a revert is more for the public Branch what this means is that you have a problematic commit and you need to be able to remove that commit but you could never do that to a public branches it’s going to break everybody so instead you make like an anti-matter commit right this commit contains changes a this one reverts changes a and this also has the added benefit that if you want to go back in time you can go back to a and actually fix the bug and then reintroduce a along with its bug fix now I find that I revert when I’m on a larger team because often you’re in this position where where somebody needs this change to go out such that a new customer feature or a new Ab test that’s high priority has to get out but your changes have broken the build and we’re not discovered until we released into production so we need them out right away there is no waiting there is no waiting to fix forward so therefore you simply revert your commit fix the change create a new commit with the fixed code and all the changes back in and then next release your code can go out and hopefully it’s not broken but if you find yourself reverting a lot it’s likely because you have a pretty unhealthy process your cicd is not up to Snuff your tests aren’t quite there your automation is no good production is the ultimate place to test but it should not be the only place you test which creates a new commit revert let’s go Which rewrites history [Music] reset all right there we go cherry pick everyone loves cherry pick this comes a time in every developer’s life when you want to yink a commit from a brand but you don’t want to merge or rebase because you don’t want all the commits get cherry pick is another one of these very useful git operations but you infrequently need to use it cherry pick is when you want one change from a branch but you don’t want the entire history of the branch you only just want say a singular commit or two commits Where cherry pick is obviously useful is when you have a branch that’s called release and then you have your main development line every now and then release gets cut and that Branch gets updated now let’s pretend you’ve been going in their there’s hundreds of commit in Maine but we discover a bug in production well we can fix the bug in Maine and then just transfer over that one in singular commit to release and then reproducti release thus fixing the bug but we don’t contain all of the changes from Maine because those changes are largely untested or may they contain half-baked features that are not ready to go out quite yet so This Is Where cherry pick Works a switch to a new Branch off of Main called ad Partners update the partners organization to be this one commit the changes with o update the same file again with P all right let’s do that uh all right get Branch let’s see what branches I have all right cool get uh check out dasb still not doing it still not using it Lane was just like we should use switch and I was like dude I’m all About That C about that c get check out I just didn’t I can’t help it I can’t help it I I just I just have to all right there we go won’t sub if you don’t use switch nope then don’t sub I’ll ban you how about that one how about that one tough guy get commit d o okay the setup we’re going to do the setup my face oh than wait yes so now we got to do p all right uh Vim Partners uh dap paste let’s go here get status get status get add get commit dasp on the electric fence huh little call back to Ren and Stimpy I think I spelled fence wrong whatever that’s close enough you know what we’re close enough that’s a little Ren and Stimpy call back okay it’s been a long time since I’ve watched some Ren Stimpy okay close it enough all right what theme of V code is this you know exactly what theme it is can read nor write all right how to cherry pick uh first you need to clean uh clean working tree no one committed changes identify the commit you want to cherry pick typically with get log is a good one run get cherry pick commit or commit would be better get log to grab the first uh of the two commits we just made oh that’s the one we want get log there we go I’m going to grab this bad boy my oace then we’re going to go in here cherry pick o on to main ensure that it let’s see it worked by checking the partners one delete add Partners boom get Cherry uh pick that oh I just did it onto my own thing get uh get status it uh I didn’t even change branches uh abort abort abort boom oh my goodness I have a revert in Pro oh my goodness wait how am I how do I have a revert in progress how did I do that okay when when when did I do this all right hold on uh get log all right so I have the revert right here all right so that’s already been committed so that’s not a problem get uh get Branch we have our two branches I’m on Main uh let’s see no Cherry pit oh I have a board am I actually calling aort oh dude I’m so stupid I didn’t even see that I was doing aort okay I am really not reading it’s been a long day I don’t know if you guys know this but I’ve been streaming for track hours nine hours okay it’s been a long day all right there we go so I moved over this right here so I can go get log DP so we can see right here closed ml one of our favorite startups right can’t even read the timer okay shut up shut up it’s been so long I’m not good at doing this much this much stuff at a time all right we need to delete the ad partners get uh Branch delete ad Partners there we go the man’s losing I’ve lost it I fully lost it I’ve lost it I’ve lost it let’s go first [Music] try oh yeah we’re up to bisect do you like bisect you guys you guys want a BCT all right so bisect is fantastic let’s do this okay let’s do this get bisect is yet another get command that does sound quite intimidating to the uninitiated but once you learn how works it is actually quite simple get bisect allows you to find a commit in which introduced a bug really fast and it does this by using a technique called binary search let’s just pretend that we have a branch that has many commits on it our latest commit contains a bug and a 100 commits ago does not contain the bug how are you going to find when the bug was introduced well you could go step by step through it until you find where the bug’s at but that would be tedious if it takes couple minutes per try it could take all afternoon or multiple days but since commits are ordered by time in which they are merged we can actually pretend they are an ordered array and do a binary search across it so this is how git bisect Works let’s pretend that we have a known state that is bad and a known state that is good and we have a bunch of commits in between all of this we’ll call it X amounts of commits if we test the middle commit and let’s pretend we found this middle commit is good we know that all of this is good in other words we’ve cut our space in half we have x / 2us 1 left commits to check and if we repeat the process we can continue on finding smaller and smaller regions to go check for our commits if we find one of these are actually bad then we know that all of this direction is bad and we repeat this process until we’re able to find a singular commit that is the commit in which the bug was introduced if x was a th000 it would approximately take us 10 checks to find the bug and using git bisect is really simple you set the good commit you set the bad commit you say start and it will start doing that exact same process of cutting the known space in half asking you if this commit is good or bad if you answer good then it knows all the commits earlier are good if you answer bad it knows all the commits that are ahead are bad this can save you days of searching so we know how to fix problems in our code we can either revert the commit with a uh the bug this is more common on large teams or fail forward by just writing a new commit that fixes the bu this is more common on small teams well it’s if you have the time that’s the this is the ideal in my head is to be able to always fail forward right that is my favorite uh but there’s another question how do we find where the bug was introduced that’s where get bisect command comes in instead of manually checking all the commits that’s Big O O right Big O N I mean get bisect allows us to do a binary search which is login so that means after like what 10,000 it’s only 14 checks it’s the way to go so if you don’t know how to do bisect you bisect is fantastic if you’re working on a slightly old code base that has thousands or hundreds of commits right all right let’s see BCT isn’t just for bugs you can do anything so the nice part about this is anytime you have a change you’re looking for and you have a script that you can check then bi sector can be used to find where that say Improvement and performance Improvement was Ed introduced performance uh regression was introduced anything so bisect is fantastic the B the purpose of bisect is to split the repositories into two separate repositories split the commit into two find a commit that introduced a bug or change say it that way uh a commit to find a change that was introduced there are seven effective steps to bisecting that’s it there’s only a quick seven now you know you know me from reading right am I right you know my skills at reading so we’re about to go deep on this one okay yeah yeah all right start the bisect with get bisect start select a good commit select a bad commit uh get will check the commits between them and find it execute uh get BCT good or bad to say the current commit is good or bad uh loop back to step four exit with this one get bisect receip or uh reset there we go assignment your boss just chewed you out because the scan a sh script should never have been added to the repo not only does she want the contents of the script erased but she wants to know when the script was added and for you to fix it with get revert so the history of your Royal screw up is preserved considering you can’t remember when you wrote the script you decided to use get bisect start BCT you know the head commit is bad so Market is bad you know the first commit a is good so mark it as a if the script content is pres uh present not just a to-do comment Mark the script as bad otherwise mark it as good repeat step four until get bisect completes it should give you the hash of the commit all right so this should be pretty easy do you understand here right boss should have been in code riew yeah I know boss boss yapping but boss wasn’t wasn’t reviewing that’s what I’m seeing right now people lot of yapping not a lot of looking uh all right let’s see revert the commit that introduced the script with commit message P am I right am I right all right so let’s find out when that happens so we’re going to go like this I’m going to do the following I’m going to go get uh Buy uh um start right so we’re going to start it waiting for both good and bad commits so I’m going to go get a BCT uh bad so that just says oh did I BCT there we go I literally could not see the difference there bad so you don’t actually have to provide a commit if you want to use the current one so there we go I just used the current one uh get log one line go all the way down to the bottom get uh BCT good we know is somewhere right there so now notice that it has six rever Visions left uh to test after this roughly three steps so we can go we can go cat uh scripts scan word count line all right so there is one line so this was just the to-do right so when it has one line it is the to-do okay so that would be get bisect good we like that one this one has 10 lines so that one’s bad this one’s bad all right this one’s so this one’s also bad all right this one’s good I’ll explain what’s happening in more detail here for a second there we go you can see exactly where this has happened and you can even see right here K credits so all right I think this is good uh get log DP this thing you can even see right here this is where the changes were made to the uh scan script so what actually happened there it’s actually not that bad you can imagine that at a that’s our first commit and I forget what our uh head is right whatever commit that was head how a bisect actually works is that remember each Comm has an ordering to it this is an ordered array therefore the ordering of course being merge order or it’s going to be like say time and so that means we’re going to go b c and all the way up to head that means if we check the middle element and it’s bad that means this entire side is bad but if we check the middle element and it’s good that means this entire side is good so since the first one was good we know that all of we know that all of this let’s see hold on shoot which one is that if we know this one was good we know that the rest of these were good right here so that means we went in the middle of this one so then when we checked here and it was bad we knew that all of these were bad so then we went into the middle right here and when we checked this one since it was bad as well we knew that all these are bad so we went and checked right here and since that one was good then either the one right after it since there’s only one commit left between these two it was able to say that this one was the bad one it’s a binary search that’s effectively what happened right sorry for my fairly shoddy explanation but that’s all it is bisect is really simple right it’s it’s it’s really easy you can think of this like an ordered array imagine you have an array that goes 1 2 3 4 5 6 7 8 and you wanted to find out if it has the number six well what you could do is if this is zero and this would be uh8 right the ending it’s of length eight you could do 8 minus 0 ID two which gives you four and you can check this one is this six no it’s not is it greater than it is since it’s greater we need to check this one okay that means we need to update our lower bound to this one so now that’s going to be three 0 1 2 3 we still have eight as the length so we do it again what is 8 – 3 / 2 which is going to be what two 2 and a half two then add it to three so we got to go to five which is going to be four five is this one it yes it is we’re done say we’re looking for seven then we do the exact same thing again which we’d have to go to Five 8 – 5 is 1 divide by two that or that’s three divid by two that’s one add it to one all right seven check here is this it yes it is good so that’s all it is it’s pretty easy um binary search is really really easy to do right and it’s great it’s actually really really great so that’s all bisect was doing was that so now that we have that we’re going to go like this uh get uh BCT uh reset oh my goodness BCT I I I can’t read that word get uh revert that one p there we go sounds like successive approximation well whenever you have an order you can search the space more efficiently given an input if you don’t have an order you cannot search space efficiently that’s why things like uh that’s why eventually you just have to do a linear search through everything if you have no order linear is quote unquote slow linear is slow but it’s not as bad as like quadratic or uh even more that was annoying now imagine if testing wasn’t as simple as just looking at a file manually running an automated test can take a long time as compiling uh a gasp J Java Enterprise project absolutely uh for the man get BCT you can do bisect run now this is cool okay bisect run allows you to be able to do that process we just did but in an automated way now this is very important because sometimes you have to sit there for 30 minutes for something to tell you if it’s correct or not so it’s much nicer to be able to just have this thing run and then you go play I don’t know play game basketball whatever you do I’m not sure what you do okay so there we go there we go let’s create a new script in scripts called BCT sh with this contents so that means if we find scanning in the scan we exit with a bad exit code if we don’t find it we exit with a good exit code in other words uh BCT when you run it uses the exit code to determine if it’s a good or bad build so let’s go in here Vim this thing up go into scripts go BCT Dosh go in here do that make it executable uh I prefer to hit a oh yeah I guess I don’t need to do I don’t need to do a shebang there we go and now I need I can go into here and do the exact same thing and I can run this script now so I can go like this we already chimed it we can do a bisc start and go get uh get BCT uh start get BCT bad get BCT good that there we go so we have our head to our tail and now we’re going to run through and do this thing even though technically we’re doing a bad with our current one you know there’s a little bit of something weird here so I can go cuz we reverted it so technically our head break our whole ordering but don’t worry about it we we can skip that get bisect run um scripts bisect and I believe we don’t need to yeah there we go we don’t need to provide any arguments so when we do this one there we go it found it is able to run that script super fast and find it immediately there we go and now we know where the problem was see bisect is pretty cool what does automating bisect require uh an automated test that can programmatically inform git if the current commit is good or bad that’s pretty much it there we go all right work trees uh we’ve been saying work tree all throughout this course but I have been misusing it I am sorry it’s not technically what we’re on is not called it’s not work tree precisely uh it’s the main work tree which is more precise because you can have more than one working tree what is a work tree a work tree or a working tree or working directory is just the directory on your file system where the code you are tracking with Git lives usually it’s just the root of your git repo where the dogit repo is it contains tracked files untracked files modified files right everyone know everyone can fundamentally understand what a work tree is your main working tree just makes sense the work tree command get as a work tree command that allows you to work the work trees the first subcommand we’ll worry about is simple get work tree list it lists all the working trees you created all right so let’s see what working trees we’ve created you’ll notice there’s only one working tree right yeah which is my current my current work tree right linked work trees uh we’ve talked about stash temporary storage for changes branches parallel lines of development clone copying an entire repo work trees accomplish a similar goal allow you to work on different changes without losing work but are particularly useful when you want to switch back and forth between two change sets without having to run a bunch of git commands not branches or stash you want to keep a light foot print on your machine that’s still connected to the main repo not a clone so this work trees effectively allow you not to have to clone out a repo for a second version of it there’s some like requirements there’s some rules I think I go over the exact rules in here the main work tree contains a git directory that’s important with the entire state of the repo heavy lots of data in there to get a new main working tree requires get clone or get a knit uh a link work tree contains a git file with a path to the main working tree it’s effectively as light you can think of it as almost as light as a branch it’s just like a little bit heavier than a branch U let’s see uh can be complicated to work with when it comes to end files and secrets this is where things kind of usually go off the rails for work trees is work trees can be a pain in the butt when you have uh say node modules node modules can be really annoying so we can create a new work tree like this we do this uh whenever you do a path on an ad if you do not include a branch name it takes the the uh first baster of the path and uses that as the branch name and it’ll actually create it so we can create a linked working tree uh as a sister directory to your main working tree called alra Corp uh use the default Ultra Corp Branch so watch this so I can go uh oopsies uh get uh get a bict uh reset forgot to do that get a work uh tree ad what is it it’s path which is going to be let’s call it Ultra Corp there we go so prepared to new work tree it’s called alra Corp so if I go here back out and go Ultra Corp you’ll notice that Ultra Corp is on Branch alra Corp because that was the Bas that was the first base dur of the path that I did so if I would have done like Ultra Corp SL fuar then the branch would have been bar if that makes sense and so now if I go like this cat get you’ll notice it’s literally just a pointer to where it needs to be right so there it is primagen personal Mega Cort get work trees Ultra Corp so it’s saying where it’s located at pretty cool right I’ve been programming for 12 years and I like to think of get as magic under the hood it’s really it’s it’s it’s shockingly it’s not the most complicated piece of software I’m sure the actual operations for like creating and deleting files and stuff like that is complicated but everything else is uh like how it works is actually not like the most oh my gosh how could this possibly be right all right no duplicate branches linked work trees uh behave like normal get repos you can create branches switch branches delete branches create tags Etc but there is one thing you cannot do you cannot work on the branch that is currently checked out by another tree branch navigate to ultra Corp attempt to switch to main so when I try to switch out main it says already used right makes sense right yeah tracking so how does your main tree uh main working tree know about your linked working tree well the reference is stored in G work trees directory list the contents of this directory so if we go like this if we go to here and go uh ls- La get work trees this is a new one you’ll notice that Ultra Corp is right here so if I go in here you’ll notice that it has effectively the entirety of everything you need to know about it where its head is pointing it’s like a mini little it’s like a little mini git experiences going on right here here and even has a g dur and you’ll notice that the G dur if we look at it will actually be like the inversion of the other one whoopsies there we go oh my goodness how did I get that there we go it’s the path to where we’re going so that’s how it know it exists that’s why when I go work tree list it’s able to actually find this if I were to delete Ultra Corp it’ actually say like dead or prune or something like that removed I forget what it says but it says something how does the work tree keep track of it the main working let’s see the work Tre directory contains references to them yep Mega corpse IT staff manually logs it in Juro their project manager software actual magic which one is it all right when you make a change in a linked work tree the change is automatically reflected in the main work tree it makes sense the linked work tree doesn’t have a g directory so it’s not a separate repository it’s just a different view of the same repository you can almost think of a linked work tree as just another branch in the same repo but with its own space on the file system run get branch on your main work tree uh and answer the question so if I click this get Branch look at that you can even see the little plus sign right there that’s because it’s being checked out in a work tree it’s kind of fun thing uh how can you tell if a branch has checked out uh in a different work tree uh the branch will have no prefix that has a plus prefix let’s go plus prefix let’s go deleting work trees you may never need the stash again this is the nice part about working with work trees is you don’t actually ever need the stash ever again you can have two work trees that are always you know you can switch between them you can always check out a new one every time you work on a branch I had somebody at my old uh job tell me that stashing or switching branches is an anti- pattern you should just always work tree um anyways however at some point you need to clean up your work trees the simplest way was to remove the subcommand you can do a remove but you can also do something cooler which I actually prefer you can just delete the directory watch this one uh let’s see hold on does it say that remove alra Corp cool get uh rmrf backback alra Corp there we go so if I go get work tree list again you can see this right here see prunable I knew it said something I couldn’t remember the word it said but now that means if I go get work tree prune it’s able to tell what to prune because remember when we did this when we CED the gter ultra Corp had a directory so when it goes and it goes here it cats out this thing it stats that file when that file doesn’t exist then it knows that it doesn’t work that this thing has been detached what about npn modules you have that I mean you can copy you can create a script right I just I talked about that the whole environment part of work trees can be difficult right there we go bam I always had like two or three working trees and I would actually just switch between them so whenever I needed to do something I could actually just grab that and change it all right tags uh we’re going to wrap up this course with an easy one tags tags again I showed this at the very beginning of the course tags has the craziest user manual but it’s so simple to list all the tags you can just do get tag so get tag I have no tags very very easy tag is just an immutable pointer to a commit very very nice we can create a tag by just doing this tag a give it a tag name give it a message all of that all right create a tag on the latest commit p with the name candidate and a descriptive message all right get tag uh a see so we can go get tag- a if you want a name so the name can be candidate like that right and then you can do a message message such candid candidate boom get tag look at that beauty right there you can you can also if I’m not mistaken you can also create a uh tag without having to do this right there you go you don’t have to use a a it’s like the default first parameter there we go now tags remember you cannot edit a tag so when I check out a tag get check out tag let’s you get check out candidate I go into a detached head State like you can’t make edits to a tag tags are immutable pointers it’s very important to remember that and also one last thing get log one line you can also see uh tags when you have decorations which is nice why would one use a tag oh very very simple let’s go like this let’s go to uh GitHub uh react let’s just go check out the react Library let’s check out what tags they have tags do those look familiar if you’ve kept track at all react server components exist in 18 right people typically use tags to point to versions that are released in public so this is like a very normal Behavior Uh that you should see tags for they’re usually some sort of release uh now you can do stuff with sver this is typically how people do this with just sver it’s kind of weird to just name tags any old thing we’re developers we like structure sameness and sometimes even bike shedding I love bike Shing sver semantic versioning is a name and Convention by the way I’ve been bit so hard by sver because of this one right here minor sometimes it isn’t a safe feature if people change default parameters just so you know default parameters don’t technically break major versioning of sver and can screw you just so you know just in case you’re wondering note V isn’t actually a part of the sver correct major this means a change to the API in which will break compiling code minor means a an additive change to the API that won’t break a code patch means no change to the API at all there you go um that’s the easiest way to say it uh the sort let’s see to sort them from highest to lowest uh you first compare the major versions then a major minor versions then finally patch versions for example major version 2 is always greater than major version one regardless of the minor version absolutely if I’m using some code that’s on V1 124 and I see a new version 224 is available should I expect to be able to safely upgrade without making any changes to use it no major versions are not backwards compatible or typically are not major are not backwards compatible good thing to know you know what I mean good thing to know what’s the highest version 422 422 let’s go I’m so good at this I’m so good at this conventional tags um tags are used for all sorts of reasons but sometimes they’re used to uh to denote releases in that case tags follow the sver are common right here so tags this is very normal right fun fact pretty much anywhere you can use a commit hash you can use a tag uh name when working with Git right it’s a commit let’s see assignment add another tag to this let’s see to the same latest commit right commits going have multiple tags which we already did and then there we go boom uh get tag V 1.0.0 that’d be like oopsies that’d be like a normal one get push uh tags there we go push them all up let’s go got it tags okay guys stop making fun of my tags there we go we’re done I just did two git courses thank you very very much I hope you enjoyed this presentation of boot dodev GS course in which I helped create quite a bit the name is the primagen boot. deprime use it

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • The Muslim World’s Struggle for Identity

    The Muslim World’s Struggle for Identity

    The provided text is a collection of excerpts from a work exploring the complex identity and challenges faced by Muslims. It examines historical and contemporary issues, including religious practices, political conflicts, and the struggle to maintain cultural identity in a diverse and often hostile world. The writing reflects anxieties about minority status, cultural preservation, and the internal conflicts within the Muslim community. The author uses historical and religious references to illustrate these concerns, weaving together narratives, anecdotes, and reflections. Ultimately, the text advocates for a more unified and tolerant approach to Islam and its place in the world.

    Islamic Thought & Identity: A Study Guide

    Quiz

    Instructions: Answer each question in 2-3 sentences.

    1. According to the text, what is the significance of a mother’s death in the context of poverty and how does it compare to the status of Maulvi Mir Hasan?
    2. Explain how the text uses the concept of “tribe” and its associated deities in relation to various religious traditions.
    3. What is the central issue surrounding the “Nazar doctor” and his relationship with the individual who is presenting the issue?
    4. How does the text portray the relationship between the Prophet Muhammad and Mecca, and what is the significance of the Masjid-e-Haram in this context?
    5. Describe the tension presented in the text between the desire for Muslim unity and the reality of internal divisions and fears within the Muslim community.
    6. What is the author’s view on the role of religious fanatics and their impact on the perception of Islam?
    7. Explain the author’s assertion that “Muslims are neither getting destroyed nor are being thrown into the well” in the context of their political engagement in non-Muslim states.
    8. According to the text, what is the author’s view on maintaining one’s identity and how does it relate to the broader goal of human unity?
    9. What is the author’s position on the need for political activity and what is the connection to the history of religious communities?
    10. What is the central point the author is trying to make about the importance of humanism and unity?

    Quiz Answer Key

    1. The text suggests that a mother’s death due to poverty is a profoundly significant event, elevating her status above a figure like Maulvi Mir Hasan, whose mistakes are considered unforgivable. This highlights the immense value placed on motherhood and the impact of socio-economic hardship.
    2. The text uses “tribe” to connect ancient deities and religious practices, such as those of the Greeks, Egyptians, and Hindus, to the idea of distinct communal identities, similar to how the concept of God Israel is used in the Bible. This shows how different cultures have had their own ways of representing God, creating varied forms of religious devotion.
    3. The “Nazar doctor” is presented as someone with authority, possibly a leader or figure of importance, who is being challenged by a Muslim seeking recognition as an equal. The central conflict involves the tension between religious identity and human equality.
    4. The text suggests that the Prophet of Mecca stands above the history of the book and the Masjid-e-Haram, highlighting the central role of the Prophet and his teachings for Muslims. The Mosque acts as a symbol of religious community and identity, further establishing the historical significance of the city and Islam.
    5. The text highlights an internal conflict where the community desires unity and solidarity, but is hampered by internal fears, anxieties, and divisions, such as between sects. These divisions are an obstacle to a united Muslim identity, with these fears and conflicts becoming major issues.
    6. The author views religious fanatics as problematic, suggesting that their actions and narrow interpretations of Islam negatively impact the broader perception of the faith, creating further division and fear within the world. Fanatics are seen as a source of trouble for everyone, not just non-believers.
    7. The author argues that Muslims are navigating political landscapes in non-Muslim states effectively, achieving their goals, rather than facing destruction or persecution, suggesting a degree of resilience and agency in their political strategies within various states. They are also using non-Muslim states to their own benefit.
    8. While the author believes that maintaining one’s identity is important, it should not come at the expense of human unity. The text seeks a balance between individual identities and the collective goal of a shared humanity.
    9. The author argues that political action is acceptable if it is designed to promote human rights and freedoms and religious rights. The text points to the importance of maintaining and recognizing political rights for a religious community.
    10. The text advocates for a universalist view of humanity, emphasizing the importance of compassion, unity, and love for all people, regardless of religious or cultural background, positioning these virtues as the essence of Islamic thought and teachings.

    Essay Questions

    1. Analyze the complex relationship between religious identity and political engagement as portrayed in the text. How does the author navigate the tensions between maintaining Muslim identity and advocating for universal human rights?
    2. Explore the recurring theme of fear and anxiety within the Muslim community as described in the text. What are the sources of these fears, and how do they affect the community’s sense of identity and belonging?
    3. Discuss the author’s critique of religious fanaticism and its impact on the perception of Islam. How does the author propose balancing religious devotion with a commitment to humanism and tolerance?
    4. Examine the ways in which the text uses historical and religious figures and events to illustrate contemporary issues faced by Muslims. What are the key lessons and insights derived from these references?
    5. Evaluate the author’s perspective on the role of the individual in shaping their identity and the collective identity of the Muslim community. To what extent does the author emphasize personal responsibility and agency in addressing the challenges facing the Muslim world?

    Glossary of Key Terms

    Al-Kitab: (Arabic: الكتاب) Literally “the Book,” referring to the divine scriptures, often specifically the Quran in Islamic context, as is true in the provided text. It can also refer to scripture in general. Baitul Muqaddas: (Arabic: بيت المقدس) The Arabic name for Jerusalem, a city of significance to Muslims as well as other religious groups. Bani Saleel: A term used in the text, referencing people or a community that is not fully defined; it is a contested term used in the text that refers to people seen as an outgroup. Darvesh: A term used in the text referring to a person who is seen as a holy man. Dawat: The Arabic word for invitation. In the context of Islam, it often refers to the invitation to Islam or the call to faith. Geeta: Refers to the Bhagavad Geeta, a revered Hindu scripture. Gupta Nazar: A contested term in the text, the meaning is unclear, possibly referring to someone’s opinion or gaze as interpreted by a religious tradition. Haram: (Arabic: حرام) Forbidden or prohibited in Islam. Refers to actions, objects, or behaviors that are deemed impermissible according to Islamic law. Hijra: (Arabic: هجرة) The migration or journey of the Prophet Muhammad and his followers from Mecca to Medina in 622 CE, a pivotal event in Islamic history. Jamiat: A term used in the text, referring to a group or association of people; this is a common term, used in many contexts. Jihad: (Arabic: جهاد) The struggle or striving in the path of God. This can encompass personal, spiritual, and, in some contexts, military efforts. Kufri Dab: A contested term in the text that refers to something associated with not believing, perhaps an anti-Muslim sentiment. Mashriqi: A term used in the text, likely referring to an Oriental or Eastern person/influence in relation to the Prophet of Mecca. Masjid-e-Haram: (Arabic: المسجد الحرام) The Sacred Mosque in Mecca, Islam’s holiest site. Maulvi: A Muslim religious scholar or cleric. Medina: A city in Saudi Arabia, also known as Al-Madinah, where the Prophet Muhammad established the first Muslim community after migrating from Mecca. Mughal: Relating to the Mughal Empire that controlled most of India from the 16th to the 18th century. Mushabat: The text is likely referring to Mushabihat, meaning similarity or likeness in Arabic. Nazar: (Arabic: نظر) “Sight” or “gaze.” In some contexts, this can also relate to religious beliefs about the evil eye. Nawab: A term from India referring to a ruler or noble. Purvanchal: A geographical and cultural region located in Eastern India. Qibla: The direction of the Kaaba in Mecca, toward which Muslims turn in prayer. Quran: (Arabic: القرآن) The holy book of Islam, believed by Muslims to be the word of God as revealed to the Prophet Muhammad. Ras Mufti: A contested term in the text, likely referring to a leading religious or legal official. Shakush: A contested term in the text; this could relate to a challenge or personal issue in the context of religious and personal identity. Sharia: Islamic law derived from the Quran and the teachings of the Prophet Muhammad. Vedas: A collection of ancient Hindu scriptures. Yagya: A Hindu religious ritual that is often a sacrifice.

    Muslim Identity, Global Politics, and Internal Conflict

    Okay, here’s a detailed briefing document analyzing the provided text, focusing on key themes, ideas, and significant quotes:

    Briefing Document: Analysis of “Pasted Text”

    Introduction:

    This document analyzes a complex and at times fragmented text that appears to be a personal reflection on Islam, Muslim identity, and global politics, seemingly from the perspective of someone deeply invested in the issues but struggling with internal contradictions and external pressures. The text meanders through personal anecdotes, historical references, religious interpretations, and observations on contemporary events. The writing style is very informal and at times unclear, potentially due to translation or transcription issues.

    Main Themes and Ideas:

    1. Internal Conflict within Muslim Identity: A major theme is the internal struggle of Muslims attempting to reconcile their faith with modernity, political realities, and diverse cultural contexts. The author grapples with the challenges of maintaining Islamic identity while living in non-Muslim majority nations, expressing fear of cultural assimilation and the loss of tradition:
    • Quote: “Muslims of India are victims of severe anxiety and confusion with regard to the Muslim community. They are filled with fear every moment.”
    • Quote: “Most of the Muslims are sad from inside. They feel this pain deeply that their children are becoming Islamic. They are sad that even then the Islamic culture is not getting the status which it deserves in their eyes.”
    1. Critique of Religious Dogmatism and Fanaticism: The text critiques rigid interpretations of Islam and the actions of extremist groups, highlighting how they undermine the core values of the faith. This is juxtaposed with a longing for the unifying, humanistic aspects of Islam:
    • Quote: “Today, we are troubled by the strict religious fanatics. They have a complaint on their thoughts that Mohammed is less rich.”
    • Quote: “Today’s increasing human sugar level has reached to a minimum then this is a pocket of humanity… Without any compulsion or feeling of complaint…”
    • Quote: “The fight of Muslims with the bad festival is not justified, those who cite the demand or search of the Prophet for the lack of Hazrat, they are also the pride of human nature”
    1. Historical and Theological References: The author draws from Islamic history, scripture (Quran), and other religious traditions (Bible, Vedas) to contextualize their points. They emphasize that historical figures like the Prophet Muhammad were not above criticism and change, suggesting a more nuanced reading of religious texts:
    • Quote: “…we can see the document of this tanzar with both the wrestlers, whisky in Medina…”
    • Quote: “In the very last part of his Meccan life he wrote a great paper on such issues but it will be interesting to know about it when he compared his question on Mecca with the history of the book.”
    • Quote: “Just as we see mention of God Israel repeatedly in the Bible, similarly we can read about the racial gods and goddesses of the Greeks and Egyptians in their Deity and in Hinduism as well.”
    1. Global Politics and Muslim Persecution: The text frequently addresses the plight of Muslims in various conflict zones, attributing much of their suffering to political interference and Western powers, with particular emphasis on the role of the US:
    • Quote: “Their huge population is looted. In the three states of Kashmir, Chechnya and Bosnia, various types of Muslims have been kept with the Muslims. Whatever America is doing in Afghanistan, it is at the heart of it.”
    • Quote: “With the force of propaganda, Muslims are spreading the news in videos that which stories they consider as attacks and we are ready to debate on each name and every village.”
    1. The Importance of Humanism and Unity: There is a consistent call for a universal understanding of Islam that prioritizes humanism, tolerance, and unity among all people, transcending religious and cultural differences:
    • Quote: “The world is God’s family, and God only likes those who love his goons…”
    • Quote: “You are explaining in this way the tolerance of humanity…”
    • Quote: “humanity is the power of our religion… its invitation is not an invitation to inferiority but to humanity.”
    1. Fear of Marginalization and the “Other”: The author expresses concern over the rise of Islamophobia and the perception of Muslims as inherently separate or threatening. They are critical of the ways in which Muslim identity is often defined by external, often negative stereotypes:
    • Quote: “Sometimes a strange issue arises, sometimes the dress and beard and sometimes the symbols of Muslim are given to the Manro of the Masajat and the wait begins that our identity, story, blurred weakness should not be spoiled…”
    • Quote: “They complain that like other people, Muslims should also settle in Magra. Despite being benefited by all the Musabahs, they consider our society to be poor.”
    • Quote: “The truth is that Muslims in Magra Today people give Islamo phobia to the things…”
    1. Critique of Nation-State and Political Manipulation: There’s a questioning of the modern nation-state and its impact on Muslim identity. The text implies that the formation of Pakistan has created more problems than it has solved. It suggests that political machinations by both non-Muslim and Muslim actors have led to increased suffering for the Muslim population.
    • Quote: “The Muslims of India are victims of severe anxiety and confusion with regard to the Muslim community.”
    • Quote: “Today, Muslims all over the world who are living their lives in non-Muslim areas through the politics of their cities, are achieving the goals of non-Muslim states in the light of principles. Due to this, Muslims are neither getting destroyed nor are being thrown into the well.”
    • Quote: “They had come giving advice that they are not going to look at us as loyal citizens of their country Hindustan, but in the first or second year of Pakistan’s assembly, while putting up their list, they clearly declared in the book that now neither Hindus will stay here nor Muslims.”

    Key Observations and Interpretations

    • Fragmented Narrative: The text’s lack of structure and frequent shifts in subject make it difficult to follow a linear argument. It reads more like a stream of consciousness reflecting the author’s ongoing engagement with complex issues.
    • Personal Struggle: The personal and emotional tone indicates a deep internal struggle to reconcile religious belief, cultural identity, and observations of global conflict.
    • Call for Self-Reflection: Despite the criticism directed towards others, there is a strong element of self-reflection within the text, urging Muslims to introspect and reconsider their approach to their faith and their place in the world.
    • The Importance of Historical Understanding: The author emphasizes that a true understanding of Islam requires a deep engagement with its history and context rather than just a superficial reading of religious texts.
    • Emphasis on Human Equality: Ultimately, the message seems to be a plea for recognizing the common humanity of all people, regardless of their religious or cultural backgrounds.

    Conclusion:

    This document indicates the complexities involved in understanding the Muslim experience in today’s world. The author’s perspective reveals the intense inner struggle of identity, and the external pressure of global politics and cultural misunderstandings. The document does not provide easy answers but serves as a valuable lens through which to observe the contemporary challenges of Islamic faith in the 21st century.

    This briefing document should provide a thorough overview of the main themes and ideas present in your text. Let me know if you would like further clarification on any point.

    Muslim Identity in a Complex World

    FAQ: Key Themes and Ideas

    1. What is the central conflict or tension explored in this text regarding Muslim identity?
    2. The text grapples with the internal conflict of Muslims navigating their identity in a complex world. It highlights tensions between maintaining religious and cultural traditions, while also participating in modern society. There is a struggle between the desire to maintain a distinct Muslim identity (e.g. through dress, practices) and the fear of that identity being marginalized or attacked, both internally by fanatical elements and externally by other groups. This conflict is exacerbated by a sense of being both a minority in some places and a majority in others, and the corresponding pressures and anxieties that arise from both positions. There is a consistent fear that Muslim identity will be “spoiled” or lost, whether through external forces, internal divisions or modernization. The text also addresses the tension between a more universal humanitarian vision and a more insular, particularist approach.
    3. How does the text portray the relationship between Islam and politics?
    4. The text presents a conflicted view of the relationship between Islam and politics. There is an acknowledgement that political forces have historically shaped the Muslim world, and that Muslims are engaging with politics in both Muslim-majority and minority countries. However, the text also seems critical of attempts to impose a singular political vision on all Muslims, stressing that a person’s political engagement is not a measure of their faith or their commitment to Islam. The text suggests that Muslims should focus on a wider sense of community and humanity, rather than adhering to strict political identities. A strong distinction is made between the need for political agency and the pitfalls of a singular political identity that can lead to division and conflict. The text questions the relevance of old political models like the Caliphate and seems to support an individual right to political expression even while stressing a universal identity.
    5. What does the text say about the role of tradition versus modernity in Muslim life?
    6. The text is deeply concerned with the relationship between tradition and modernity, and it doesn’t offer a simple answer. There is a clear appreciation of traditional practices and the deep history of Islamic civilization, but also an awareness that many things have changed. The text acknowledges the impact of modernization on Muslim societies and cultures around the world and sees that modernity poses challenges, such as cultural assimilation, loss of identity, and a fear that new generations are losing their connection to Islam, but also opportunities. The text does not condemn modernization, however, but rather encourages Muslims to engage with it in a way that honors their values and does not lead to intolerance.
    7. How does the text address the issue of religious diversity and tolerance?
    8. The text advocates for a more inclusive and tolerant view of religious diversity. While it acknowledges the importance of Islam to Muslims, it also highlights a universal notion of humanity where all people are seen as deserving of respect and dignity, and even as part of the same extended family. It criticizes those who use religion to justify hatred, oppression, or division, and promotes the idea that the core message of Islam is one of unity and humanity. The text also points to historical examples of tolerance and religious coexistence. The text sees the true essence of Islam as a message of human unity, tolerance and compassion. The text recognizes that conflict may exist between various groups, but that this conflict is not a function of religious differences alone but of political and power dynamics.
    9. What does the text suggest about the fears and anxieties faced by Muslims today?
    10. The text paints a vivid picture of the fears and anxieties that many Muslims experience today. These include the fear of oppression, violence, and discrimination, both in Muslim-majority and minority contexts, and an internal fear of losing their identity. There is anxiety about a perceived decline of Islamic culture, the influence of the outside world on the youth, and a concern about the internal conflicts that divide the community. The text points to the emotional toll these fears take on individuals and the need for Muslims to find inner peace and stability. The fear of “group phobia”, is identified as a key source of concern. These fears are shown to be related to both external aggression and internal conflict.
    11. How does the text define the relationship between individual identity and communal identity?
    12. The text presents a complex interplay between individual identity and communal identity. It emphasizes the importance of Muslims maintaining their distinct cultural and religious identity while also urging them not to lose sight of their shared humanity and their universal connection. It encourages individuals to have the freedom to express themselves without compromising the communal values and the need for tolerance and mutual respect. The text recognizes the importance of belonging to a group, but also stresses that individual agency should not be suppressed. It highlights that the group identity should be one of peace and progress and not one of hatred and conflict. A person should be able to be both Muslim and a citizen of the world and to contribute to society at large while maintaining their values.
    13. What is the significance of references to historical figures and events in the text?
    14. Historical figures like Prophet Muhammad, Moses, and Mughal emperors, and historical events such as the Hijra, Mecca’s history, are used to illustrate key arguments. These references serve several purposes. They provide a sense of historical context, grounding the current struggles in a longer narrative. They also offer examples of how Muslims have navigated difficult times in the past, emphasizing the endurance of their faith. By comparing current events to historical precedent, the author seems to encourage a thoughtful approach to resolving the internal and external issues Muslims face. By using both shared Islamic figures and examples from other groups, the text is stressing both the uniqueness of Islamic experience and the importance of a broader, human history. The text seems to be invoking historical references as a means of both grounding Muslims in their tradition while also encouraging adaptability and universalism.
    15. What overall message does the text seem to be trying to convey?
    16. The text conveys a message calling for a renewed understanding of Muslim identity rooted in both cultural heritage and universal human values. It advocates for a path that embraces tradition while also engaging with the modern world, emphasizing the importance of tolerance, compassion, and unity. It calls for Muslims to address their internal conflicts, to overcome their fears, and to recognize their shared humanity with all people. The text encourages a dynamic approach to faith that promotes a deep and thoughtful engagement with the world rather than a retreat into narrow and divisive identities. It also stresses that faith should serve humanity and lead to constructive actions. The message is one of hope and progress and not division and hatred.

    Islamic Identity in a Changing World

    Okay, here is a timeline of events and a cast of characters based on the provided text, which is quite dense and at times, difficult to parse due to its unusual phrasing and structure. I have done my best to extract what seems to be the most relevant information.

    Timeline of Main Events:

    • Early Period (Implied, not explicitly dated):
    • References to historical figures and events such as:
    • Biblical figures: Moses and Israel
    • Greek and Egyptian deities, and Hindu scriptures (Geeta and Vedas).
    • Mecca and the idols Latnath and Hubble.
    • The Prophet Moses and Medina
    • The Prophet of Mecca
    • Discussion of the concept of racial gods and goddesses.
    • Mention of early Islamic figures and practices, including the Hijra.
    • Debate about the call to prayer (adhan).
    • The establishment of a new “Tariq Tanzeem Yajmat” with a separate identity.
    • The Prophet Muhammad’s time in Medina and his interactions with the community.
    • Later Period (Also implied, but more recent, with contemporary references):
    • Concerns about the identity of Muslims in the modern world.
    • Fears about the oppression and marginalization of Muslims in various places.
    • Mention of India and Pakistan, suggesting a post-partition context.
    • References to Kashmir, Chechnya and Bosnia.
    • Mention of Afghanistan
    • Anxiety regarding the loss of Islamic culture and identity among Muslim youth in Western countries.
    • Concern about the influence of Western culture and materialism on Muslim communities.
    • Discussion of conflicts in the world and debates about terrorism.
    • References to contemporary issues such as national identity, and the need for unity within the Muslim community.
    • Debate about the relationship between Islam and politics.
    • Arguments for a balance between maintaining religious identity and engaging with broader society.
    • Discussions about the nature of humanity and tolerance.
    • The notion of God’s family and all humans as children of God.

    Cast of Characters and Brief Bios:

    • Afzal Rehan Azam: Mentioned in the opening as someone whose impact is described as an “Islamic poem”. The tone suggests a figure respected within the community.
    • Mother Respected Doctor Khalid Masood: A mother held in high regard because of her poverty, contrasting with the respect accorded to religious figures like Maulvi Mir Hasan.
    • Maulvi Mir Hasan: A religious figure whose actions are deemed “haram” (forbidden) by the author, who sees the actions of Mother Respected Doctor Khalid Masood as more virtuous
    • Kaushal: Someone who brings “sushimara of the hand of Allah.” Mentioned also as being Gujarati.
    • Darvesh: A person grateful to “doctor sahib” (possibly Dr. Khalid Masood) for an opportunity to see Nasir in the Vedas.
    • Nasir: Someone who Darvesh is grateful to have had the opportunity to see in the Vedas.
    • Qibla (doctor sahib): A respected figure who states that Muslims are Islamic by his reference and who is treated with great respect
    • Gupta Nazar: An unspecified popular topic associated with the “Nazar doctor.”
    • Evelyn Mukadhin Sardarni Qureshi: A woman who is named as going to Mecca with someone else who is trying to face his “Tashkush”. In the text, there is also mention of her authorization of the freedom of religion.
    • Prophet Moses: A key religious figure from the Bible, often mentioned in comparison to the Prophet Muhammad.
    • Prophet Muhammad: The central figure of Islam, referred to frequently in various contexts and situations.
    • Umar Farooq: A well-read friend of the author whose learning inspires him.
    • Ikhthar: Someone who is described as being afraid.
    • Fahd: A person linked with having an opportunity for insurance.
    • Syed: A person who claims to be on a mission to kill a member of “Bani Saleel.” Also linked to Medina under the Seerat of Musa.
    • Pol Rasool: A person who opened the opinion of recognizing “Kalam of Dawat”.
    • Nawab of Ruhal Kuchh: A person that Pol Rasool has a mission to make.
    • Ibrahim: A relative of the author through a relation company, who is also described as an brother of Moses Arun and Mohammed.
    • Moses Arun: Brother of the author through a relation company, who is also described as a brother of Ibrahim and Mohammed.
    • Mohammed (Shakas): Brother of the author through a relation company, who is also described as a brother of Ibrahim and Moses Arun.
    • Salamat Sheikh: Someone who should not say bad things, although the minority has its own Muslims in the Jamiat.
    • Manro of the Masajat: The symbol of the Muslim identity, which people begin to worry about its “blurred weakness”
    • Chandravesh: Someone who is called “Malik Nimki Kashish”.
    • Siddhartha: Possibly refers to Siddhartha Gautama (Buddha), with an implication that there is an analogy between the Siddhartha treaty and terrorism.
    • Bin Safia and the tribes: Group that is described as powerful Turks and that the Americans have kept the Muslims at bay from.
    • Ras Mufti’s mother: A woman whose vision and action are enjoyed by Muslims.
    • Nazia: Someone whose invitation should be used to attack the whole world,
    • Rasul: Someone whose belief in the “pure” is what is desired by the narrator.
    • John: Someone who is not being allowed to “sit below anyone”
    • Didi: A person in the text who has “ground under”, that others want to put pressure on and destroy.
    • Purvanchal: Place that has a universal identity.
    • Karan: Person with a type of salty phobia (group phobia).
    • Tahir Raj Tarana: A person who tells about the news that has been taken from Sari to Magra.
    • Sandeep and Babli: People who should not consider themselves higher than others.
    • Hazrat: Someone that the text complains has become three times more popular in society.
    • Taskin: A person who is described as “humble” with a beneficial identity in the world, with their opinion about Congress being proven wrong.
    • Comyat/Shariat: Concepts linked to the foundations of Allah.
    • Komal Surya Hashmi: Person described as special who has kept the scope of different political hopes with reference to Pakistan. Also described as a nachadi foundation.
    • Harshad: Person whose caste is being used as a personal matter.
    • Ashrafiya: An establishment that meant a different country and was refused to adopt the political community.
    • Musa: A prophet who is the subject of debate regarding what has been said under the “Seerat” of Medina.
    • Abu Rera: Described as a Comrade who is surprised by the format that the officer has.
    • Ahmed Unnao: Person associated with immense emotions and having his “challan registered” in his name.
    • Saknath: Someone for whom emotions should be felt.
    • Aladdin: People who may not be the best representatives of the world’s mosques.

    Note:

    The text is very dense and uses a unique style, making it difficult to ascertain precise meanings or definite connections between events and people. The timeline and bios are based on the most plausible interpretations of the text. The text appears to be a combination of historical references, personal reflections, and social commentary, with a strong focus on Muslim identity in the modern world. The author seems to grapple with issues of religious purity, cultural preservation, and the political realities faced by Muslim communities.

    Let me know if you have any further questions.

    Muslim Identity: A Multifaceted Exploration

    Muslim identity is discussed from various angles in the sources, encompassing religious, cultural, and political aspects, as well as the challenges and fears faced by Muslims in different contexts [1-5].

    Religious Identity:

    • The sources touch on the core beliefs of Islam, including the concept of one God and the importance of the Quran [1, 6, 7].
    • There’s a focus on the figure of the Prophet Muhammad and his teachings [2, 6, 7].
    • The sources also discuss the significance of practices like prayer (Namaz), fasting during Moharram, and the call to prayer from the mosque [1, 6, 7].
    • Some sources contrast the idea of a universal Islamic identity with specific cultural and ethnic expressions of Islam [1, 2, 4].

    Cultural Identity:

    • Muslim identity is sometimes expressed through cultural symbols such as dress and beards [3].
    • There are references to Muslim civilization and its contributions to the world [5].
    • The sources also show how Muslim identity can be tied to specific places, such as Mecca and Medina, or to particular historical figures and events [6, 7].

    Political Identity:

    • The sources describe a tension between religious identity and political realities [2-4, 8].
    • There’s a discussion of the challenges faced by Muslims as minorities in various countries, including fear of oppression [2, 3].
    • The text also mentions how Muslims are impacted by political conflicts and power dynamics [3, 4].
    • Some sources argue for the importance of Muslim unity and solidarity in the face of adversity and injustice [4, 9].

    Challenges and Fears:

    • The sources highlight the anxieties and fears of Muslims in various parts of the world, including India [2, 5].
    • There are concerns about the erosion of Muslim identity and culture in the face of global influences [3, 5].
    • Some sources mention the issue of Islamophobia and the misrepresentation of Muslims in the media [3, 5].
    • The texts also discuss how Muslims grapple with internal conflicts and differences within the community [2, 3, 5].

    Diverse Perspectives:

    • It is noted that Muslims have diverse opinions and that not all Muslims share the same agenda or viewpoints [2, 3].
    • There is an acknowledgement of different interpretations of Islamic teachings and practices [1, 6, 7].
    • Some sources suggest that Muslims should focus on their own welfare without harming others [3].
    • The sources also convey the idea that Muslim identity can be shaped by both religious principles and political circumstances [4, 8].

    Internal Conflicts:

    • There are references to internal divisions within the Muslim community, including the conflict between Sunnis and Shias, as well as the tensions between different cultural and ethnic groups [1, 3, 10].

    Universality:

    • The sources also express an idea of a universal human identity, where all people are considered children of God, regardless of their religion or background. [9]
    • Some sources argue that Muslims should focus on common goals with other people [9, 10].

    The sources emphasize that Muslim identity is a complex and multifaceted concept, influenced by religion, culture, politics, history, and personal experience [1-11].

    Religious Tolerance: Ideals and Challenges

    Religious tolerance is discussed in the sources, with varied perspectives on its practice and importance.

    Acceptance of other faiths:

    • One source describes a historical instance where the religious and ideological freedom of Prophet Islam and his followers was accepted, including the right to choose a new religion [1].
    • The sources also mention a concept that all human beings are children of God and worthy of respect [2]. This implies a universalistic view that values all people, irrespective of their faith.
    • There is also a statement that any thing related to goodness or courage is something that Muslims should embrace, wherever it is found, suggesting a tolerance towards other cultures and traditions [2].

    Challenges to religious tolerance:

    • Some sources mention the fear and anxiety of Muslims in the face of oppression [3], which can be a barrier to tolerance between groups.
    • There are references to a “strict religious fanatics” [3], which suggests that some individuals and groups are not tolerant of other faiths.
    • The sources note that some groups believe that other marriages apart from their own are “infidels” [4]. This indicates a lack of tolerance for those outside of their own group.
    • The sources also mention the existence of a group phobia, which also relates to a lack of acceptance of those outside one’s group [5].
    • Some sources note the desire of some to impose their religious views [4], which is contrary to the idea of tolerance.
    • There is also mention of hatred and doubt, which can be barriers to religious tolerance [3].
    • Some sources express concern about the loss of Islamic culture and identity in the face of outside influences, suggesting a possible struggle with tolerating differing cultural and religious norms [5].

    Arguments for religious tolerance:

    • One source suggests that Muslims should focus on their own welfare without harming others [6]. This suggests a principle of non-interference in the affairs of other religious groups.
    • The sources indicate that the purpose of religion is to invite humanity towards unity and brotherhood [7], which suggests that tolerance is essential to the proper practice of religion.
    • There is the idea that one should not hate the children or family members of someone that one loves, suggesting that tolerance should extend to those of other faiths [2].
    • One source indicates that the fight of Muslims should not be against the bad festivals of other groups [1].
    • Some sources express that the “whole world is God’s family” and one should love all of God’s people, suggesting that religious tolerance is a key principle [2].
    • It is argued that, by freeing themselves from the “shackles of slavery”, people can adopt the thinking of human welfare [2].
    • There is also a suggestion that the preachers of unity have raised their voices against those who have turned their back on humanity and fought against them [2].

    Internal divisions:

    • The sources also discuss internal divisions within the Muslim community [5, 6], which are not necessarily related to religious tolerance, but do reflect a lack of acceptance of different views and beliefs within their own group.

    In conclusion, the sources reveal a complex picture of religious tolerance. While they provide examples and arguments for acceptance, they also highlight the challenges and barriers to achieving it. The sources suggest that religious tolerance is both an ideal to strive for and a practical necessity for building a peaceful and harmonious world.

    Muslim Cultural Preservation in a Changing World

    Cultural preservation is discussed in the sources, mainly in the context of Muslim identity and the challenges it faces in a changing world. The sources reveal a concern for maintaining cultural traditions and values in the face of both internal and external pressures [1].

    Key aspects of cultural preservation discussed in the sources:

    • Maintaining Identity: The sources show that there is a strong desire to maintain a distinct cultural identity [1-3]. This includes things like religious practices, traditions, and values that are unique to Muslim culture [1]. There is a fear that the loss of cultural identity will lead to a loss of distinctiveness [4, 5].
    • Resistance to Change: Some of the sources suggest that some Muslims are resistant to change and want to preserve their traditions [1, 4]. This resistance may be driven by a fear of losing their identity, or by a desire to maintain their unique way of life [4]. The sources mention concern about the influence of Western cultures and a desire to prevent their children from adopting non-Islamic lifestyles [1].
    • Cultural Symbols: Cultural preservation also involves maintaining cultural symbols, such as dress and beards [5]. The sources note that these symbols can be very important to people’s sense of identity and their desire to be part of a community [5].
    • Transmission to Future Generations: The sources express concern over the fact that some Muslim children are growing up in western countries and may not be adopting traditional Islamic culture [1]. There is a feeling of pain when it seems that Islamic culture is not getting the status it deserves [1].
    • Balancing Tradition and Modernity: The sources suggest that there is a tension between the desire to preserve traditional culture and the need to adapt to modern life [2, 4-6]. Some sources suggest that Muslims should focus on their own welfare without harming others [5, 7]. There is also a recognition that one must keep the best in the need of society [8].
    • Internal Diversity: It is important to note that the sources suggest that there are diverse opinions within the Muslim community regarding cultural preservation [1, 4, 5, 7]. Some may believe that preserving traditional culture is essential, while others may see a need for change and adaptation [4, 7]. There are references to the problems that stem from “strict religious fanatics” [4].
    • Universality vs. Specificity: While there is a desire to preserve Muslim identity, there are also ideas about universal values and the idea that all people are children of God [7]. Some sources suggest that Muslims should focus on common goals with other people [7].
    • Fear of Loss: The sources highlight the fear of losing their Maxus [5], a fear that can drive cultural preservation efforts. There is a fear of the end of their story and a blurred weakness [5]. This fear may be a result of living in areas with non-Muslim majorities or feeling that their culture is under attack by the outside world [4].

    In summary, the sources suggest that cultural preservation is a complex issue for Muslims, involving a desire to maintain their unique identity, transmit their values and traditions to future generations, and adapt to the challenges of a changing world. The sources underscore the tension between tradition and modernity, and the need for Muslims to navigate these challenges while staying true to their core values.

    Muslim Political Identity: A Global Perspective

    Political identity is a recurring theme in the sources, often intertwined with religious and cultural identity. The sources reveal a complex picture of how Muslims navigate the political landscape, both within their communities and in relation to the wider world.

    Key aspects of political identity discussed in the sources:

    • Minority Status and Fear: The sources emphasize that Muslims often live as minorities in various countries [1, 2]. This minority status is associated with a pervasive fear of oppression, anxiety, and confusion [1]. There is a sense that Muslims are constantly under threat and need to be vigilant in protecting their rights and interests [1, 3]. The sources also highlight the fear of the Hindu majority in Pakistan and the oppression of Muslims by other groups in the world [1].
    • Political Participation and Representation: The sources touch on the issue of Muslim political participation and representation in various contexts [2]. There is a sense that Muslims are often marginalized and excluded from political power [2]. The sources suggest that some Muslims feel they are not treated as loyal citizens in their countries [2]. However, some sources note that Muslims are achieving their goals in non-Muslim states through the politics of their cities [2].
    • The Desire for a Separate Political Identity: Some of the sources suggest that there is a desire among some Muslims for a separate and independent political state [2, 4]. This desire is often rooted in a sense of religious and cultural distinctiveness, as well as a desire to be free from oppression and persecution. This desire is tied to the idea that Muslims should have their own political community, or Ummah [4]. The sources mention that some Muslims had declared their political community, which was not only for Muslims but also for Hindus [2].
    • Political Strategy: The sources present the idea that Muslims may adopt different political strategies to achieve their goals [4]. Some may focus on working within existing political systems, while others may advocate for more radical forms of political action. For example, some Muslims may try to establish their own political organizations, while others may try to influence the policies of existing governments [2]. The sources mention that some Muslims are involved in debates about how to call people to the mosque and how to maintain their identity [5].
    • Impact of Geopolitics: The sources discuss the impact of global political dynamics on Muslim identity [6]. For example, they note that the actions of powerful countries such as the US in Afghanistan have a direct effect on the Muslim population [3]. The sources describe how some Muslims see the world as a battleground between different powers, with Muslims caught in the middle [6, 7]. The sources also discuss the impact of propaganda and media on how Muslims are perceived and how they see themselves [6].
    • The Tension Between Religious and Political Goals: The sources highlight the tension between religious and political goals [2]. There is a question of whether Muslims should focus primarily on their religious identity or whether they should engage in political action to advance their interests [2]. There is also a discussion of whether political aims should be prioritized over religious principles, and how Muslims should balance these two goals. Some sources suggest that Muslims should focus on their own welfare without harming others, while others argue that they need to fight for justice and liberation [3].
    • Internal Conflicts: The sources reveal internal divisions within the Muslim community [1]. These divisions can affect their political identity. For example, some Muslims may prioritize loyalty to their country, while others may identify more strongly with their religious community. There is a concern that some Muslims are so worried about their own community that they neglect the welfare of others [3].

    The Sources suggest that Muslim political identity is complex and multifaceted, shaped by a number of factors. These include religious beliefs, cultural values, historical experiences, and current political realities. The sources reveal the challenges that Muslims face in navigating these complexities, both within their communities and in the wider world. The sources also indicate that Muslims must balance their desire for religious and cultural preservation with the need to engage effectively in the political sphere.

    In conclusion, the sources reveal that political identity is a key concern for Muslims around the world, and is inextricably linked to their religious, cultural, and social identities. The sources emphasize that this political identity is not static or monolithic, but is rather a dynamic and contested space that is shaped by a variety of factors.

    Global Islam: Identity, Challenges, and Transformation

    Global Islam is discussed throughout the sources, though not always explicitly, and often as it relates to identity, tolerance, cultural preservation, and political action. The sources present a complex picture of a diverse global community with shared beliefs and values that is also facing a variety of challenges.

    Key aspects of Global Islam discussed in the sources:

    • Shared Religious Beliefs and Practices: The sources suggest a common foundation of Islamic beliefs and practices that unite Muslims worldwide. References to the Quran, the Prophet Muhammad, and practices such as prayer indicate a shared religious framework [1-3]. The sources also indicate a shared history and a common heritage, referencing historical figures and events [2].
    • Global Community (Ummah): The sources suggest a concept of a global Muslim community (Ummah) that transcends national boundaries [4]. This is reflected in statements about the unity of Muslims, the idea that all Muslims are brothers and sisters, and that they should support each other [5]. The sources reveal that some Muslims prioritize loyalty to their religious community over their national identity [6].
    • Cultural Identity: The sources describe a desire to preserve a distinct Muslim cultural identity, which is felt by Muslims all over the world [7, 8]. The sources express concern that the Muslim culture is not getting the status it deserves and that this culture is being lost to outside influences [8]. The sources also describe a desire to maintain cultural symbols such as dress and beards [7].
    • Minority Status and Challenges: The sources reveal that Muslims often live as minorities in various countries. This minority status is associated with a fear of oppression, anxiety, and confusion [9]. The sources highlight the fear of the Hindu majority in Pakistan and the oppression of Muslims by other groups in the world [6, 9]. They also express concern about the loss of Islamic culture and identity in the face of outside influences [8].
    • Political Engagement: The sources discuss how Muslims engage with the political landscape in various contexts. There is a sense that Muslims are often marginalized and excluded from political power [6]. Some Muslims may focus on working within existing political systems, while others may advocate for more radical forms of political action [4].
    • Internal Divisions: The sources acknowledge the existence of internal divisions within the Muslim community [1, 9]. These divisions can be based on differences in religious interpretation, political views, or cultural practices. This implies a lack of a monolithic global Muslim identity, and suggests a range of different perspectives within the community.
    • Tension Between Tradition and Modernity: The sources highlight a tension between the desire to preserve traditional culture and the need to adapt to modern life [8]. Some Muslims may be resistant to change and want to maintain their unique way of life, while others may see a need for change and adaptation [7]. The sources suggest a need to balance these two needs [4, 8].
    • Impact of Geopolitics: The sources discuss the impact of global political dynamics on Muslim identity [7]. Actions of powerful countries such as the US in Afghanistan have a direct effect on Muslim populations [7]. The sources describe how some Muslims see the world as a battleground between different powers, with Muslims caught in the middle [10].
    • Universal Values: Despite the focus on a distinct Muslim identity, the sources also express universal values, such as the idea that all people are children of God and are worthy of respect [5, 11]. This suggests a tension between a particular religious identity and a shared humanity. The sources indicate that the purpose of religion is to invite humanity towards unity and brotherhood, suggesting that tolerance is essential to the proper practice of religion [5].
    • Fear and Anxiety: The sources indicate that Muslims around the world are facing an increase in fear, anxiety, and confusion [7-9]. This may be due to increased discrimination, political unrest, and cultural misunderstandings. The sources suggest that this anxiety is felt by Muslims both in Muslim and non-Muslim majority countries [9].

    In conclusion, the sources portray Global Islam as a complex and multifaceted phenomenon. It is characterized by a shared religious foundation and a sense of community that transcends national boundaries. At the same time, the global Muslim community is diverse, faces many challenges, and is constantly evolving in response to changing social, political, and cultural realities. The sources suggest that Global Islam is both a unifying force and a site of internal tension, a dynamic space where Muslims navigate complex issues of identity, belonging, and the search for meaning in an increasingly interconnected world.

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Al Riyadh Newspaper, March 5, 2025 Foreign Relations, Aid to Lebanon, Global Economic Concerns

    Al Riyadh Newspaper, March 5, 2025 Foreign Relations, Aid to Lebanon, Global Economic Concerns

    These articles from the Al Riyadh newspaper cover a range of topics including Saudi Arabia’s foreign relations and aid to Lebanon, its steadfast support for Palestine, and Crown Prince Mohammed bin Salman’s diplomatic activities. They also report on global economic concerns affecting stock markets and OPEC+ oil production, alongside domestic Saudi news such as the King Salman Prize for Quran حفظ, Ramadan استقبالات, and development projects. Additionally, the paper features local community initiatives during Ramadan, sports news covering football leagues and international competitions, and health and cultural events, providing a diverse snapshot of current affairs.

    Study Guide: Analysis of Al-Riyadh Newspaper Excerpts (March 5, 2025)

    Overview of Key Themes

    The provided excerpts from the Al-Riyadh newspaper published on Wednesday, March 5, 2025 (Rabi’ al-Awwal 15, 1446 AH) cover a range of domestic, regional, and international news and commentary relevant to Saudi Arabia. Key themes include:

    • Domestic Governance and Policy: Statements from the Crown Prince regarding the Kingdom’s commitment to serving pilgrims and supporting social services, cabinet approvals for initiatives like investment promotion and heritage mosque restoration, and regional development projects.
    • Foreign Policy and Regional Relations: Saudi Arabia’s stance on the Palestinian issue, its role in supporting Lebanon, its participation in Arab summits, and its perspective on the Sudanese conflict.
    • Economic News: Fluctuations in gold prices, a decrease in used car prices in Saudi Arabia, stable vegetable and fruit prices during Ramadan, and financial results of Saudi Aramco.
    • Social and Religious Affairs: Preparations for Ramadan in the Two Holy Mosques, initiatives to provide services to pilgrims, Ramadan-related social customs (collective Iftar), and the King Salman Award for memorizing the Quran.
    • Cultural and Heritage Preservation: The unveiling of the Islamic Arts Biennale in Jeddah showcasing historical artifacts, and the ongoing project to restore historical mosques.
    • International Issues: The ongoing conflict in Gaza, the humanitarian crisis and sexual violence in Sudan, and international economic developments like US-China trade tensions.
    • Health and Social Initiatives: Health awareness campaigns during Ramadan.
    • Commentary and Opinion: An article on the importance of sustainable social solidarity beyond seasonal charity.

    Key Concepts and Topics to Review

    • Saudi Arabia’s Vision 2030: Understand how the reported initiatives and policies align with the Kingdom’s long-term goals.
    • The Role of the Crown Prince and Council of Ministers: Recognize their functions in setting national priorities and approving policies.
    • Saudi Arabia’s Foreign Policy Principles: Identify the consistent themes in its approach to regional conflicts and international issues (e.g., support for Palestine, territorial integrity of nations, peaceful resolutions).
    • The Significance of the Two Holy Mosques: Understand the continuous efforts to enhance services and facilities for pilgrims, especially during peak seasons like Ramadan.
    • Economic Indicators: Note the trends in key sectors like automotive and commodities.
    • Cultural Preservation Efforts: Appreciate the initiatives aimed at safeguarding Saudi Arabia’s Islamic and national heritage.
    • The Impact of Regional Conflicts: Analyze Saudi Arabia’s involvement and stated positions on conflicts in Palestine, Lebanon, and Sudan.
    • The Importance of Ramadan: Recognize its significance in religious, social, and economic contexts within Saudi Arabia.
    • Humanitarian Issues: Understand the Kingdom’s response and concerns regarding humanitarian crises in the region.

    Quiz: Short-Answer Questions

    1. According to the Crown Prince’s statement, what are the two key areas the Saudi Arabian government remains committed to supporting?
    2. What was the main concern expressed by the Saudi Council of Ministers regarding the situation in the Palestinian territories? What did they urge the international community to do?
    3. What kind of aid has Saudi Arabia been providing to Lebanon, and what is the overarching vision for the relationship between the two countries?
    4. What was the key message delivered by the Saudi Minister of Foreign Affairs at the extraordinary Arab Summit held in Egypt?
    5. What are the primary factors contributing to the recent decrease in the prices of used cars in Saudi Arabia?
    6. Describe two specific initiatives undertaken in the Two Holy Mosques to enhance the experience of pilgrims during Ramadan.
    7. What is the objective of the project to develop historical mosques in Saudi Arabia, and what are some of the features being preserved?
    8. What is the “Peace Arab Initiative” mentioned in the context of Saudi Arabia’s policy towards the Palestinian issue, and when was it adopted?
    9. What is Saudi Arabia’s stated position regarding the ongoing conflict in Sudan, as reflected in the Foreign Ministry’s statement?
    10. What is the main argument presented in the opinion piece regarding social solidarity during Ramadan and beyond?

    Quiz Answer Key

    1. The Crown Prince stated the Saudi Arabian government remains committed to serving the guests of God (pilgrims) and continuing to support the system of social services.
    2. The Council expressed strong condemnation of the Israeli government’s decision to prevent the entry of humanitarian aid into the Gaza Strip. They urged the international community to uphold its responsibilities, activate international accountability mechanisms, and ensure sustained aid access.
    3. Saudi Arabia has been sending humanitarian aid to Lebanon via an air bridge, including food, relief, shelter, and medical supplies. The vision for the future is a “partnership era” with strengthened Arab relations, with the joint Saudi-Lebanese statement emphasizing cooperation on important issues.
    4. The Minister of Foreign Affairs, representing the Crown Prince, conveyed the greetings of the Custodian of the Two Holy Mosques and reiterated Saudi Arabia’s unwavering support for the Palestinian people’s right to establish their independent state on the 1967 borders with East Jerusalem as its capital.
    5. The primary factors include an increase in the supply of used cars in the market due to the availability of new models and regulatory measures taken by the Ministry of Commerce that helped to lower prices. Additionally, allowing the import of used cars has increased competition.
    6. Two initiatives include the experimental launch of “Al-Tahallul from Nusuk” service using mobile carts within the Haram to serve pilgrims and the development of a baggage storage service with electronic tracking and six designated locations.
    7. The objective is to rehabilitate and restore historical mosques for worship and prayer, preserving their original architectural authenticity and highlighting their cultural and historical dimension for the Kingdom. Features being preserved include the traditional Najdi architectural style, such as roofs made of mud, wood, and palm fronds.
    8. The “Peace Arab Initiative” is a vision presented by Saudi Arabia at the Beirut Arab Summit in March 2002, which was adopted by Arab leaders. It aims for a comprehensive and just peace in the Middle East.
    9. Saudi Arabia expressed its rejection of any illegitimate steps or measures taken outside the framework of Sudan’s official institutions that could undermine its unity or disregard the will of its people, including calls for forming a parallel government. It reiterated its support for Sudan’s security, stability, and territorial integrity and called on Sudanese parties to prioritize Sudan’s interests.
    10. The opinion piece argues that social solidarity should extend beyond seasonal charity during Ramadan to become a sustainable effort focused on empowering those in need, providing opportunities, and improving the quality of life through partnerships and initiatives that create lasting impact.

    Essay Format Questions

    1. Analyze the interconnectedness between Saudi Arabia’s domestic policies (as reflected in the cabinet decisions and development projects mentioned) and its regional foreign policy objectives in the Middle East.
    2. Discuss the multifaceted significance of Ramadan as portrayed in the newspaper excerpts, considering its religious, social, and economic dimensions within Saudi Arabia.
    3. Evaluate Saudi Arabia’s consistent stance on the Palestinian issue as presented in the excerpts, tracing its historical roots and highlighting the key principles guiding its policy.
    4. Critically assess the various challenges and opportunities facing the Kingdom in its efforts to balance economic development (as suggested by investment initiatives and market trends) with its commitment to social welfare and regional stability.
    5. Examine the role of cultural and heritage preservation initiatives, such as the Islamic Arts Biennale and the restoration of historical mosques, in promoting Saudi Arabia’s national identity and global image.

    Glossary of Key Terms

    • ولي العهد (Wali al-Ahd): The Crown Prince, the designated successor to the King.
    • مجلس الوزراء (Majlis al-Wuzara’): The Council of Ministers, the main executive body of the Saudi Arabian government.
    • ضيوف الرحمن (Duyuf al-Rahman): The guests of God, a term used to refer to pilgrims visiting Mecca and Medina.
    • القدس الشرقية (Al-Quds al-Sharqiya): East Jerusalem, considered by Palestinians as the capital of their future state.
    • قمة عربية غير عادية (Qimma Arabiya Ghair Aadiya): An extraordinary Arab Summit, convened to discuss urgent matters.
    • جسر جوي (Jisr Jawwi): An air bridge, a continuous series of flights to transport aid or personnel.
    • الهيئة السعودية لتسويق االستثمار (Al-Hay’a as-Saudiya li-Taswiq al-Istithmar): The Saudi Authority for Investment Marketing (translated based on context of promoting investment).
    • قمة فلسطين (Qimmat Filastin): The Palestine Summit (name given to an Arab League summit focused on the Palestinian issue).
    • الأونروا (Al-Unrwa): The United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA).
    • مبادرة السلام العربية (Mubadarat as-Salam al-Arabiya): The Arab Peace Initiative, a proposal for ending the Arab-Israeli conflict.
    • الحرمين الشريفين (Al-Haramayn ash-Sharifayn): The Two Holy Mosques, referring to the Grand Mosque in Mecca and the Prophet’s Mosque in Medina.
    • بينالي الفنون الإسلامية (Bienali al-Funun al-Islamiya): The Islamic Arts Biennale, a recurring exhibition of Islamic art.
    • صدقات (Sadaqat): Voluntary charitable giving in Islam.
    • الذوق العام (Al-Dhauq al-A’am): Public decency or etiquette.
    • رؤية المملكة 2030 (Ru’yat al-Mamlaka 2030): The Kingdom’s Vision 2030, a strategic framework to reduce Saudi Arabia’s dependence on oil, diversify its economy, and develop public service sectors.

    Briefing Document: Review of “20706.pdf” (Al Riyadh Newspaper, March 5, 2025)

    This briefing document summarizes the main themes, important ideas, and key facts presented in the provided excerpts from the Al Riyadh newspaper, issue 20706, dated March 5, 2025. The excerpts cover a range of domestic and international news, with a significant focus on Saudi Arabia’s policies, activities, and Ramadan preparations.

    I. Domestic Affairs and Policies:

    • Council of Ministers Meeting: The Council of Ministers, chaired by the Crown Prince Mohammed bin Salman, held a meeting in Riyadh.
    • The Crown Prince conveyed congratulations to Muslims on the arrival of Ramadan, emphasizing the Kingdom’s pride in serving the pilgrims of the Two Holy Mosques.
    • He affirmed the state’s continued support for the social services system aimed at providing suitable housing for eligible families, praising the cooperation between governmental, private, and non-profit sectors.
    • The Council approved the organization of the Saudi Investment Marketing Authority to attract individuals to various regions.
    • Support for “Palestine Summit” Decisions: The Council affirmed its full support for the resolutions of the “Palestine Summit” held in Cairo, which aims to reject the displacement of the Palestinian people and end the catastrophic consequences of the war, emphasizing the Palestinian people’s right to self-determination and the establishment of their independent state on the 1967 borders with East Jerusalem as its capital.
    • Saudi Arabia’s Stance on Palestine: The article highlights Saudi Arabia’s consistent and unwavering support for the Palestinian cause throughout history, starting from the London Conference in 1935. This support spans political, economic, social, and health dimensions, driven by a deep-rooted belief and commitment to the Arab and Islamic nation.
    • The Kingdom has provided financial aid, cared for the families of martyrs, and hosted a large number of Palestinians.
    • The article emphasizes the historical roles of King Abdulaziz, King Faisal (who sought to transform the Palestinian issue into a central Islamic cause), King Khalid, King Abdullah (who presented the first Arab initiative for Palestine), and King Fahd (as a political supporter).
    • Crown Prince Mohammed bin Salman reaffirmed that Jerusalem remains in the conscience of the leaders and peoples of Arab and Islamic nations, reiterating the Kingdom’s support until the Palestinian people achieve their legitimate rights and establish their independent state with East Jerusalem as its capital. He stated, “Let the near and the far know that Palestine and its people are in the conscience of Arabs and Muslims.”
    • Saudi Arabia contributed $150 million to the Islamic Endowments program in Jerusalem and $50 million to UNRWA.
    • The Kingdom stresses the necessity of a just and lasting solution to the Palestinian issue based on international legitimacy resolutions and the Arab Peace Initiative, ensuring the Palestinian people’s right to establish an independent state on the 1967 borders with East Jerusalem as its capital.
    • Saudi Arabia’s Ministry of Foreign Affairs stated in February 2025 that the Palestinian people’s right to their land is firm and cannot be taken away, emphasizing that lasting peace will only be achieved by returning to the logic of reason and accepting the principle of equal rights and human dignity.
    • Saudi Arabia ranks as a leading donor country to the Palestinian people, with total aid reaching $5,358,848,461 through 295 projects across various sectors.
    • Support for Lebanon: Despite regional political tensions, Saudi Arabia has maintained a strong presence and launched an airlift of humanitarian aid to support the Lebanese people facing ongoing challenges. Twenty-seven planes carrying relief supplies, including food, shelter, and medical materials, were dispatched.
    • The article suggests a new era of partnership with Lebanon, aiming to strengthen Arab relations, as reflected in the joint Saudi-Lebanese statement issued at the end of the Lebanese President’s visit, which emphasized the importance of enhancing joint Arab action and coordinating stances on key issues of the Arab and Islamic nation.
    • The Council of Ministers noted the joint statement between the Kingdom and Lebanon, emphasizing the importance of fully implementing the Taif Agreement regarding weapons and the state’s sovereignty over all its territories, and stressing the role of the Lebanese national army. It also reiterated the necessity of the Israeli occupation army’s withdrawal from all Lebanese territories.
    • Amir of Riyadh on King Salman Award for Quran Memorization: The Amir of Riyadh highlighted the significance of the King Salman bin Abdulaziz Award for Memorizing the Holy Quran in its content, methodology, and implementation.
    • Amir of Al-Qassim on Water Project: The Amir of Al-Qassim expressed gratitude for the approval of the Jubail-Buraidah water pipeline project, costing 8.5 billion riyals, noting its strategic importance in enhancing water security and supporting sustainable development in the region, aligning with Vision 2030. He praised the collaboration of various ministries and entities in executing the project according to the highest technical and engineering standards.
    • Development of Historical Mosques: The second phase of the Prince Mohammed bin Salman Project for the Development of Historical Mosques has been launched, aiming to preserve their architectural authenticity, restore them for worship and prayer, and highlight their religious and cultural significance. The first phase, launched in 2018, included the rehabilitation of 30 historical mosques in 10 regions.
    • Civil Defense Preparations for Ramadan: The Civil Defense in Makkah and Madinah has intensified its preventive supervision in the central area, accommodation facilities, and vital installations of the Two Holy Mosques to ensure the readiness of fire prevention and protection systems during Ramadan, aiming for the highest standards of readiness to serve pilgrims.
    • Comprehensive Operational System in the Two Holy Mosques: The General Authority for the Care of the Affairs of the Grand Mosque and the Prophet’s Mosque has completed its preparations to receive Ramadan 1446 AH, with a comprehensive operational system focused on managing assets, maintenance, enhancing the pilgrim experience, and coordinating with relevant entities to provide an integrated experience for Umrah performers and worshippers. This includes new services like mobile disinfection units, baggage storage development, increased electric golf carts, and improved I’tikaf experience.
    • Distribution of Iftar Meals in the Prophet’s Mosque: Approximately 227,000 Iftar meals are distributed daily in the Prophet’s Mosque during Ramadan.
    • Decline in Used Car Prices: Saudi Arabia has witnessed a 6% decrease in used car prices, marking the fifth consecutive monthly decline after previous significant increases. This is attributed to increased supply due to the availability of new models, regulatory measures by the Ministry of Commerce, and the opening of used car imports, enhancing competition. Car auctions have also played a significant role in lowering prices.
    • Increased Demand for Vegetables and Fruits in Ramadan: Traders expect a 65% increase in demand for fruits and vegetables during Ramadan, with stable prices due to a balance between supply and demand. They express confidence in the strength of the Saudi economy and the leadership’s vision, attracting suppliers. The Ministry of Environment, Water and Agriculture continues its plans to increase local production, aiming for self-sufficiency in line with Vision 2030.
    • Importance of Sustainable Social Solidarity in Ramadan: An article emphasizes that Ramadan is a season for social solidarity and helping the needy. However, it stresses the need to move beyond temporary seasonal aid towards creating sustainable impact through initiatives that empower individuals and improve quality of life through partnerships. Saudi companies are recognizing this shift.
    • Riyadh Season’s Ramadan Activities: Historic Jeddah is hosting “Ramadan 2025 Season” events, organized by the Historic Jeddah Program under the Ministry of Culture, aiming to revive cultural heritage, strengthen national identity, and offer visitors a unique experience throughout the holy month with diverse cultural and community activities.
    • Saudi Students’ Club in Liverpool Celebrates Founding Day: The Saudi Students’ Club in Liverpool held an event to commemorate the anniversary of the Kingdom’s founding.
    • Biannual Islamic Arts Exhibition: The Biannual Islamic Arts Exhibition in Jeddah is presenting unique artifacts and scenes under the theme “What is Between Them,” showcasing the history of Islamic arts, both ancient and contemporary. Notable exhibits include the “Dome Structure” previously used to preserve the Maqam Ibrahim.
    • Documenting Cultural Sites: The Ministry of Culture has documented historical sites associated with renowned Arab poets throughout the Kingdom, connecting the past with the present through informational signs.
    • “Riyadh Market as Seen by Belinken in 1947”: An article reflects on the depiction of the Riyadh market in 1947 by the British traveler Belinken, as part of tracing popular heritage in Western travelers’ accounts.
    • Ramadan Atmosphere in Mosques: A poem evokes the spiritual atmosphere of mosques in Riyadh during the nights and days of Ramadan.
    • National Awareness Campaign for Early Detection of Diseases: The Riyadh Health Cluster, in cooperation with the Health Holding Company, launched a national awareness campaign titled “Safety in Health” at the Saleh Al-Dossary Center to promote early detection and healthy lifestyles during Ramadan.
    • Saudi Arabian Motorsports Company Project Launch: The Saudi Arabian Motorsports Company, in cooperation with the General Directorate of Passports and the General Authority of Civil Aviation, launched the first phases of the Al-Mazar sports project, aiming to enhance the infrastructure for motorsports in the Kingdom.
    • Traditional Saudi Games: The Ministry of Interior, represented by the General Directorate of Border Guards, in cooperation with the Saudi Arabian Olympic & Paralympic Committee, concluded the first phase of a heritage initiative focusing on traditional Saudi games, considering them a renewed cultural heritage that strengthens national identity and belonging.
    • Ramadan Legacy: An article reflects on the unique spiritual and social atmosphere of Ramadan in Saudi society, emphasizing traditions of unity, generosity, and strengthening community bonds.
    • Community Iftar Gatherings: The article highlights the tradition of community Iftar gatherings in neighborhoods, fostering unity and recalling fond memories during Ramadan, with appreciation for the efforts of local authorities and community centers in supporting these initiatives.

    II. International Affairs:

    • Sudan Crisis: Saudi Arabia reiterates its unwavering support for the unity, safety, stability, and territorial integrity of Sudan, rejecting any illegitimate steps taken outside the framework of official Sudanese institutions that could undermine its unity. The Kingdom calls on Sudanese parties to prioritize Sudan’s interests and avoid division and chaos, reaffirming its commitment to ending the war and achieving peace in accordance with the Jeddah Declaration signed on May 11, 2023.
    • The Ministry of Foreign Affairs statement underscores the importance of continued efforts to halt the conflict and work towards peace, recalling the Jeddah Declaration which outlined commitments by the Sudanese Armed Forces and the Rapid Support Forces to protect civilians and facilitate humanitarian action.
    • Gaza Conflict: The Arab League summit in Cairo adopted an Arab plan for early recovery and reconstruction of Gaza to counter attempts to liquidate the Palestinian issue. The plan urges all types of financial, material, and political support for its implementation and calls on the international community and international and regional financing institutions to provide necessary support.
    • The statement stressed the strategic option of achieving a just, comprehensive, and lasting peace that fulfills all the rights of the Palestinian people, especially their right to freedom and an independent state with sovereignty over their national soil based on the two-state solution, ensuring security for all peoples and states of the region, including Israel.
    • The Arab countries reaffirmed their commitment to resolving all conflicts and disputes in the region peacefully and establishing normal relations and cooperation among all its countries, while firmly rejecting all forms of occupation and aggression.
    • The statement emphasized intensifying cooperation with international and regional powers, including the United States, to achieve a just and comprehensive peace in the Middle East, working to end all conflicts and expressing readiness to engage immediately with the US administration and all international partners to resume peace negotiations aimed at a just settlement of the Palestinian issue, ending the Israeli occupation and establishing the independent and sovereign Palestinian state on the June 4, 1967 borders with East Jerusalem as its capital, living in peace and security alongside Israel, and calling for the convening of an international peace conference.
    • The statement welcomed the Palestinian decision to work on enabling the National Authority to return to the Palestinian territories occupied since 1967, as a embodiment of unity for a transitional period in Gaza. It also valued the proposal from Jordan and Egypt to qualify and train Palestinian cadres to ensure their ability to fully perform their security duties in Gaza, stressing that the security file is a Palestinian responsibility that must be managed by the legitimate Palestinian institutions alone, according to the principle of one law, one authority, and one legitimate weapon, ensuring its continuous stability.
    • The statement highlighted the need to address Israel’s concerns regarding long-term security in Gaza.
    • Conversely, it noted Israeli Prime Minister Netanyahu’s use of withholding aid as leverage to evade the second phase of ceasefire negotiations.
    • The continuation of border closures and prevention of aid entry exacerbates the humanitarian crisis in Gaza, where over two million Palestinians face dire living conditions due to the ongoing Israeli war.
    • Security Campaign in Latakia, Syria: A security campaign was launched in Latakia following the killing of two security personnel in an “armed ambush,” coinciding with alleged Israeli airstrikes on weapons depots in the Qardaha area.
    • UNICEF Report on Sexual Violence in Sudan: UNICEF announced that Sudanese fighters have raped Sudanese civilians, including children as young as one year old, during the ongoing civil war, in what could amount to “war crimes.” The report details harrowing testimonies of survivors and highlights the limited data available, indicating the actual scale of sexual violence is likely much larger. UNICEF calls for an immediate end to this suffering.
    • Alleged “Rapid Support Forces” Bombing in Al-Fashir, Sudan: The “Rapid Support Forces” are accused of shelling a market in Al-Fashir, killing six civilians and injuring an unknown number. The Rapid Support Forces control most of Darfur region and are besieging Al-Fashir, the last major city under the control of the army and allied factions. Famine has spread in areas surrounding Al-Fashir, raising fears it could extend to the city itself.
    • Liverpool vs. Paris Saint-Germain Champions League Match: An article previews the upcoming Champions League Round of 16 first-leg match between Liverpool and Paris Saint-Germain, noting Liverpool’s strong form in the English Premier League and PSG’s dominance in Ligue 1, while highlighting PSG’s less convincing performance in the Champions League group stage.
    • Bayern Munich vs. Bayer Leverkusen Match: An article discusses the upcoming Bayern Munich vs. Bayer Leverkusen match in the Bundesliga, noting Leverkusen’s impressive undefeated run and Bayern’s strong record against Leverkusen at home, predicting a challenging encounter for both teams.
    • Benfica vs. Barcelona Match: Barcelona will visit Benfica, aiming to restore their status as one of the continent’s giants.
    • Al-Hilal Loses to Pakhtakor in AFC Champions League: Al-Hilal lost 2-1 to Pakhtakor of Uzbekistan in the first leg of the AFC Champions League Round of 16, despite taking an early lead.
    • Al-Ahli Closer to AFC Champions League Quarter-Finals: Al-Ahli defeated Qatari side Al-Rayyan 3-1 in the first leg of their AFC Champions League Round of 16 tie, putting them in a strong position to advance.
    • Saudi National Football Team Preparations for World Cup Qualifiers: The Saudi national football team is preparing for a crucial match against China on March 20th in the qualifiers for the 2026 World Cup. The article expresses hope for the team’s success in their quest to qualify for the World Cup for the seventh time in their history.
    • Asian Qualifiers for Under-17s Championship Draw: The draw for the Asian Qualifiers for the Under-17s Championship in January placed Saudi Arabia in Group A along with China, Thailand, and Uzbekistan.

    III. Economic and Financial News:

    • Gold Prices Rise: Gold prices increased due to demand for safe-haven assets amid trade tensions sparked by US President Donald Trump imposing new tariffs on major trading partners. Spot gold rose 0.8% to $2917.61 per ounce, marking the second consecutive session of gains.
    • Gulf Stock Markets Decline: Most Gulf stock markets experienced declines.
    • Saudi Aramco Financial Results: Saudi Aramco announced a net income of 121.3 billion Saudi Riyals (SAR) ($32.3 billion USD) in 2024. The decrease in net income compared to the previous year was attributed to lower revenues due to decreased crude oil prices and refined and chemical product prices, partially offset by higher sales volumes of refined and chemical products.
    • Saudi Aramco’s President and CEO, Amin H. Nasser, stated that the strong net income and dividends reflect the company’s exceptional resilience, ability to capitalize on its unique scale and low-cost production, and reliable delivery to customers and shareholders. He noted that global oil demand reached new highs in 2024 and expects further growth in 2025.
    • The company is progressing with projects aimed at maintaining its maximum sustainable crude oil production capacity and ensuring reliable energy supplies.
    • Saudi Aramco has made progress in its growth strategy across upstream, refining, chemicals, and marketing sectors, with potential additional operating cash flows expected from these expansions by 2030.
    • The company’s spare capacity provides flexibility to meet potential oil demand growth.
    • Chairman of Saudi Aramco’s Board of Directors, Yasser bin Othman Al-Rumayyan, highlighted the strong dividends distributed to shareholders since the IPO and the significant investor interest in Saudi Aramco’s continued growth story through a secondary public offering and issuance of international bonds and sukuk in 2024.
    • Darren Woods of ExxonMobil and Philippe Novac of TotalEnergies on Oil Prices: They commented on the current downward trend in oil prices, attributing it to OPEC+ production increases and US tariffs, along with geopolitical developments related to the Russia-Ukraine conflict.
    • President Trump’s Halt to US Military Aid to Ukraine: This decision, following a disagreement with President Zelensky, and OPEC+’s decision to proceed with planned oil production increases, have influenced oil market dynamics.
    • China’s Response to US Tariffs: Following the implementation of US tariffs, China quickly announced retaliatory import duty increases on a range of US agricultural and food products.
    • Reliance Industries to Resume Activities in India: The Indian company will resume its activities in India from March 5, 2025, after resolving a gas drilling dispute with the Indian government.
    • Trump’s Inspiration from the Saudi Sovereign Wealth Fund: An analysis discusses US President Donald Trump’s stated intention to create a large American sovereign wealth fund, drawing inspiration from the successful Saudi Public Investment Fund (PIF), which is currently ranked among the largest globally. The analysis explores the concept of sovereign wealth funds in the US, noting existing state-level funds, and discusses potential sources of funding and governance structures for a federal fund, emphasizing the need for transparency and independence from political interference.

    IV. Social and Cultural Items:

    • The Value of Water: An article highlights the essential role of water for life, its unique properties, and its abundance in the universe in frozen form, with liquid water being unique to Earth. It emphasizes the human body’s high water content and the intricate system of water on the planet, referencing Quranic verses about the creation of water.
    • Obituary for Moroccan Intellectual Mohammed bin Issa: An obituary commemorates the passing of Mohammed bin Issa, a prominent figure in Moroccan thought, culture, and politics, and the founder of the Asilah Cultural Festival, recognizing his significant contributions and lasting impact.

    V. Health News:

    • Surgical Removal of Pancreatic Tumor: Dr. Mostafa Habib Soliman performed a successful “Whipple” procedure to remove a cancerous hormonal tumor from the pancreas of a patient suffering from severe abdominal pain.
    • The Benefits of Fasting During Ramadan: An article discusses the various health benefits associated with fasting during Ramadan, referencing scientific studies on intermittent fasting and its impact on autophagy, inflammation, insulin sensitivity, weight loss (specifically abdominal fat), and mental well-being through increased serotonin and reduced stress hormones. It also notes potential benefits in reshaping the relationship with food by reducing cravings for sugary items. However, it cautions that prolonged fasting without proper nutrition can lead to adverse effects like dehydration or hypoglycemia, especially for individuals with chronic conditions who require medical supervision.
    • Impact of Ramadan on Sleep: A study from the University of the Emirates found that the quality of sleep improved for participants during Ramadan, likely due to reduced caffeine intake and regulated melatonin secretion.
    • Seizure of Pharmaceutical Products and Fine for Factory: The Saudi Food and Drug Authority (SFDA) reported seizing over 100,000 packages of 29 different unregistered pharmaceutical and nerve medications from a factory in violation of regulations. The factory was fined 1.4 million riyals and referred to the Public Prosecution. The SFDA emphasized the importance of adhering to regulations and called on the public to report violations.

    This briefing document provides a comprehensive overview of the key information presented in the selected excerpts from the Al Riyadh newspaper. It highlights Saudi Arabia’s active role in regional politics, its ongoing domestic development initiatives, preparations for the holy month of Ramadan, and various economic, social, and health-related news items.

    Saudi Arabia: Key Policy Updates and Initiatives

    Frequently Asked Questions

    1. What was the primary focus of the Saudi Council of Ministers’ meeting? The primary focus of the Saudi Council of Ministers’ meeting, chaired by Crown Prince Mohammed bin Salman, was on two key areas: expressing gratitude for the opportunity to serve pilgrims to the Two Holy Mosques during Ramadan and reiterating the Kingdom’s commitment to supporting social services for its citizens. Additionally, the council addressed regional and international matters, including the Palestinian issue, the situation in Lebanon, and international economic developments.
    2. What is Saudi Arabia’s stance on the Palestinian issue, as highlighted in the sources? Saudi Arabia maintains a firm and long-standing supportive stance towards the Palestinian issue. The Kingdom calls for the establishment of an independent Palestinian state based on the 1967 borders, with East Jerusalem as its capital. It strongly condemns the Israeli government’s actions, including the obstruction of humanitarian aid to Gaza, and urges the international community to hold Israel accountable and ensure sustained aid access. Saudi Arabia also emphasizes its support for the Palestinian National Authority in its efforts to govern Gaza and provide essential services. This position is rooted in the Kingdom’s historical and religious commitment to the Palestinian people.
    3. How is Saudi Arabia addressing the situation in Lebanon, according to the provided text? Saudi Arabia is actively engaging with Lebanon to foster a new era of partnership. Despite past political tensions, the Kingdom has sent significant humanitarian aid to Lebanon, including food, shelter, and medical supplies. The joint Saudi-Lebanese statement released after the Lebanese President’s visit underscores the importance of fully implementing the Taif Agreement, ensuring the Lebanese state’s sovereignty and control over its territory (including border control and arms control), and the withdrawal of the Israeli occupation army from all Lebanese territories.
    4. What initiatives are being undertaken to enhance the experience of pilgrims visiting the Two Holy Mosques during Ramadan? Significant efforts are underway to provide a comprehensive and comfortable experience for pilgrims during Ramadan. These include an integrated operational system for managing the Grand Mosque and the Prophet’s Mosque, focusing on maintenance, efficient operations, and enriching the visitor experience. Specific initiatives include the launch of “Tahalul Service” using mobile units for hair shaving (an Umrah ritual), development of a luggage storage service with electronic tracking, increasing the number of electric golf carts for transportation within the mosques, developing manual carts with a unified design, enhancing Itikaf (seclusion) services, improving the electronic booking system for Iftar meals, providing categorized guidance signs, operating centers for children’s hospitality, and offering religious and cultural exhibitions like “First House” which showcases the history of the Kaaba’s construction.
    5. What developments were reported regarding the Saudi economy and specific sectors? Several economic developments were highlighted. The Saudi Council of Ministers approved the organization of the Saudi Investment Marketing Authority. The used car market saw a 6% price decrease due to increased supply and the allowance of used car imports. Conversely, gold prices continued to rise, driven by demand for safe-haven assets amidst international trade tensions. The Saudi stock market generally saw declines, mirroring global trends influenced by factors like potential interest rate cuts and geopolitical concerns.
    6. How is Saudi Arabia preserving and promoting its cultural and historical heritage, as mentioned in the text? Saudi Arabia is actively working to preserve and promote its cultural and historical heritage through various initiatives. The second phase of the Prince Mohammed bin Salman Project for the Development of Historical Mosques has been launched, focusing on restoring and architecturally preserving these significant sites while allowing for non-impactful additions. The Ministry of Culture is also documenting historical locations associated with renowned Arab poets, like the site in Najran where Yaguth bin Abdullah Al-Harthy lived, transforming it into a public park. Additionally, the Islamic Arts Biennale is showcasing rare artifacts and unique displays, such as the former domed structure used to protect the Maqam Ibrahim in Mecca, highlighting the rich history of Islamic art and culture.
    7. What role is Saudi Arabia playing in addressing the ongoing conflict in Sudan? Saudi Arabia is deeply concerned about the situation in Sudan and is actively engaged in efforts to mediate and resolve the conflict. The Kingdom has repeatedly emphasized the importance of Sudan’s unity, safety, stability, and territorial integrity, rejecting any external interference in its internal affairs or the formation of parallel governments. Saudi Arabia hosted Sudanese parties in Jeddah, which led to the signing of the “Jeddah Declaration” in May 2023, outlining commitments to protect civilians and facilitate humanitarian aid. The Kingdom continues to urge all Sudanese factions to prioritize Sudan’s interests over any partisan agendas and to work towards a peaceful resolution, in line with the Jeddah Declaration.
    8. Beyond immediate aid, how is social solidarity and community support being fostered in Saudi Arabia, particularly during Ramadan? Saudi Arabia is moving beyond solely providing immediate, seasonal aid to fostering sustainable social solidarity and community support. During Ramadan, there is a notable increase in charitable initiatives, with institutions and individuals competing to help those in need. Companies are adopting long-term approaches, focusing on empowering vulnerable groups through initiatives that provide job opportunities and support small businesses, contributing to improved quality of life through partnerships. Community iftars (breaking fast meals) are also a significant tradition, strengthening bonds and fostering a sense of unity among neighbors and friends across different neighborhoods. These gatherings, often organized by volunteers and supported by local authorities, highlight the strong social fabric of Saudi society.

    Saudi Arabia and Lebanon: Strengthening Bilateral Relations

    Based on the sources, Saudi Arabia and Lebanon share historical ties and are working towards strengthening their relationship in various fields.

    Historical Context and Support:

    • Historically, the Kingdom of Saudi Arabia has supported Lebanon’s security, stability, politically, economically, and socially.
    • Saudi Arabia played a role in stopping the Lebanese civil war through the “Taif Agreement”.

    Recent Developments and Cooperation:

    • The President of the Lebanese Republic, Joseph Aoun, recently paid an official visit to Saudi Arabia, marking a potential new phase in Saudi-Lebanese relations.
    • The visit aimed to boost bilateral relations and cooperation in various fields, including the economy, in line with the aspirations of the Lebanese people.
    • During the visit, discussions covered various aspects of the relationship and ways to develop it in all fields, in addition to discussing regional and international developments.
    • Both sides emphasized the importance of enhancing joint Arab action and coordinating stances towards important regional and international issues.

    Key Areas of Emphasis in Joint Statements:

    • Taif Agreement: Both Saudi Arabia and Lebanon stressed the importance of the full implementation of the Taif Agreement as the foundation for political balances in Lebanon. Saudi Arabia views the full implementation of this agreement as the sole guarantee to prevent Lebanon from slipping towards a constitutional vacuum or political chaos.
    • State Sovereignty and Security: The importance of extending the state’s authority over all Lebanese territories and confining arms to the Lebanese state was highlighted.
    • Withdrawal of Israeli Forces: Both nations reiterated the necessity of the withdrawal of the Israeli occupation army from all Lebanese territories.
    • Economic Recovery: Agreement was reached on the necessity of the Lebanese economy’s recovery and overcoming its current crisis by initiating internationally required reforms based on the principles of transparency and the application of binding laws. Saudi Arabia has historically sought Lebanon’s stability.
    • Arab Identity: The joint statement emphasized that Lebanon’s Arab relations are essential for its security and stability.
    • Resumption of Exports: Both sides agreed to study obstacles hindering the resumption of Lebanese exports to the Kingdom of Saudi Arabia.

    Challenges and Past Issues:

    • Despite past political repercussions that distanced the Lebanese, Saudi Arabia has continued to provide humanitarian aid to the Lebanese people, including an airlift carrying 27 shipments of relief aid containing food, shelter, and medical supplies.
    • There was a continuous debate within Lebanon regarding the Taif Agreement, leading to the Saudi-Lebanese reiteration of its importance.

    Future Outlook:

    • The recent meeting is seen as a prelude to strengthening relations and looking towards the future under the title of “Partnership for a New Era”.
    • Saudi Arabia blesses every sincere effort that seeks the good of the Arab nation and its unity.
    • Lebanon, looking to turn a page on the past, sees the enhancement of relations with Saudi Arabia as a priority.

    In conclusion, Saudi-Lebanese relations are characterized by historical support, a recent push for renewed cooperation across various sectors, and a shared vision on key regional and domestic issues for Lebanon, particularly emphasizing the importance of the Taif Agreement and Lebanese sovereignty.

    Saudi Arabia’s Support for Lebanon: Dimensions and Commitments

    Drawing on the sources and our conversation history, the support for Lebanon is a significant aspect of Saudi Arabia’s engagement with the country. This support is multifaceted, encompassing historical, political, security, and economic dimensions.

    Historical Support:

    • The Kingdom of Saudi Arabia has historically supported Lebanon’s security, stability, and its political, economic, and social well-being.
    • Saudi Arabia played a crucial role in brokering the “Taif Agreement,” which aimed to end the Lebanese civil war.

    Recent Support and Cooperation:

    • The recent official visit of the Lebanese Republic’s President, Joseph Aoun, to Saudi Arabia underscores a renewed commitment to strengthening bilateral relations in various fields, including the economy. This visit is seen as a potential “new phase for Saudi-Lebanese relations”.
    • Discussions during the visit covered various aspects of the relationship, aiming to develop it across all sectors, alongside discussions on regional and international developments.
    • Both Saudi Arabia and Lebanon emphasized the importance of boosting joint Arab action and coordinating their positions on significant regional and international issues.

    Key Areas of Emphasis in Supporting Lebanon:

    • The Taif Agreement: Both nations have consistently highlighted the importance of the full implementation of the Taif Agreement. Saudi Arabia views this agreement as the fundamental basis for political equilibrium in Lebanon and the primary safeguard against constitutional voids or political instability.
    • Lebanese Sovereignty and Security: A central tenet of the support is the emphasis on extending the Lebanese state’s sovereignty over all its territories. This includes the crucial aspect of confining arms to the Lebanese state. The joint statement explicitly mentions the importance of the Lebanese national army’s role and supporting it in this endeavor.
    • Withdrawal of Israeli Forces: Both Saudi Arabia and Lebanon have reiterated the necessity of the complete withdrawal of the Israeli occupation army from all Lebanese territories. This remains a consistent point of agreement and support for Lebanon’s territorial integrity.
    • Economic Recovery: Recognizing the current economic challenges in Lebanon, both sides have agreed on the necessity of the Lebanese economy’s recovery and overcoming its crisis. This involves initiating internationally required reforms grounded in transparency and the application of binding laws. Saudi Arabia has historically been invested in Lebanon’s stability, which inherently includes its economic well-being. They also agreed to study the obstacles hindering the resumption of Lebanese exports to Saudi Arabia.
    • Arab Identity: The joint statements have emphasized that Lebanon’s Arab relations are fundamental to its security and stability. This highlights a shared understanding of Lebanon’s place within the broader Arab context.
    • Blessing Sincere Efforts: Saudi Arabia has expressed its support by “blessing every sincere effort that seeks the good of the Arab nation and its unity,” which implicitly includes efforts towards Lebanon’s stability and progress.
    • Lebanon’s Perspective: Lebanon, as indicated, prioritizes the enhancement of its relations with Saudi Arabia, viewing it as a crucial step in overcoming past issues and looking towards a more stable future. The Lebanese President’s choice of Riyadh as his first foreign visit further underscores this priority.

    In summary, the support for Lebanon from Saudi Arabia is rooted in historical ties and continues through active engagement and a shared vision for Lebanon’s sovereignty, security, and economic recovery. Key to this support is the emphasis on the Taif Agreement as a foundational element for Lebanon’s stability and the need for a strong, sovereign Lebanese state.

    Global Trade Activities and Interconnected Economies

    Based on the sources provided, there is some information that touches upon aspects of global trade, although none of the sources directly discuss a “global trade war” as a central topic. However, we can infer related concepts and activities:

    • Source mentions that the price of copper fell slightly on Tuesday due to the weight of customs tariffs policies pursued by Trump on the metal. Investors in the red metal were also cautiously awaiting meetings of China’s parliament to gain insight into potential economic stimulus measures aimed at boosting domestic demand. This indicates how national trade policies and economic conditions in major economies can influence global commodity markets.
    • Sources and discuss the import of used cars into Saudi Arabia. The increased availability of used cars from abroad has intensified competition, contributing to lower prices for consumers in Saudi Arabia. Car auctions in the Kingdom also provide an environment for competitive pricing, including for imported vehicles. These points illustrate the flow of goods across borders and the impact of international trade on local markets and consumer prices.
    • Source notes that during the month of Ramadan, Saudi Arabia receives imports of certain fruits and vegetables by air, sea, and land to ensure stable prices and availability. This highlights the reliance on international trade to meet domestic consumption needs, especially during peak demand periods.
    • Source mentions that Saudi Aramco issued international bonds in July, with subscriptions exceeding the initial target size due to strong demand from a diverse base of both existing and new institutional investors. In October, Aramco also completed the issuance of dollar-denominated international Sukuk, which also saw subscriptions exceeding several times the target size. This demonstrates Saudi Arabia’s engagement with global financial markets and the flow of capital across borders.
    • Source discusses a thought-provoking question about where Saudi Arabia’s sovereign wealth fund should invest. It mentions a suggestion that the fund might find it best to invest the majority of its capital in private markets and basic infrastructure in the United States, driven by a strategic mandate and the philosophy of directing funds towards federal priorities. This reflects considerations around international investment strategies and their alignment with national interests and global economic landscapes.

    While these instances do not provide a comprehensive discussion of a “global trade war,” they offer glimpses into international trade activities, the impact of national economic policies on global markets (tariffs), and the interconnectedness of economies through the flow of goods and investments. The mention of tariffs in the context of copper prices is the most direct link to the concept of trade tensions, as tariffs are a common tool used in trade disputes.

    Saudi Arabia and the Palestinian Cause

    Based on the sources, the Palestinian cause is a significant and consistently addressed issue. Saudi Arabia maintains a firm and unwavering stance in defense of the rights of the Palestinian people.

    Key aspects of the Saudi Arabian position on the Palestinian cause, as highlighted in the sources, include:

    • Rejection of Displacement: Saudi Arabia strongly rejects the displacement of the Palestinian people from their lands. This was emphasized during the extraordinary Arab Summit “Summit of Palestine” held in Egypt. The Kingdom reiterates this stance, stressing its categorical refusal to infringe upon the legitimate rights of the Palestinian people through any means, including settlement policies or attempts to displace them.
    • Support for Legitimate Rights: Saudi Arabia affirms the right of the Palestinian people to their legitimate rights. This includes their right to self-determination and to establish their independent state on the borders of 1967 with East Jerusalem as its capital.
    • Condemnation of Israeli Occupation: The sources indicate a strong condemnation of the Israeli occupation and its actions. The need for the withdrawal of the Israeli occupation army from all Lebanese territories is repeatedly stressed, which reflects a broader concern about Israeli occupation in the region. Saudi Arabia denounces the Israeli occupation authority’s crimes against the Palestinian people, highlighting the suffering caused by the occupation and its disregard for international law.
    • Support for International Resolutions: Saudi Arabia emphasizes the importance of the full implementation of relevant international resolutions concerning the Palestinian issue.
    • Humanitarian Aid: The Kingdom actively contributes to alleviating the humanitarian situation in the Gaza Strip and its surroundings. The developmental assistance provided by Saudi Arabia to the State of Palestine and the Palestinian people through the Saudi Fund for Development has reached approximately $4.812 billion, covering sectors such as education, health, housing, and refugee housing.
    • Advocacy in International Forums: Saudi Arabia, under its leadership, consistently underscores its firm positions on the Palestinian issue in various international forums. The Kingdom’s commitment to defending the Palestinian cause is evident in its statements and actions, including the address to the Shura Council, where the Palestinian cause was highlighted as a top priority.
    • Efforts for a Peaceful Resolution: Saudi Arabia supports efforts to reach a comprehensive and just solution to the Palestinian cause. The statement highlights the positive role of Qatar and Egypt, in cooperation with the US administration, in reaching a ceasefire in Gaza and the release of hostages. It also mentions the importance of building on these efforts to develop an executive plan for a lasting solution. The Kingdom, as the chair of the Arab Islamic Committee on Gaza and in partnership with the European Union, supports the holding of an international conference, co-chaired by Saudi Arabia and France, to find and implement a solution to the Palestinian issue.
    • Rejection of Harm to Holy Sites: The statement also affirms the support for the Hashemite custodianship of the holy sites, which is relevant to the status of Jerusalem.

    In conclusion, the Palestinian cause is a central pillar of Saudi Arabia’s foreign policy, characterized by a firm commitment to Palestinian rights, rejection of Israeli occupation and displacement, provision of humanitarian aid, and active engagement in regional and international efforts to achieve a just and lasting solution based on relevant international resolutions and the establishment of an independent Palestinian state with East Jerusalem as its capital.

    Saudi Arabia Economic Activities and Initiatives

    Based on the sources, Saudi Arabia’s economy is multifaceted, with significant activities in energy, trade, investment, and social development.

    Energy Sector:

    • Saudi Aramco achieved profits and cash flows in its 2024 results despite lower oil prices. This indicates the continued importance of the oil sector to the Saudi economy.
    • Aramco issued international bonds in July, with strong investor demand. This reflects the company’s access to global financial markets and the confidence of international investors in the Saudi energy giant.
    • In October, Aramco also completed the issuance of dollar-denominated international Sukuk, which was also oversubscribed. This further demonstrates Aramco’s role in international finance.
    • Saudi Aramco has a keen interest in increasing oil production capacity from its fields to maintain its role in the global oil market in the coming years.

    Trade and Imports:

    • Saudi Arabia experiences imports of used cars, which have increased competition and led to lower prices for consumers. This highlights the impact of international trade on the domestic automotive market.
    • During the month of Ramadan, the Kingdom imports fruits and vegetables by air, sea, and land to ensure stable prices and meet increased demand. This reliance on international trade is crucial for food security, especially during peak consumption periods.
    • Saudi Arabia agreed with Lebanon to study the obstacles hindering the resumption of Lebanese exports to the Kingdom. This suggests an interest in fostering bilateral trade relations.

    Investment and Finance:

    • The Saudi Authority for Investment Marketing is being organized, indicating a government focus on attracting and promoting investment in the Kingdom.
    • There is discussion about where Saudi Arabia’s sovereign wealth fund should invest, with a suggestion to focus on private markets and basic infrastructure in the United States. This highlights the strategic considerations involved in managing the Kingdom’s substantial financial reserves and their potential global impact. Our previous conversation mentioned that Saudi Arabia is a country with sovereign wealth funds due to financial surpluses.
    • Saudi Arabia’s sovereign wealth fund is described by Donald Trump as a “big sovereign fund”.

    Government Economic Initiatives and Approvals:

    • The establishment of the Saudi Building Code Academy has been approved in principle. This indicates a focus on developing expertise and standards in the construction sector.
    • The Council of Ministers affirmed the state’s continued support for the social services system and national initiatives aimed at providing suitable housing for eligible families. This reflects a government commitment to social welfare and improving living standards.
    • The Council also reviewed the progress of major development and service projects underway to enhance the Kingdom’s comprehensive renaissance, including the Riyadh Metro project. These projects signify significant government investment in infrastructure development.

    Social Welfare and Support Programs:

    • The state continues to support social services and initiatives to provide housing for those who deserve it.
    • The “Joud Eskan” (Good Housing) campaign is mentioned, emphasizing collaboration between government, private, non-profit sectors, and individuals to achieve its goals.
    • There is mention of social security being easier and more accessible through electronic means, supported by programs like “Citizen’s Account,” “Hafiz,” “Maharah,” “Reef,” and “Manaa”. These initiatives aim to support limited-income individuals, entrepreneurs, and investors.

    In summary, Saudi Arabia’s economy is heavily influenced by its strong energy sector, particularly through the activities of Saudi Aramco in production and international finance. The Kingdom actively engages in international trade to meet domestic needs and is also focused on attracting investment through initiatives like the Saudi Authority for Investment Marketing. The government demonstrates a commitment to social welfare and infrastructure development through various programs and projects. The strategic management of the sovereign wealth fund also plays a crucial role in the Kingdom’s long-term economic outlook.

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Express.js: Building RESTful APIs and Dynamic Templates

    Express.js: Building RESTful APIs and Dynamic Templates

    This comprehensive guide covers Node.js and Express.js, starting with basic concepts like Node modules and event emitters, and progressing to building custom emitters. The material then transitions to Express.js, explaining routing, middleware, template engines, and RESTful API development, including how to create dynamic routes. It further explores REST API structure with MongoDB, including setting up a database, creating schemas, and performing CRUD operations. The guide also addresses user authentication, including registration, login, cookie management, and role-based authorization. Advanced topics like aggregation pipelines and document references in MongoDB are then discussed. Finally, the guide introduces TypeScript with Node.js, focusing on setting up a TypeScript project, using interfaces, and integrating it with Express.js and Mongoose.

    Comprehensive Node.js Study Guide

    Quiz

    Answer each question in 2-3 sentences.

    1. What is the purpose of the Node.js module system?
    2. Explain the difference between module.exports and require in Node.js.
    3. What is the module wrapper in Node.js, and what parameters does it include?
    4. What is npm, and what are some key npm commands?
    5. What does the path module provide in Node.js, and give an example of how it’s used?
    6. How does the file system (fs) module work in Node.js?
    7. What are streams in Node.js, and why are they useful?
    8. Explain the difference between synchronous and asynchronous code execution.
    9. Describe promises in JavaScript and how they are used to handle asynchronous operations.
    10. What are async and await keywords used for and how do they relate to promises?

    Quiz Answer Key

    1. The Node.js module system allows developers to organize code into reusable pieces, promoting modularity and manageability. It allows for code to be split into multiple files and then each file can be treated as a separate module. This helps in creating large applications.
    2. module.exports is used to expose functionality (variables, functions, objects) from a module, making it available for use in other modules. require is used to import the functionality that has been exported from another module.
    3. The module wrapper is a function that wraps every Node.js module before it is executed, providing scope and access to module-specific variables. It includes parameters like exports, require, module, __filename (file name), and __dirname (directory name).
    4. npm (Node Package Manager) is the default package manager for Node.js, used to install, manage, and publish packages. Key commands include npm init (initialize a new project), npm install (install packages), npm uninstall (uninstall packages), and npm start (run scripts defined in package.json).
    5. The path module provides utilities for working with file and directory paths. For example, path.join() can be used to combine multiple path segments into a single path.
    6. The file system (fs) module allows interaction with the file system, enabling operations such as reading files, writing files, creating directories, and checking file existence. Functions like fs.readFile() read from files and functions like fs.writeFile() write to files.
    7. Streams in Node.js are a way to handle reading and writing data sequentially, piece by piece, instead of all at once. They are useful for processing large files or data flows efficiently, preventing memory overload.
    8. Synchronous code executes line by line, with each operation completing before the next one starts, blocking the execution thread. Asynchronous code allows multiple operations to run concurrently without blocking, typically using callbacks, promises, or async/await.
    9. Promises are JavaScript objects that represent the eventual completion (or failure) of an asynchronous operation. They provide a cleaner way to handle asynchronous code, avoiding callback hell and enabling better error handling through .then() and .catch() methods.
    10. async is used to define asynchronous functions that implicitly return a promise, while await is used inside async functions to pause execution until a promise is resolved. This syntax makes asynchronous code look and behave more like synchronous code, improving readability.

    Essay Questions

    1. Discuss the advantages and disadvantages of using the Node.js module system for organizing code in large applications. How does this system compare to other module systems in languages like Python or Java?
    2. Explain the concept of asynchronous programming in Node.js, detailing how callbacks, promises, and async/await are used to manage non-blocking operations. Provide examples of scenarios where asynchronous programming is essential for performance.
    3. Compare and contrast the use of streams and buffers in Node.js. Describe situations where streams are preferable to buffers and explain how streams can improve the efficiency of file processing.
    4. Describe the role of npm in Node.js development. Discuss the importance of package.json for managing dependencies and explain how semantic versioning is used to handle package updates and compatibility.
    5. Explain how to use the module wrapper and how it allows for parameters such as require, module, filename, and dirname to be used. Give examples of each one.

    Glossary of Key Terms

    • Module System: A feature of Node.js that allows code to be organized into reusable units called modules.
    • module.exports: A Node.js object that is used to expose functions, objects, or values from a module so they can be used by other parts of the application.
    • require: A Node.js function used to import modules and their exported values into the current file.
    • Module Wrapper: A function that wraps every Node.js module, providing a private scope and access to module-specific variables like exports, require, module, __filename, and __dirname.
    • npm (Node Package Manager): The default package manager for Node.js, used to install, manage, and publish packages.
    • npm init: An npm command that initializes a new Node.js project and creates a package.json file.
    • npm install: An npm command that installs packages and their dependencies into the current project.
    • npm uninstall: An npm command that removes packages from the current project.
    • npm start: An npm command that runs scripts defined in the package.json file, typically used to start the application.
    • package.json: A JSON file that contains metadata about a Node.js project, including dependencies, scripts, and project information.
    • Path Module: A Node.js module that provides utilities for working with file and directory paths.
    • File System (fs) Module: A Node.js module that provides methods for interacting with the file system, such as reading and writing files, creating directories, and checking file existence.
    • Streams: A way to handle reading and writing data sequentially, piece by piece, instead of all at once.
    • Synchronous Code: Code that executes line by line, with each operation completing before the next one starts.
    • Asynchronous Code: Code that allows multiple operations to run concurrently without blocking, typically using callbacks, promises, or async/await.
    • Promises: JavaScript objects that represent the eventual completion (or failure) of an asynchronous operation.
    • async: A keyword used to define asynchronous functions that implicitly return a promise.
    • await: A keyword used inside async functions to pause execution until a promise is resolved.

    Node.js Development: Concepts and Practices

    Okay, here’s a detailed briefing document summarizing the key themes and ideas from the provided text excerpts.

    Briefing Document: Node.js Development Concepts

    Overview:

    This document summarizes key concepts related to Node.js development, as presented in the provided text. The excerpts cover basic syntax, module systems, package management with NPM, core modules like path and fs (file system), asynchronous programming with Promises and Async/Await, basic HTTP server creation, database interaction using Mongoose with MongoDB, project structuring, authentication with JWT, file uploads with Multer, role-based access control, testing with Jest, deployment to Render and Vercel, and GraphQL basics including schemas, queries, mutations, and resolvers. There’s also a section touching on using Typescript with Node.js.

    Key Themes and Ideas:

    1. Node.js Basics & Execution:
    • Node.js allows execution of JavaScript code outside of a web browser environment.
    • Code can be executed directly in the terminal using node <filename.js>.
    • Synchronous code executes line by line. Asynchronous operations (like setTimeout) don’t block the execution of subsequent lines. “See this actually wait until unless this set timeout is getting run right so first time you’re getting this last line of the sync code and then after 2 seconds you’re getting that this message is delayed by 2 seconds.”
    1. Module System:
    • Node.js has a module system for organizing code into reusable pieces. “nodejs has a module system where you will be able to create different different modules and then you can use those modules in a single root module”
    • Each file is treated as a separate module. “each file again I’m repeating each file in nodejs will be treated as a separate modu okay”
    • module.exports is used to expose functionality from a module (similar to export in ES modules). “module. exports is used to expose functionality from a module”
    • require() is used to import functionality from other modules (similar to import). “require is used to import functionality from other modules as simple as that”
    • Node.js uses CommonJS module format.
    • Module wrapper: Every module is wrapped in a function before execution, providing variables like exports, require, module, __filename, and __dirname. “in nodejs every module whatever module that we are creating is wrapped in a function before it executed very very important thing and this rapper function we called as a module rapper function”
    • Demonstration of using module.exports and require to create and use a simple math module (first_module.js) in index.js.
    • Error handling using try…catch blocks. “to do this one right let’s go here okay first I’ll just minimize this one let’s create a very try and catch block now these all are also very basic JavaScript concept so we will take a try catch and catch will give us error right here”
    1. NPM (Node Package Manager):
    • NPM is the default package manager for Node.js. “npm is the default package manager for nodejs”
    • Allows installing and managing third-party libraries and tools.
    • Manages project dependencies. “this package.json file which is nothing but a Json file that contains a metadata about your project”
    • Enables running scripts defined in package.json.
    • Allows publishing your own packages.
    • Key NPM commands:
    • npm init: Initializes a new Node.js project, creating a package.json file. “to create a new package.json inside this folder first I’m going to open in our integrated terminal and let’s close everything and here to create it so we need to do npm it”
    • npm install <package_name>: Installs a specific package. “to do this one we need to use this npm install Command right so you do npm install and then the name of the package”
    • npm uninstall <package_name>: Uninstalls a package.
    • npm update <package_name>: Updates a package to the latest version.
    • npm run <script_name>: Runs a script defined in package.json. “to run a particular script so you can see that there is different different scripts right so you need to do npm run and then the script name and whatever scripts is defined in your package. JS and so that will be automatically run”
    • Distinction between dependencies (required for production) and devDependencies (needed for local development). “dependencies are all the packages that is actually required for your application to run in production”
    • “the D dependencies as the name suggest only needed for your local development and in right”
    1. Core Modules: Path and File System (fs)
    • Path Module: Provides utilities for working with file and directory paths. “path module provides utilities for working with file and directory paths”
    • path.dirname(__filename): Gets the directory name of the current file. “let’s log the current directory name so I’m going to do here console.log and let’s give like directory name right and here I’m going to give path dot so the um this is a method so this directory name and here you need to pass the file name so we’ll do file name”
    • path.basename(__filename): Gets the base name (filename) of the current file.
    • path.extname(__filename): Gets the file extension.
    • path.join(): Joins multiple path segments into one. “I’ll create one more Sal const join path and here we are going to give path. join and you can give different path let’s I want to go to/ user and then after this I want to merge or join documents this is just example”
    • path.resolve(): Resolves a sequence of paths to an absolute path.
    • path.normalize(): Normalizes a path string.
    • File System (fs) Module: Provides APIs for interacting with the file system. “the file system help you to work with files”
    • fs.existsSync(): Checks if a file or directory exists synchronously. “I’m going to check at this FS dot so we have exists sync okay so this here we’re going to check this data folder so this will check whether this is exist or not”
    • fs.mkdirSync(): Creates a directory synchronously. “fs. mkd sync now what again this will do this will create a that data folder right so I’m going to create pass your data folder and I’m going to just do a console.log and I’ll do data folder created”
    • fs.writeFileSync(): Writes data to a file synchronously. ” to create a file we are going to again you need to give the file path like where you want to create the file”
    • fs.readFileSync(): Reads data from a file synchronously.
    1. Asynchronous Programming:
    • Promises: Represents the eventual completion (or failure) of an asynchronous operation. “promise interface that we can use but let’s uh do this one with a simple example so I’m going to create a function I’m I’m going to do a delay function which will take a timer or time and this delay function will return return a promise”
    • States: Pending, Fulfilled (Resolved), Rejected.
    • .then(): Handles the fulfilled (resolved) state of a Promise. “this will give a DOT then right which I’m pretty sure you already know I’m you guys might be thinking that what I’m doing all of this but I think it’s important to just revise all of this one more time even if you know right so this will give you then which if the promise is getting resolv so it will come inside this then block or on full field”
    • .catch(): Handles the rejected state of a Promise. ” I’m going to catch here so this will be my error block and here I’m going to just log my error and let’s do a console do log and I’m going to log my error here”
    • Async/Await: Syntactic sugar over Promises, making asynchronous code easier to read and write. “asnc function that whatever each and every asnc function that you’ll be creating it will always always return a promise very very important every time it will return a promise”
    • async keyword: Marks a function as asynchronous; it implicitly returns a Promise. “I’m going to do as sync function right because we need to give the ASN keyword”
    • await keyword: Pauses the execution of an async function until a Promise is resolved. “the a keyword is is only be used inside your Hing function you can’t use outside of it right and what that a keyword does so it pauses the execution of the function until unless your promise is getting resolved”
    • Example of creating a delay function using setTimeout and Promises, and then using async/await to call it.
    1. Basic HTTP Server:
    • Using the http module to create a basic HTTP server.
    • Handling requests and sending responses.
    • Setting response headers.
    • Example of creating a simple server that responds with “Hello Node!” based on different routes.
    1. MongoDB and Mongoose:
    • Mongoose is an Object Data Modeling (ODM) library for MongoDB and Node.js.
    • It provides a higher-level abstraction for interacting with MongoDB.
    • Connecting to MongoDB:Using mongoose.connect() to establish a connection to the database. Requires a connection string (MongoDB URI).
    • Error handling for connection failures.
    • Defining Schemas:Using mongoose.Schema to define the structure of documents in a MongoDB collection. “if you go here first you need to create a schema right so this mongos will give you this schema property and using this you’ll be able to create a new schema so you can see that new schema and then all the properties”
    • Defining data types for each field in the schema (e.g., String, Number, Boolean, Date, Array).
    • Setting validation rules (e.g., required, unique). “I want to tell mongos that okay this user the whatever public will come to register in your website the enam can be only a user so it can be only a normal user or it can be a admin user”
    • Setting default values for fields.
    • Creating Models:Using mongoose.model() to create a model based on a schema. “this will be mongus now to create a model you need to give a model and this will take a name okay this will take a name which will be this in your database it will be stored in that particular name whatever name you give let’s say you give this one as user so this will be the collection name in your database that I I’m storing all my user in this user collection”
    • Performing CRUD Operations (Create, Read, Update, Delete):create(): Creates a new document in the database.
    • find(): Retrieves documents from the database.
    • findById(): Retrieves a document by its ID.
    • updateOne(): Updates a document in the database.
    • deleteOne(): Deletes a document from the database.
    • Querying Data:Using query operators (e.g., $gt for greater than, $lt for less than, $in for inclusion in an array) to filter data.
    • Using logical operators (e.g., $and, $or) to combine multiple conditions.
    • Sorting data using sort().
    • Limiting the number of results using limit().
    • Pagination using skip() and limit().
    • Aggregation:Using the aggregation pipeline to perform complex data transformations. “this will be aggregation right and this aggregations pipeline actually is a concept from mangos where we can do a different set of things”
    • $match: Filters documents based on specified criteria.
    • $group: Groups documents based on a specified field and performs calculations (e.g., average, sum, count) on the grouped data.
    • $project: Selects specific fields to include in the output documents.
    1. Project Structuring:
    • Importance of organizing code into a well-defined folder structure. “till this part we haven’t worked on proper folder structure right each and everything like we have created inside server.js but that is not the way so how we are going to manage our project”
    • Common folder structure:
    • database: Contains database connection logic (db.js).
    • models: Contains Mongoose models (schemas).
    • routes: Defines API routes. “each and so for example let’s say you’re having a very complex application uh where you’re having multiple you need to work with multiple collection let’s say some e-commerce project so you’ll be having products you’ll be having card you’ll be having checkout you’ll be product details so for each and everything you’ll be having different different routes so that you’re not going to write each and everything on one single file and it will become messy so that is the reason we’ll be having a routes folder right”
    • controllers: Handles the main code logic for each route, interacting with the database. “controllers basically handle our main code logic that corate or basically connect with sorry not connect that uh work with your mongod database and then that controller we are going to use inside our outs”
    • middleware: Contains middleware functions. “whatever middleware related Logics that we’ll be writing we are going to write inside that folder”
    • helper: Contains helper/utility functions.
    • .env: Stores environment variables (e.g., database URI, API keys). “why we need the NV file let’s say the mongod the mongodb URL or let’s say some sensitive information some token and everything whatever we’ll be using in our project we are not going to push those changes in our GitHub right”
    • Using .gitignore to exclude sensitive files (e.g., .env, node_modules) from version control.
    1. Authentication and Authorization:
    • JWT (JSON Web Token):Using JWT for user authentication. “we need to authenticate every request by by passing a JWT token and then check if it’s a authenticated or not”
    • Generating a JWT upon successful login. “if those condition meets then we create our GWT token so that can access their route that’s it now this is like a very simple but the whole entire work how the authentication and authorization work behind the scene it”
    • Verifying the JWT in middleware to protect routes. “it that okay this will be a our security so we’ll be passing something and based on that we be able to check the data”
    • jsonwebtoken library for creating and verifying JWTs.
    • bcrypt.js:Hashing passwords before storing them in the database. “we need to has it or we need to store in encrypted form so that is the reason we’re going to use this most used package and that is called the bcrypt JS what this does you can see that it will create a Sol to protect against your Rainbow table attacks”
    • Comparing hashed passwords during login.
    • Using bcrypt.hash() to hash a password.
    • Using bcrypt.compare() to compare a password with its hash.
    • Role-Based Access Control (RBAC):Implementing RBAC to restrict access to certain routes based on user roles (e.g., admin, user). “So role based authentication or access control actually means what let’s say if there is a admin panel so you can only able to see if you are an admin user okay if you are a normal user it might be you’re not able to see”
    • Adding a role field to the user schema.
    • Creating middleware to check user roles before granting access to routes.
    1. File Uploads with Multer:
    • Using Multer middleware to handle file uploads.
    • Configuring Multer to specify the storage location for uploaded files.
    • Handling single and multiple file uploads.
    • Storing file information in the database.
    • Cloudinary is an option for file storage
    1. Testing with Jest:
    • Using Jest for writing unit tests. “let’s see that we’re going to how we are going to write some test okay so we’re going to use J and also the super test right and using these two package we we are going to write API test now as I already told you that what the unit test unit tests actually helps you to create the test for each and individual method not method each and individual modules it will not trigger any other modules it just want to test a single unit that’s what it”
    • Writing test cases to verify API endpoints.
    • supertest for sending HTTP requests to the API during testing.
    • Using expect() to make assertions about the response.
    1. Deployment (Render and Vercel):
    • Deploying Node.js applications to cloud platforms like Render and Vercel.
    • Render:Creating a render.yaml file to configure the deployment.
    • Specifying the build command and start command in the render.yaml file.
    • Setting environment variables in the Render dashboard.
    • Vercel:Configuring the build and output options in the Vercel dashboard.
    • Setting environment variables in the Vercel dashboard.
    • Importance of modifying package.json to ensure correct deployment.
    1. GraphQL:
    • GraphQL is a query language for APIs (developed by Facebook). “graph kill is developed by Facebook and uh this is nothing just a query language for apis”
    • Advantages over REST:
    • Precise data fetching: Clients can request only the data they need.
    • Single endpoint for all data operations.
    • Improved performance due to reduced over-fetching and under-fetching.
    • Key GraphQL concepts:
    • Schema: Defines the structure of the data and the operations that can be performed. “the schema file will Define your schema for your project that you are creating now what actually that schema is that is nothing but the structure of your data or the operation that you will perform”
    • Types: Define the data types of the fields in the schema (e.g., String, Int, Float, Boolean, ID). “this type keyword you need to give and then the name so let’s give this one as product so this is your type now inside this you need to specify that what kind of fields this product will have”
    • Queries: Used to fetch data.
    • Mutations: Used to modify data (create, update, delete). “mutation is where we’ll be able to create create a new product”
    • Resolvers: Functions that provide the data for the fields in the schema. “resolvers simply resolve what you are going to do so how you’re going to face the data”
    • Using graphql-tag to write GraphQL schemas and queries.
    1. TypeScript with Node.js:
    • Using TypeScript to add static typing to Node.js applications. “TypeScript is what it’s a superet of Javascript and that is actually what it has a static typing so whenever you’ll be creating projects you might uh or you usually wanted to write your function or the properties with a specific types”
    • Benefits of using TypeScript:
    • Improved code readability and maintainability.
    • Early detection of errors during development.
    • Better code completion and refactoring support in IDEs.
    • Defining interfaces to specify the types of objects. “you can create custom types remember I created this custom request and then I extend the request object from Express similarly for this one also you can extend the main document and then you can add your own Uh custom uh schemas or user structure whatever you you will be creating here”
    • Typing Mongoose schemas and models.

    Overall Impression:

    The text provides a broad overview of essential Node.js development concepts, ranging from basic syntax and module management to advanced topics like asynchronous programming, database interaction, testing, deployment, and GraphQL. The excerpts emphasize the importance of code organization, proper error handling, and understanding the underlying principles of each technology.

    Node.js Development: Frequently Asked Questions

    Frequently Asked Questions about Node.js Development

    Here are some frequently asked questions, based on the provided documentation.

    1. What is the Node.js module system, and why is it important?

    The Node.js module system allows you to organize your code into reusable pieces. Instead of writing all code into one large file, you can break it down into separate modules (files). This modularity makes code more manageable, readable, and reusable, particularly in large applications. Each file in Node.js is treated as a separate module. The module system relies on module.exports (to expose functionality from a module) and require (to import functionality from other modules).

    2. How do module.exports and require work in Node.js?

    module.exports is used to expose functions, objects, or values from a Node.js module, making them available for use in other modules. Think of it like ‘export’ in ES modules. require is used to import the functionality that has been exposed by other modules via module.exports. It’s similar to ‘import’ in ES modules, but follows the CommonJS syntax used by Node.js. When you require a module, you get whatever was assigned to module.exports in that module.

    3. What is the module wrapper in Node.js?

    In Node.js, every module’s code is wrapped inside a function before execution. This wrapper function provides several arguments: exports, require, module, __filename (the current file’s name), and __dirname (the current directory’s name). This wrapper provides a level of privacy and encapsulation for the module’s code, preventing variables and functions from polluting the global scope.

    4. What is npm (Node Package Manager), and what are some essential commands?

    npm is the default package manager for Node.js. It allows you to install, manage, and publish Node.js packages (libraries and tools). Key npm commands include:

    • npm init: Initializes a new Node.js project and creates a package.json file. Using npm init -y automatically accepts the defaults and creates a package.json file without prompting for input.
    • npm install <package_name>: Installs a specific package as a dependency for your project.
    • npm uninstall <package_name>: Uninstalls a package from your project.
    • npm update <package_name>: Updates a package to the latest version.
    • npm run <script_name>: Runs a script defined in the package.json file.

    5. What is the purpose of package.json?

    The package.json file is a JSON file that contains metadata about your Node.js project. It lists project dependencies (packages required for the application to run), development dependencies (packages needed only for development, like testing tools), scripts (commands to automate tasks), and other project-related information.

    6. How does the path module in Node.js help with file paths?

    The path module provides utilities for working with file and directory paths. It offers functions to:

    • Get the directory name of a file (path.dirname()).
    • Extract the base name (file name) from a path (path.basename()).
    • Get the file extension (path.extname()).
    • Join multiple path segments into a single path (path.join()).
    • Resolve a path to an absolute path (path.resolve()).
    • Normalize a path to remove redundant separators (path.normalize()).

    7. How do you handle asynchronous operations in Node.js using Promises, async, and await?

    • Promises: Promises represent the eventual result of an asynchronous operation. They can be in one of three states: pending, fulfilled (resolved), or rejected. Promises provide a structured way to handle asynchronous code, avoiding callback hell. You can use .then() to handle successful resolutions and .catch() to handle rejections.
    • Async/Await: async and await are syntactic sugar over Promises, making asynchronous code look and behave more like synchronous code. An async function always returns a Promise. The await keyword can only be used inside an async function and pauses the execution of the function until a Promise is resolved or rejected. This makes asynchronous code easier to read and write.

    8. How can you connect to a MongoDB database using Mongoose and define a schema?

    First, install the Mongoose package (npm install mongoose). Then, use mongoose.connect() to connect to your MongoDB database, providing the connection URL. After the connection is successful, define a schema using new mongoose.Schema(), specifying the data types and properties for each field in your documents. Then use mongoose.model() to create a model. This model allows you to interact with your MongoDB database collection using Mongoose’s methods (e.g., find(), create(), save(), delete(), aggregate())

    Node.js Custom Event Emitter Guide

    A custom event emitter can be created in Node.js using the events module. Here’s how it works:

    1. Import the events module.
    • This module is required to create event emitters.
    • const eventEmitter = require(‘events’).
    1. Create a class that extends EventEmitter.
    • This class will serve as the custom event emitter.
    • It inherits the emit and on methods from the EventEmitter class.
    • class MyCustomEmitter extends eventEmitter {
    • constructor() {
    • super();
    • this.greeting = ‘Hello’;
    • }
    • greet(name) {
    • this.emit(‘greeting’, this.greeting, name);
    • }
    • }
    1. Define a constructor.
    • The constructor can be used to set up initial properties for the emitter.
    • It calls super() to invoke the constructor of the parent class (EventEmitter).
    • In the example, the greeting property is initialized.
    1. Create a method to emit events.
    • This method uses the emit method to trigger an event with a specific name.
    • It can also pass arguments to the listeners.
    • In the example, the greet method emits a greeting event with the greeting and a name.
    1. Create an instance of the custom emitter.
    • This creates an object that can emit and listen for events.
    • const myCustomEmitter = new MyCustomEmitter();
    1. Register a listener for the event.
    • The on method is used to register a listener function that will be executed when the event is emitted.
    • The listener function receives the arguments passed by the emit method.
    • myCustomEmitter.on(‘greeting’, (greeting, name) => {
    • console.log(‘Greeting event:’, greeting, name);
    • });
    1. Emit the event.
    • Call the method that emits the event to trigger the listener function.
    • myCustomEmitter.greet(‘Sumit’);

    When the code is executed, the greet method emits the greeting event. This triggers the listener function, which logs “Greeting event: Hello Sumit” to the console.

    Creating an Express Server in Node.js

    An Express server in Node.js can be created as follows.

    Key Features of Express.js

    • Routing: Express.js is known for its routing capabilities.
    • Middleware: It uses middleware.
    • Template Engines: It supports template engines like EJS and Pug for dynamic HTML generation.
    • Static File Serving: It can serve static files.
    • Error Handling: It offers error handling.
    • RESTful API Development: It is useful for creating RESTful APIs.

    Steps to Create an Express Server

    1. Import the Express module: This is done using the require function.
    2. const express = require(‘express’);
    3. Create an Express application: Invoke the express module which returns an express application.
    4. const app = express();
    5. Define a port to listen for client requests.
    6. const port = 3000;
    7. Create routes: Define routes for different HTTP methods (GET, POST, etc.) and URL paths.
    8. app.get(‘/’, (req, res) => {
    9. res.send(‘Hello World!’);
    10. });
    • The app.get() method specifies a route for handling GET requests to the root URL (“/”).
    • The callback function receives a request object (req) and a response object (res).
    • The res.send() method sends the response “Hello World!” back to the client.
    1. Start the server: Use the app.listen() method to start the server and listen for incoming connections on a specific port.
    2. app.listen(port, () => {
    3. console.log(`Server is running at port ${port}`);
    4. });
    • This makes the server accessible at localhost:3000.

    Middleware

    • To use middleware, the app.use() method is employed.
    • Middleware functions have access to the request and response objects, and the next middleware function in the stack.
    • express.json() is a built-in middleware used to parse JSON data in request bodies.

    Application Settings

    • app.set() is used to set application-level settings, such as the view engine.
    • For example, to set the view engine to EJS:
    • app.set(‘view engine’, ‘ejs’);

    Example

    const express = require(‘express’);

    const app = express();

    const port = 3000;

    app.get(‘/’, (req, res) => {

    res.send(‘Hello World!’);

    });

    app.listen(port, () => {

    console.log(`Server is running at port ${port}`);

    });

    Express.js Dynamic Routing

    Dynamic routing in Express.js involves creating routes where a portion of the URL can vary. This allows a single route to handle requests for multiple resources based on a parameter passed in the URL.

    Key Concepts and Implementation

    • Defining Dynamic Routes: To create a dynamic route, a colon (:) is used before the parameter name in the route path. For example, /products/:id defines a route where :id is a dynamic parameter.
    • Accessing Route Parameters: The req.params object is used to access the values of the dynamic parameters. For example, in the route /products/:id, the value of id can be accessed using req.params.id.
    • Example:
    • app.get(‘/products/:id’, (req, res) => {
    • const productID = parseInt(req.params.id); // Parse the ID
    • // Logic to retrieve product from a database or array
    • // Send the product as a JSON response
    • });

    Note: Information regarding retrieving a product from a database or array was not found in the source.

    Use Cases

    • E-commerce Applications: Dynamic routes are commonly used in e-commerce to display details for specific products. For example, clicking on a product with id2 would navigate to /products/2.
    • API Endpoints: They are useful for creating API endpoints where a specific resource needs to be accessed based on its ID or another identifier.

    Important Notes

    • Parameter Naming: When defining dynamic routes, the name given to the parameter after the colon (e.g., :id) must be used to access its value in req.params (e.g., req.params.id).
    • Data Retrieval: In real-world scenarios, the dynamic value captured from the URL is often used to query a database and retrieve the corresponding data.
    • Middleware: Dynamic routes can also be used with middleware to perform actions based on the parameters.

    By using dynamic routing, Express.js applications can create more flexible and efficient routes that adapt to different request parameters.

    Express.js Template Engines for Dynamic HTML Generation

    Template engines in Express.js are used to generate dynamic HTML pages with plain JavaScript. Template engines can help to generate dynamic HTML pages in Express applications.

    Key Aspects

    • Definition: A template engine is HTML markup with plain JavaScript.
    • Purpose: Template engines help in generating dynamic HTML pages in Express applications.

    Example with EJS

    • Set the View Engine: Tell Express to use EJS as the view engine.
    • app.set(‘view engine’, ‘ejs’);
    • Set the Views Directory: Specify the directory where the view files are located.
    • app.set(‘views’, path.join(__dirname, ‘views’));
    • Create Views: Create a views folder where the HTML files will reside. Each file in this folder will be treated as a separate module.
    • Render Views: Use res.render() to render the template and pass data to it.
    • app.get(‘/’, (req, res) => {
    • res.render(‘home’, { title: ‘Home’, products: products });
    • });
    • In this example, home.ejs is rendered, and data such as title and products are passed to the template.
    • Access Data in Templates: Use special tags to output dynamic values in the template.
    • <h1><%= title %></h1>
    • <ul>
    • <% products.forEach(product => { %>
    • <li><%= product.title %></li>
    • <% }); %>
    • </ul>
    • The <%= … %> tag is used to output the value of a variable.
    • The <% … %> tag is used for control flow, such as loops.

    Benefits of Using Template Engines

    • Dynamic HTML: Template engines allow generating HTML pages dynamically based on data from the server.
    • Code Reusability: Common components, like headers and footers, can be created as partials and included in multiple views.

    By using template engines like EJS, developers can create dynamic and maintainable web applications with Express.js.

    RESTful API Development with Express.js: A Practical Guide

    RESTful API development involves creating APIs that adhere to the principles of REST (Representational State Transfer) architecture. Express.js is a framework that provides features for building such APIs in Node.js.

    Key Features of Express.js for API Development

    • Routing: Manages routes.
    • Middleware: Uses middleware.
    • RESTful API Development: Facilitates RESTful API creation.

    Project Structure

    To organize an API project, a typical structure includes:

    • Models: Data models for interacting with the database.
    • Controllers: Logic for handling requests and responses.
    • Routes: Defines the API endpoints.

    Steps to Build a RESTful API

    1. Set up the project: Create a new Node.js project and initialize package.json.
    2. npm init -y
    3. Install Express.js: Install Express.js and any other required packages such as body-parser.
    4. npm install express
    5. Create the main application file: Create app.js (or a similar name) to set up the Express server.
    6. Require Express: Import the Express module.
    7. const express = require(‘express’);
    8. Create an Express application: Invoke express to create an application.
    9. const app = express();
    10. Define middleware: Use middleware to parse JSON data.
    11. app.use(express.json());
    12. Define routes: Create routes for different API endpoints.
    • GET: Retrieve data.
    • app.get(‘/api/books’, (req, res) => {
    • // Logic to get all books
    • });
    • app.get(‘/api/books/:id’, (req, res) => {
    • // Logic to get a single book by ID
    • });
    • POST: Create new data.
    • app.post(‘/api/books’, (req, res) => {
    • // Logic to add a new book
    • });
    • PUT: Update existing data.
    • app.put(‘/api/books/:id’, (req, res) => {
    • // Logic to update a book
    • });
    • DELETE: Delete data.
    • app.delete(‘/api/books/:id’, (req, res) => {
    • // Logic to delete a book
    • });
    • Dynamic routes can be created using colons to define parameters.
    1. Start the server: Specify the port and start listening.
    2. const port = 3000;
    3. app.listen(port, () => {
    4. console.log(`Server is running on port ${port}`);
    5. });

    Testing APIs with Postman

    • Install Postman: Download and install Postman for testing API endpoints.
    • Create requests: Set up requests in Postman to test each route.
    • Specify the type (GET, POST, PUT, DELETE).
    • Enter the URL.
    • Include any required headers or body data.
    • Send requests and verify responses: Send the requests and verify that the responses are as expected.

    By following these steps, you can create a RESTful API using Express.js, organize the project structure, and test the API endpoints with Postman.

    Node JS Full Course 2024 | Complete Backend Development Course | Part 1

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Laravel Project: Building a Car Management System

    Laravel Project: Building a Car Management System

    This text serves as a comprehensive guide to understanding and building web applications using the Laravel PHP framework. It explores key aspects such as project structure, request lifecycles, configuration, routing, debugging, controllers, views with Blade templating, database migrations, Eloquent ORM, relationships, factories, and seeders. The material provides hands-on examples and step-by-step instructions. Practical demonstrations of common tasks such as creating routes, controllers, models, database operations, component creation, and pagination are included. The goal is to equip developers with the knowledge and skills to create dynamic and maintainable web applications with Laravel.

    Laravel Project Deep Dive Study Guide

    Quiz

    1. What is the purpose of the public folder in a Laravel project? The public folder is the single web-accessible directory. It contains the index.php file, which serves as the entry point for all requests to the application, and other assets like CSS, JavaScript, and images.
    2. Why is it important not to commit the .env file to a Git repository? The .env file contains sensitive information such as database credentials, API keys, and other configuration details. Committing it could expose this information to unauthorized users.
    3. Explain the Laravel request lifecycle. The request starts at public/index.php, which loads the autoloader and bootstraps the application. The request is then passed to the router, which identifies and executes the appropriate controller action, potentially involving middleware and rendering views, before sending a response back to the user.
    4. How can you customize configuration options that are not available in the .env file? Configuration files are located in the config folder. If a specific option is not available in the .env file, you can modify the corresponding configuration file within the config folder or use the php artisan config:publish command to make additional configuration files available.
    5. What is the difference between the dump() and dd() debugging functions in Laravel? The dump() function prints variable information without halting code execution, allowing the script to continue. The dd() function (dump and die) prints variable information and immediately stops the execution of the script.
    • List the six primary HTTP request methods and their typical uses.GET: Retrieve information.
    • POST: Create new data.
    • PUT: Update existing data (replaces the entire resource).
    • PATCH: Update existing data (partially modifies the resource).
    • DELETE: Delete data.
    • OPTIONS: Retrieve communication options for a resource.
    1. How do you define a route with a required parameter in Laravel? You define a route with a required parameter by enclosing the parameter name within curly braces in the URI (/product/{id}). The parameter value is then passed as an argument to the route’s associated function.
    2. Explain the purpose of the where method when defining routes in Laravel. The where method is used to add constraints to route parameters, ensuring that they match a specific pattern, like being numeric (whereNumber(‘id’)) or containing only alphabetic characters (whereAlpha(‘username’)).
    3. What are Blade directives, and how do they simplify template development? Blade directives are special keywords prefixed with @ symbols, providing a shorthand way to perform common tasks in Blade templates, such as conditional statements, loops, and including subviews. They are compiled into plain PHP code.
    4. Explain the purpose of route naming in Laravel, and how do you generate URLs using named routes? Route naming allows you to refer to routes by their name rather than their URI. You can generate URLs using the route() helper function, passing the route’s name as an argument (route(‘routeName’)).

    Quiz Answer Key

    1. The public folder is the single web-accessible directory. It contains the index.php file, which serves as the entry point for all requests to the application, and other assets like CSS, JavaScript, and images.
    2. The .env file contains sensitive information such as database credentials, API keys, and other configuration details. Committing it could expose this information to unauthorized users.
    3. The request starts at public/index.php, which loads the autoloader and bootstraps the application. The request is then passed to the router, which identifies and executes the appropriate controller action, potentially involving middleware and rendering views, before sending a response back to the user.
    4. Configuration files are located in the config folder. If a specific option is not available in the .env file, you can modify the corresponding configuration file within the config folder or use the php artisan config:publish command to make additional configuration files available.
    5. The dump() function prints variable information without halting code execution, allowing the script to continue. The dd() function (dump and die) prints variable information and immediately stops the execution of the script.
    • GET: Retrieve information.
    • POST: Create new data.
    • PUT: Update existing data (replaces the entire resource).
    • PATCH: Update existing data (partially modifies the resource).
    • DELETE: Delete data.
    • OPTIONS: Retrieve communication options for a resource.
    1. You define a route with a required parameter by enclosing the parameter name within curly braces in the URI (/product/{id}). The parameter value is then passed as an argument to the route’s associated function.
    2. The where method is used to add constraints to route parameters, ensuring that they match a specific pattern, like being numeric (whereNumber(‘id’)) or containing only alphabetic characters (whereAlpha(‘username’)).
    3. Blade directives are special keywords prefixed with @ symbols, providing a shorthand way to perform common tasks in Blade templates, such as conditional statements, loops, and including subviews. They are compiled into plain PHP code.
    4. Route naming allows you to refer to routes by their name rather than their URI. You can generate URLs using the route() helper function, passing the route’s name as an argument (route(‘routeName’)).

    Essay Questions

    1. Discuss the significance of the .env file in Laravel development, detailing its role in managing application configuration and the security implications of mishandling it. Explain best practices for managing environment variables in a collaborative development environment.
    2. Describe the Laravel request lifecycle in detail, from the initial request to the final response. Explain the roles of key components such as the router, middleware, controllers, and views, and how they interact to process a request.
    3. Explain how the Laravel Blade templating engine facilitates the creation of dynamic and reusable user interfaces. Discuss the advantages of using Blade directives for common tasks like conditional rendering, looping, and including subviews, and provide examples of how these directives simplify template development.
    4. Discuss the role and implementation of model factories and seeders in Laravel. Explain how they are used to generate realistic data for testing and development, and provide a detailed example of creating a factory with relationships to other models.
    5. Describe how Laravel’s Eloquent ORM simplifies database interactions and management. Discuss different types of relationships including one-to-one, one-to-many, and many-to-many. Explain best practices for working with Eloquent models, including defining relationships, using scopes, and performing CRUD operations efficiently.

    Glossary of Key Terms

    • Artisan: Laravel’s command-line interface (CLI) used for various development tasks like generating files, running migrations, and clearing cache.
    • Blade: Laravel’s templating engine that allows developers to use directives and simple syntax to create dynamic views.
    • Composer: A dependency manager for PHP, used to manage project dependencies like Laravel packages.
    • .env file: A configuration file in Laravel that stores environment-specific settings such as database credentials and API keys.
    • Eloquent: Laravel’s ORM (Object-Relational Mapper) that provides a simple and enjoyable way to interact with databases.
    • Facade: A static interface to classes available in the application’s service container, providing a convenient way to access Laravel’s features.
    • Factory: A class that generates fake data for seeding databases or creating test data.
    • Migration: A PHP file that defines database table schema changes, allowing for easy database version control.
    • Middleware: Code that executes before or after a request is handled by the application, used for tasks like authentication, logging, and request modification.
    • ORM (Object-Relational Mapper): A technique that lets you query and manipulate data from a database using an object-oriented paradigm.
    • Route: A definition in Laravel that maps a specific URI to a controller action or closure.
    • Seeder: A class that populates the database with initial data using model factories or custom data.
    • Service Container: A powerful tool for managing class dependencies and performing dependency injection in Laravel.
    • Trait: A mechanism for code reuse in PHP, allowing developers to inject methods and properties into classes without inheritance.
    • View: A PHP file containing HTML and Blade directives used to display data in a Laravel application.

    Laravel Fundamentals: A Concise Overview

    Okay, here’s a detailed briefing document summarizing the key themes and ideas from the provided text excerpt.

    Briefing Document: Laravel Fundamentals

    Overview:

    This document summarizes key aspects of Laravel development as described in the provided text. It covers project structure, routing, debugging, request lifecycle, configuration, database interaction, ORM (Eloquent), templating (Blade), and response generation. The text serves as a practical guide, demonstrating code examples and artisan commands alongside explanations.

    I. Project Structure & Core Concepts

    • Directory Structure: The document outlines the standard Laravel project directory structure.
    • app: Contains the core application logic, including controllers, models, etc. The text notes it can house user-uploaded files.
    • bootstrap: Contains the app.php file, which bootstraps the application.
    • config: Holds configuration files. “Most of the configuration options regarding LL is available in file.”
    • database: Contains factories, migrations, and seeds for database management. “the database folder contains factories migrations and sits this will also contain database.sql file if your database driver is set to sq light.”
    • public: The web-accessible directory, containing index.php (the entry point). “public folder is single web accessible folder index PHP right here is the entry script and the request starts from this index PHP.”
    • resources: Contains assets like CSS, JavaScript, and views. Views are Blade templates.
    • routes: Defines application routes (web, API, console). “RS folder contains the main rots for our application whether those are web based roads or console based roads.”
    • storage: Stores generated files, user uploads, cached views, sessions, and logs.
    • tests: Contains application tests.
    • vendor: Contains third-party packages (Composer dependencies).
    • Environment Configuration: .env file is crucial for environment-specific settings (database credentials, API keys, etc.). It should not be committed to Git. .env.example serves as a template. “enf do example file is the simple example file of you should never comit and push file in your git repository because it might contain sensitive data instead you’re going to comment and push. example file which should not contain sensitive data.”

    II. Request Lifecycle

    • The request starts at public/index.php.
    • index.php includes vendor/autoload.php, then creates the application.
    • Configuration files are loaded, and service providers are initiated. “The application itself loads configuration files and initiates service providers.”
    • Service Providers: Prepare and configure the application (registering services, event listeners, middleware, and routes). “Service providers in Lal prepare and configure the application handling tasks like registering Services event listeners middle wear and Roots.”
    • Router: Takes the request, finds the corresponding route, and executes the associated function. “the request is passed to router the router takes the request finds the corresponding function to execute and executes that.”
    • Middleware: Can execute code before the request reaches the action and before the response is sent back to the user.
    • Controller: Handles the request logic and can render a view. “the controller will send the response back to the user or if the middle we is registered the response will be passed to Middle we first and then returned to the user the controller action might also optionally render The View.”

    III. Routing

    • Basic Routing: Defines routes in routes/web.php.
    • Example: Route::get(‘/about’, function () { return view(‘about’); });
    • HTTP Methods: Laravel supports common HTTP methods: GET, POST, PUT, PATCH, DELETE, OPTIONS.
    • Redirect Routes: Route::redirect(‘/old-url’, ‘/new-url’, 301); (301 is a permanent redirect). “we call the redirect method the first argument in this method is the rout to which we are going to listen to and the second argument is where the user should be redirected by default this redirect happens with status code 302 but we can also provide a third argument which is going to be the status code.”
    • View Routes: Route::view(‘/contact’, ‘contact’, [‘phone’ => ‘123-456-7890’]); Directly renders a view. “the following code will listen to SL contact road and it will immediately try to render a view called Contact.”
    • Route Parameters:Required: Route::get(‘/product/{id}’, function ($id) { … }); “Road parameters needs to be inside curly braces.”
    • Optional: Route::get(‘/product/{category?}’, function ($category = null) { … }); “to make this optional we’re going to provide question mark before this closing curly brace.”
    • Route Constraints: Restricting route parameters using where() method.
    • Route::get(‘/product/{id}’, function ($id) { … })->where(‘id’, ‘[0-9]+’); id must be numeric. “we number accepts an argument and we’re going to provide a parameter so in this case I’m going to provide it and that’s it.”
    • Route::get(‘/user/{username}’, function ($username) { … })->where(‘username’, ‘[a-zA-Z]+’); username must be alphabetic. “the following Road definition will match the following URLs whenever the ID only contains numeric values it is going to match but it is not going to match anything that does not contain numeric values now.”
    • Custom Regex: Route::get(‘/user/{username}’, function ($username) { … })->where([‘lang’ => ‘[a-z]{2}’, ‘id’ => ‘[0-9]{4,}’]); More complex validation. “the length needs to be exactly two characters any symbol from A to Z and let’s use two character annotation however the ID needs to be digits let’s make sure it is a digit and also we need to make sure that it is at least four characters length.”
    • Route Naming: Route::get(‘/about’, function () { … })->name(‘about’); Used for generating URLs. route(‘about’) will return the /about URL. “Whenever we access slab about URL we see the following content this is how we Define the TRU now let’s see what other request methods are available in LL there are totally six request methods available get post put patch delete and option get is mostly used to get the information post is to create the information put is to update the information and Patch is also for to update the information delete is to delete the information and options is to get more information about the specific root in LL.”
    • Route Prefixes: Route::prefix(‘admin’)->group(function () { Route::get(‘/users’, function () { … }); }); Groups routes under a common prefix.
    • Controller Namespaces: Route::controller(CarController::class)->group(function () { … }); Groups routes using the same controller.
    • Single Action Controllers: Controllers with a single __invoke method. “to generate single action controller we’re going to execute the following commment PHP artisan make controller we’re going to provide the controller name like show car controller for example and then we’re going to provide a flag D- invocable.”
    • Resource Controllers: Provide a standard way to handle CRUD operations for a resource. Route::resource(‘products’, ProductController::class); “In LEL a controller is a special type of controller that provides a convenient way to handle typical crowd operations for a resource such as a database table.”

    IV. Debugging

    • dump($variable): Prints information about a variable. “dump is a Lal built-in function which prints every information about the given variable and it prints pretty nicely.”
    • dd($variable): Prints information and stops code execution. “DD which actually prints the variable and stops code execution.”

    V. Configuration

    • Configuration options are primarily set in the .env file.
    • config() helper function accesses configuration values. Example: config(‘app.name’).
    • Configuration files reside in the config directory.
    • Publishing Configuration Files: php artisan config:publish [config_file] – copies configuration files from the vendor directory to the config directory for customization.

    VI. Templating with Blade

    • Blade Templates: Located in resources/views. Use .blade.php extension.
    • Variable Output: {{ $variable }} Automatically escaped to prevent XSS. {!! $variable !!} Unescaped output.
    • Blade Directives: Keywords prefixed with @ (e.g., @if, @foreach). “every directive starts with eight symbol for example there is a for each directive.”
    • Escaping Blade Directives: Used @ symbol two times in order to correctly display @foreach or @if
    • Verbatim Directive: @verbatim … @endverbatim Prevents Blade from processing the content within the block.
    • Shared Data: View::share(‘key’, ‘value’); Makes data available to all views.
    • Conditional Classes/Styles: @class([‘class-name’ => $condition]), @style([‘property’ => ‘value’ => $condition])
    • Including Subviews: @include(‘path.to.view’, [‘data’ => $data])@includeIf: Includes only if the view exists.
    • @includeWhen: Includes based on a condition.
    • @includeUnless: Includes unless a condition is met.
    • @includeFirst: Includes the first existing view from a list.
    • Looping with @each: @each(‘view.name’, $array, ‘variable’) Renders a view for each item in an array.
    • Raw PHP: @php … @endphp Executes raw PHP code within a Blade template. @use directive imports classes.
    • Layouts:@extends(‘layouts.app’): Specifies the parent layout.
    • @section(‘title’) … @endsection: Defines a section.
    • @yield(‘title’): Placeholder in the layout for a section.
    • @include(‘partials.header’): Includes a partial view.
    • Stacks: Manage the pushing of named CSS or JavaScript to a master layout.

    VII. Database & Eloquent ORM

    • Database Configuration: Configured in config/database.php and driven by .env variables.
    • SQLite: Default database is SQLite, using database/database.sqlite.
    • Migrations: Used to define database schema changes.
    • Eloquent Models: Represent database tables. Located in the app/Models directory. “In lal’s eloquent omm relationships Define how different database tables are related to each other.”
    • Model Relationships:hasOne()
    • hasMany()
    • belongsTo()
    • belongsToMany()
    • Mass Assignment: Protecting attributes from mass assignment vulnerabilities. Use $fillable (whitelist) or $guarded (blacklist) properties on the model. “By default, LEL protects against mass assignment vulnerabilities unless you explicitly permit it. This safety mechanism prevents unintended modifications to your application’s data by limiting which attributes can be modified.”
    • Disabling Timestamps: $timestamps = false; on a model disables automatic created_at and updated_at management.
    • Retrieving Data:Model::all(): Retrieves all records.
    • Model::find($id): Retrieves a record by its primary key.
    • Model::where(‘column’, ‘value’)->get(): Retrieves records matching a condition.
    • Model::first(): Retrieves the first record matching a condition.
    • Inserting Data:Model::create([‘column’ => ‘value’]): Creates a new record. “Model: create attributes which will insert the data.”
    • $model = new Model(); $model->column = ‘value’; $model->save();
    • Updating Data:$model = Model::find($id); $model->column = ‘new_value’; $model->save();
    • Model::where(‘column’, ‘value’)->update([‘column’ => ‘new_value’])
    • Deleting Data:$model = Model::find($id); $model->delete();
    • Model::where(‘column’, ‘value’)->delete();
    • Soft Deletes: Using the SoftDeletes trait to mark records as deleted instead of permanently removing them.
    • Model Factories: Used to generate fake data for testing and seeding. “factory stating LEL is a way to define specific variations of data when using modu factories states allow you to Define different sets of attributes for the model and making it easy to create various types of data without duplicating the code.”
    • Model States: Allow to define different sets of attributes for the model and making it easy to create various types of data without duplicating the code
    • Model After Making: the method is executed when we call make.
    • Model After Creating: the method is executed when we call create.
    • Database Seeding: Seed the database with initial data.
    • Paginating results: the data will be displayed per page.

    VIII. Responses

    • Returning data to the user: We can return array which will be converted into JSON.
    • Explicitly returning json: The return result will explicitly be a JSON.
    • Returning Views: Using the helper function and controlling the status code.
    • Redirecting the User: There are several ways to implement redirect in Laravel.
    • The root method accepts a root name.
    • Providing car object with the id parameter will be automatically rendered.
    • Redirecting an external URL: using redirect away.

    Key Takeaways:

    • Laravel provides a structured framework for web development, emphasizing convention over configuration.
    • Eloquent ORM simplifies database interactions.
    • Blade templating offers a powerful and expressive way to create views.
    • Artisan commands streamline common development tasks.
    • The .env file and configuration system are essential for managing environment-specific settings.

    Laravel Application Development: Core Concepts and FAQs

    FAQ on Laravel Application Structure, Routing, Configuration, Debugging, ORM (Eloquent), Factories, Migrations, Controllers and Responses

    Q1: What is the function of each key directory in a Laravel project?

    • app/: Contains the core logic of your application, including models, controllers, service providers, and other custom classes. Uploaded files by the user can also be stored here.
    • config/: Stores all of your application’s configuration files. These files define settings for things like database connections, mail servers, and application behavior. If you want to customize configuration options which are not available in .env file, you can find the configuration files here. Feel free to delete the default configuration files if you don’t plan to modify them as the default files exist in the Vendor folder in Laravel core.
    • database/: Contains your database migrations, factories, and seeders. This also includes the database.sqlite file if you’re using SQLite.
    • public/: The web server’s document root. It contains the index.php file (the entry point for all requests), as well as assets like CSS, JavaScript, and images. Only files and folders within this directory are publicly accessible.
    • resources/: Contains your application’s views (Blade templates), CSS, and JavaScript files.
    • routes/: Defines all the routes for your application, including web routes (web.php), API routes (api.php), and console routes (console.php).
    • storage/: Stores generated files, user uploads, cached data, sessions, logs and other application-specific files. Contains subdirectories like app/ (for user uploads), framework/ (for cache, sessions, and views), and logs/ (for log files).
    • tests/: Contains your application’s automated tests.
    • vendor/: Contains all the third-party packages installed via Composer.

    Q2: How does the Laravel request lifecycle work?

    The Laravel request lifecycle can be summarized as follows:

    1. Request Entry: The request hits the public/index.php file.
    2. Bootstrapping: index.php includes vendor/autoload.php and bootstraps the Laravel application.
    3. Application Loading: The application loads configuration files and initiates service providers. Service providers prepare and configure the application, registering services, event listeners, middleware, and routes.
    4. Routing: The router takes the request and matches it to a defined route.
    5. Middleware Execution: Any middleware associated with the route is executed. Middleware can perform actions before the request reaches the controller (e.g., authentication, logging) and can even block the request.
    6. Controller Action: The matched route’s controller action is executed.
    7. Response Generation: The controller action may render a view or return data.
    8. Middleware (Post-Response): If middleware is registered, the response is passed through it before being sent to the user.
    9. Response to User: The final response (HTML, JSON, etc.) is sent back to the user’s browser.

    Q3: How can I configure application settings in Laravel, and what is the role of the .env file?

    Laravel’s configuration is primarily managed through configuration files located in the config/ directory. These files are typically populated with values from environment variables defined in the .env file.

    The .env file stores sensitive or environment-specific settings like database credentials, API keys, and application debugging mode. It is crucial to never commit the .env file to your Git repository. Instead, commit the .env.example file, which contains sample values.

    To access configuration values, use the env() helper function or the config() helper function.

    If you want to customize configuration options which are not available in .env file, you can find the configuration files under config/.

    Q4: How can I create custom routes in Laravel, and what request methods are available?

    You define routes in the files within the routes/ directory. The most common file is routes/web.php for web routes. To create a new route, open the appropriate file and use the Route facade. For example:

    use Illuminate\Support\Facades\Route;

    Route::get(‘/about’, function () {

    return view(‘about’);

    });

    This code defines a GET route for the /about URL that renders the about view.

    Laravel supports the following request methods:

    • GET: Used to retrieve data.
    • POST: Used to create data.
    • PUT: Used to update an existing resource.
    • PATCH: Used to partially update an existing resource.
    • DELETE: Used to delete a resource.
    • OPTIONS: Used to retrieve the communication options available for a resource.

    You can define routes that respond to multiple methods using Route::match([‘GET’, ‘POST’], ‘/path’, …) or routes that match any method with Route::any(‘/path’, …)

    You can define a redirect type of route in Laravel by calling the redirect method. The first argument is the route to which you are going to listen to and the second argument is where the user should be redirected.

    Q5: How can I debug my Laravel application, and what are some useful debugging functions?

    Laravel offers several debugging tools:

    • dump(): Prints the variable’s contents with detailed information. It does not halt code execution.
    • dd(): “Dump and Die.” Prints the variable’s contents and stops further code execution.

    Configuration: You can set the APP_DEBUG environment variable to true in your .env file to enable detailed error reporting.

    Laravel Logs: Laravel’s built in logging system writes errors, warnings, and other information to log files in the storage/logs directory. You can use this directory as well.

    Q6: What are Laravel Blade templates, and how can I pass data to them?

    Blade is Laravel’s templating engine. Blade templates use the .blade.php extension and allow you to embed PHP code within HTML using special directives (prefixed with @). To display variables, use double curly braces {{ $variable }}.

    You can pass data to views using the following methods in your controller:

    • Associative Array: Pass an associative array as the second argument to the view() function:
    • return view(‘my_view’, [‘name’ => ‘John’, ‘age’ => 30]);
    • with() Method: Chain the with() method to the view() function:
    • return view(‘my_view’)->with(‘name’, ‘John’)->with(‘age’, 30);

    You can also share data globally with all Blade files using the View facade in a service provider’s boot method:

    use Illuminate\Support\Facades\View;

    View::share(‘year’, date(‘Y’));

    This makes the year variable available in every view. You can use functions and classes with namespaces in Blade files to output certain things.

    Q7: What are Laravel Blade directives, and how are they used?

    Blade directives are special keywords (prefixed with @) that simplify common tasks in your templates. Some common directives include:

    • @if, @elseif, @else, @endif: Conditional statements.
    • @foreach, @for, @while: Looping constructs.
    • @include: Includes a sub-view into the current view.
    • @yield, @section: Used for template inheritance to define sections of content that can be overridden in child templates.
    • @extends: Specifies the parent template that a child template inherits from.
    • @auth, @guest: Check user authentication status.
    • @csrf: Generates a hidden CSRF token for form submissions.
    • @class: Conditionally applies CSS classes to an HTML element.
    • @verbatim: Prevents Blade from compiling code within its block, useful for JavaScript frameworks that also use curly braces.
    • @php, @endphp: Defines a block of raw PHP code.
    • @use: Import a class into the Blade template.

    Q8: How does Laravel’s Eloquent ORM work, and how can I define relationships between models?

    Eloquent is Laravel’s ORM (Object-Relational Mapper). It provides an object-oriented way to interact with your database. Each database table typically has a corresponding “Model” class that represents it.

    To define a model, create a new class that extends Illuminate\Database\Eloquent\Model. For example:

    namespace App\Models;

    use Illuminate\Database\Eloquent\Model;

    class Car extends Model

    {

    // …

    }

    Eloquent automatically determines the table name based on the model name (e.g., Car model corresponds to the cars table).

    Eloquent supports various types of relationships:

    • HasOne: Defines a one-to-one relationship.
    • HasMany: Defines a one-to-many relationship.
    • BelongsTo: Defines a reverse one-to-many relationship.
    • BelongsToMany: Defines a many-to-many relationship.
    • MorphTo: Defines a polymorphic relationship.

    Example (one-to-many):

    // In the Car model:

    public function images()

    {

    return $this->hasMany(CarImage::class);

    }

    // In the CarImage model:

    public function car()

    {

    return $this->belongsTo(Car::class);

    }

    These relationships allow you to easily retrieve related data. For example: $car->images would return all images associated with a specific car. To prevent mass assignment vulnerabilities, define the $fillable property in your models, specifying which attributes can be mass-assigned.

    Laravel Configuration: Settings and Customization

    Configuration files in Laravel contain various settings for your application, and they are a key aspect of customizing its behavior.

    Key points regarding configuration files:

    • Location Configuration files are stored in the config folder.
    • Purpose These files manage various aspects of your application, such as the application name, language, database credentials, session driver, and mailer settings.
    • .env file Most configuration options are stored in the .env file. This file contains sensitive data and should not be committed to your Git repository. Instead, commit the .env.example file, which contains sample data.
    • Accessing Configuration Values You can access configuration values using the config() helper function, providing the configuration name as an argument (e.g., config(‘app.name’)).
    • Overriding Configuration Values If you need to customize configuration options that are not available in the .env file, you can modify the corresponding files in the config folder. If you don’t plan to modify a configuration file, you can delete it. Laravel will use the default values from the core.
    • Publishing Configuration Files You can publish configuration files that are not available by default in the config folder using the php artisan config:publish command.
    • Caching Configuration Files Once your Laravel project is deployed to production, it is recommended to execute the command PHP Artisan route:cache. This generates a cached version of your Laravel routes. If you want to clear this cache, you can do so by running PHP Artisan route:clear.

    Laravel Routing Essentials

    Laravel routing is a flexible system for defining how your application responds to client requests.

    Key aspects of Laravel routes:

    • Definition Routes are typically defined in the routes directory, with web.php for web routes and api.php for API routes.
    • Basic Routing A basic route accepts a URI and a closure.
    • Route::get(‘/uri’, function () {
    • return ‘Hello, World!’;
    • });
    • Available Methods Routes can be defined for various HTTP methods: GET, POST, PUT, PATCH, DELETE, and OPTIONS.
    • Route Parameters Routes can accept parameters. Required parameters are enclosed in curly braces {}.
    • Route::get(‘/product/{id}’, function ($id) {
    • return ‘Product ID: ‘ . $id;
    • });
    • Optional Parameters To make a route parameter optional, a ? can be added after the parameter name.
    • Regular Expression Constraints Parameters can be constrained using regular expressions with the where method.
    • Route::get(‘/product/{id}’, function ($id) {
    • // …
    • })->where(‘id’, ‘+’);
    • Named Routes Routes can be assigned names, allowing URL generation using the route() helper function.
    • Route::get(‘/about’, function () {
    • // …
    • })->name(‘about’);
    • $url = route(‘about’);
    • Route Groups Route groups allow sharing route attributes, such as middleware or namespaces, across multiple routes. The prefix method can be used to add a common prefix to a group of routes.
    • Fallback Routes A fallback route can be defined to handle unmatched URIs, typically displaying a 404 error page or custom message.
    • Route::fallback(function () {
    • return ‘Fallback’;
    • });
    • Controller Routing Routes can be associated with controller methods.
    • Resource Controllers Resource controllers provide a conventional way to handle CRUD operations for a given resource. A resource route can be defined using Route::resource(‘products’, ProductController::class). This defines multiple routes for common actions like index, create, store, show, edit, update, and destroy. You can limit the included routes with only or exclude routes using except.
    • Single Action Controllers Single action controllers contain a single __invoke method and can be directly associated with a route.
    • Route Listing The php artisan route:list command displays a list of all registered routes. Additional flags, like -v, will show middleware. Flags such as –except-vendor and –only-vendor can filter routes.
    • Route Caching The php artisan route:cache command creates a cached version of your routes, improving performance, especially for applications with many routes. Clear the cache with php artisan route:clear.
    • Redirect Routes Redirect routes allow you to redirect one route to another.
    • Route::redirect(‘/here’, ‘/there’, 301); //Redirect from /here to /there
    • View Routes View routes directly return a view.
    • Route::view(‘/contact’, ‘contact’, [‘phone’ => ‘555-555-5555’]);

    Laravel Migrations: Database Schema Management and Version Control

    Laravel migrations offer a way to manage and version control a database schema, acting as a versioned blueprint that allows definition of the structure of database tables (including columns and data types) in code. Migrations facilitate the easy creation, modification, and sharing of database changes within a team. When a migration is run, Laravel applies the changes to the database, ensuring consistency and simplifying the process of rolling back changes if necessary.

    Key aspects of Laravel migrations:

    • Location: Migrations are typically located in the database/migrations folder.
    • Structure: Each migration file extends the Migration class and contains an anonymous class with two methods: up and down.
    • The up method defines the changes to be applied to the database, such as creating or modifying tables. It uses Laravel’s schema builder to define schema changes.
    • The down method reverts the changes made in the up method, providing a way to roll back the migration.
    • Naming Convention: Migration filenames consist of a timestamp followed by a descriptive name. The timestamp ensures migrations are executed in the correct order.
    • Creating Migrations: New migrations can be created using the php artisan make:migration command, followed by the migration filename (e.g., php artisan make:migration create_car_types_table). When creating a new table, it’s conventional to name the migration file create_your_table_name_table.
    • Schema Builder: Laravel’s schema builder is used to define table structures within migrations.
    • Schema::create(‘users’, function (Blueprint $table) {
    • $table->id();
    • $table->string(‘name’);
    • $table->string(’email’)->unique();
    • $table->timestamp(’email_verified_at’)->nullable();
    • $table->string(‘password’);
    • $table->rememberToken();
    • $table->timestamps();
    • });
    • Foreign Keys: Migrations can define foreign keys to establish relationships between tables.
    • $table->foreignId(‘maker_id’)->constrained(‘makers’);
    • This creates a maker_id column and defines a foreign key constraint to the makers table.
    • Data Types: Migrations support various data types for columns, such as string, integer, bigInteger, boolean, and longText.
    • Nullable Columns: The nullable method can be used to specify that a column can accept null values.
    • Timestamps: The timestamps method creates created_at and updated_at columns.
    • Soft Deletes: To implement soft deletes, add a deleted_at column to the table and use the SoftDeletes trait in the corresponding model.
    • $table->softDeletes();
    • Migration Commands: Artisan provides several commands for managing migrations.
    • php artisan migrate: Executes all pending migrations.
    • php artisan migrate:fresh: Drops all tables and reruns all migrations.
    • php artisan migrate:refresh: Resets and reruns all migrations.
    • php artisan migrate:rollback: Rolls back the last batch of migrations. You can specify the number of steps to roll back using the –step option (e.g., php artisan migrate:rollback –step=3). You can also rollback to a specific batch using the –batch option.
    • php artisan migrate:status: Shows the status of each migration.
    • php artisan migrate:reset: Rollbacks all database migrations.
    • Simulating Migrations: The –pretend option can be used with migration commands to preview the SQL statements that will be executed.
    • Updating Existing Migrations: To add new columns to an existing table, you can modify the existing migration file or create a new one. After modifying a migration, you typically need to run php artisan migrate:fresh or php artisan migrate:refresh.
    • Default Values: You can define default values for columns using the default method.

    Laravel Eloquent ORM: Models, Relationships, and Factories

    Eloquent is Laravel’s built-in Object-Relational Mapping (ORM) library, which allows developers to interact with databases using PHP objects instead of writing raw SQL queries. Each database table has a corresponding “model” that is used to interact with that specific table. Eloquent provides an intuitive active record implementation for working with databases, including methods for common CRUD (Create, Read, Update, and Delete) operations. It also supports relationships, allowing definition of and interaction with associations between different database tables. Eloquent simplifies data manipulation and retrieval, making database interactions more readable and maintainable.

    Key aspects of Eloquent models:

    • Location: Eloquent models are located under the app/Models directory and typically extend the Illuminate\Database\Eloquent\Model class.
    • Model Generation: New model classes can be generated using the php artisan make:model command. For example, php artisan make:model FuelType will create a model file for the FuelType model. A migration and controller can also be generated alongside the model by using flags, such as php artisan make model fuel_type -m to generate a migration.
    • Table Names: By default, Laravel considers the table name of the model to be a snake case, plural version of the class name. For example, if the model name is Car, Laravel will assume the table name is cars. You can customize the table name by defining a protected $table property on the model.
    • protected $table = ‘car_fuel_types’;
    • Primary Keys: By default, Laravel assumes the primary key of the table is a column named id. You can customize the primary key by overriding the protected $primaryKey property.
    • Timestamps: By default, Eloquent expects created_at and updated_at columns to exist. These can be disabled by setting the $timestamps property to false.
    • public $timestamps = false;
    • Soft Deletes: If your database table has a deleted_at column, you can use the SoftDeletes trait in your model. When the delete method is called on the model instance, it will not be actually deleted from the database, but the deleted_at column will be set to the current timestamp.
    • use SoftDeletes;
    • Model Information: You can see information about the model by executing PHP Artisan model:show command followed by the model name.
    • Mass Assignment: For security reasons, it is not allowed for the model to be filled with arbitrary data. You can specify which attributes can be mass-assigned by defining a $fillable array on the model. Only the columns included in the $fillable array can be populated using mass assignment techniques like the create method.
    • protected $fillable = [‘maker_id’, ‘model_id’, ‘year’, ‘price’, ‘vin’, …];
    • Eloquent ORM Relationships: Define how different database tables are related to each other. Eloquent supports relationship types such as one-to-one, one-to-many, many-to-many, and polymorphic relationships. Relationships allow easy retrieval and management of related data using methods on models.
    • hasOne: Defines a one-to-one relationship.
    • hasMany: Defines a one-to-many relationship.
    • belongsTo: Defines a many-to-one relationship.
    • belongsToMany: Defines a many-to-many relationship.
    • Eloquent Factories: A tool to generate fake data for models. It makes it easy to create test and seed data. Factories define how a model should be created, including the default values for attributes. Using factories, you can quickly generate multiple instances of a model with realistic data, which is helpful for testing and database seeding.

    Laravel Blade Templating Engine: Syntax, Directives, and Components

    Blade is Laravel’s templating engine that allows you to write well-structured, dynamic web pages by mixing plain HTML with PHP code using a clean and simple syntax. Blade views are stored in the resources/views directory and have the .blade.php extension.

    Key features and concepts of Blade views:

    • Basic Syntax: To display data, you can enclose variables in double curly braces {{ $variable }}. This automatically escapes HTML entities to prevent XSS vulnerabilities. If you want to render unescaped data, use {!! $variable !!}.
    • Blade Directives: Blade directives are special keywords prefixed with an @ symbol. Directives provide a shorthand notation for common PHP control structures, such as if statements, loops, and including subviews. Blade directives are converted into plain PHP code, which improves readability and maintainability.
    • Conditional Directives: Blade provides directives for conditional statements, including @if, @elseif, @else, and @endif. There are also directives for @isset and @empty to check if a variable is set or empty, respectively. The @unless directive is the opposite of @if.
    • @if (count($cars) > 1)
    • <p>There is more than one car.</p>
    • @elseif (count($cars) == 1)
    • <p>There is exactly one car.</p>
    • @else
    • <p>There are no cars.</p>
    • @endif
    • Loop Directives: Blade includes directives for creating loops, such as @for, @foreach, @forelse, and @while. The @forelse directive combines a @foreach loop with an @empty directive, allowing you to specify content to display when the loop has no iterations.
    • Comments: Blade comments are defined using {{– comment –}}. Unlike HTML comments, Blade comments are not visible in the page source.
    • Template Inheritance: Blade allows you to define a base layout and extend it in other views. This is achieved using the @extends and @section directives.
    • @extends: Specifies which layout a view should inherit.
    • @extends(‘layouts.app’)
    • @section and @yield: Sections define content that can be inserted into specific locations in the layout, marked by the @yield directive.
    • // Layout file (resources/views/layouts/app.blade.php)
    • <title>@yield(‘title’) – Car Selling Website</title>
    • // View file (resources/views/home/index.blade.php)
    • @extends(‘layouts.app’)
    • @section(‘title’, ‘Home Page’)
    • @section(‘content’)
    • <h1>Homepage content goes here</h1>
    • @endsection
    • @show: The @show directive is used to both define and immediately display a section. @show is equivalent to calling @endsection and then @yield with the same section name.
    • @parent: Used within a section to include the content of the parent section.
    • @hasSection: Checks if a specific section has been defined.
    • @sectionMissing: Checks if a specific section is missing.
    • Including Subviews: Blade provides directives for including other view files within a view.
    • @include: Includes a view, and you can pass data to the included view as an associative array.
    • @include(‘shared.button’, [‘color’ => ‘brown’, ‘text’ => ‘Submit’])
    • @includeIf: Includes a view if it exists.
    • @includeWhen: Includes a view based on a condition.
    • @each: Renders a view for each item in a collection.
    • @each(‘car.view’, $cars, ‘car’)
    • Components: Blade components are reusable pieces of user interface that can be included in blade views. They can be class-based or anonymous.
    • Anonymous Components: Blade files located under a specific folder inside resources/views. They are included as HTML tags starting with x-.
    • <x-card />
    • Class-Based Components: Provide the possibility to override the default location of the Blade file.
    • <x-search-form action=”search” method=”get” />
    • Slots: Blade components can also utilize slots, providing designated areas within the component where content can be injected from the parent view.
    • Other Directives:
    • @verbatim: Ignores all Blade directives and expressions within the block.
    • @json: Renders a PHP variable as JSON.
    • @checked: Adds the checked attribute to an HTML input element if a given condition is true.
    • @disabled: Adds the disabled attribute to an HTML element if a given condition is true.
    • @selected: Adds the selected attribute to an HTML <option> element if a given condition is true.
    • @required: Adds the required attribute to an HTML element if a given condition is true.
    • @readonly: Adds the readonly attribute to an HTML input element if a given condition is true.
    • @class: Conditionally adds CSS classes to an HTML element.
    • @style: Conditionally adds inline styles to an HTML element.
    Laravel 11 in 11 hours – Laravel for Beginners Full Course

    The Original Text

    I recently have released Lal for beginners course on my website the cool.com that course contains 37 modules 24 plus hours of content more than 300 well prepared well-edited HD videos written lessons quizzes and challenges deployment on custom domain on VPS server with GitHub actions certificate of completion and a lot more today I took first 19 modules of my premium course combine that into a single video and offering this to you for free on my YouTube channel the only thing I ask is like subscribe and provide a nice comment the video has a Time codes for pretty much every lesson if you want to skip around you can do this I have one very important and big announcement to make in this introduction section so please don’t skip that section and watch it till the end I tried to make the course Very beginner friendly so I didn’t not use any extra JS or css Frameworks during this course even the HTML CSS template which I created exclusively for this course is pure HTML and CSS and JavaScript template no extra Frameworks there we will just work with LL and blade templates and of course database and a lot of other things do you get my point right anyway I plan to update the course from time to time trying to make this literally the best Lal 4 beginners course out there and for this I need your feedback whether you’re watching this on YouTube channel or on my website C .c if you have anything in your mind you can write them under the comment section down below and I will do my best to read every comment and react accordingly on those comments if you are enrolled in this course you can provide your feedback on the Discord group as well the course also has 400 Pages written notes for pretty much every lesson from time to time as I update my course I will update that written notes as well on the course page or on my website you can find the newsletter subscription form if you want to get the course updates or PDF updates or releases about new courses please subscribe to the newsletter I promise you won’t be spammed you will be only notified with meaningful and useful information for you before we jump into the course two more things I want to mention first is that I’m right now working on one of the most exciting project I have ever built and this is going to be available on my YouTube channel for free and this is Lal react e-commerce website that course will use the latest Lal version react uh with inertia version two and service side rendering spatia roles and permissions package it’s going to have multiple vendors online payments and it’s going to have a lot of comprehensive e-commerce features such as product variants Dynamic Fields coupon codes and discounts watch list reviews and a lot more follow me on EX or Twitter because I share updates regarding this course from time to time and also don’t forget to subscribe to be the first one to be notified when the course is released and now here’s the exciting news I wanted to give a chance to every student who wants to enroll to my courses but cannot afford them so this is what I decided in every video I’m going to generate 100% coupon code for all the products that I have right now created on my website and right now there are three products Lal course for beginners which is what I’m talking about right now the offline written notes for this Lal course for beginners which is 400 page PDF file and laravel vue.js e-commerce website as soon as you find the coupon code you can use that coupon code to purchase all my three products and in this specific video there are two such coupon codes and though the location of these coupon codes are absolutely random so you see that this is 11 hours tutorial somewhere in this um tutorial there are two coupon codes using which you can purchase all three prod products that I have right now available in order to find the coupon code you need to watch the video or scheme the video find the location and as soon as you find the coupon code you can use that you can uh just go through the checkout process on my website you can put the coupon code there and purchase for free you can enroll for free it’s a 100% coupon code I want to highlight that uh but also send me a DM on X so please let me know once you find the coupon code because I want to announce this as soon as you somebody finds that on my Twitter account or ex because I want to let everyone know that the coupon codes are already found for this specific video so for this please follow me on Twitter as well and send me DM if you find the coupon code if you’re the lucky one to find that I’m I’m very happy for you um but yeah this is all I wanted to say and this happens on almost all the videos I release from now on so in every upcoming videos there will be at least one coupon code one is going to be kind of minimum but today because this is a special video for me um I decided to put two coupon codes yeah that’s what what I wanted to mention and now enjoy the video Welcome to my leral course for absolute beginers in this course we will learn all the fundamental topics of Lal and build fully functional car selling website where you can browse cars for sale filter by multiple criteria such as make model release yard price car type and so on you can see car details page with multiple images detailed description and features of the car in case you are interested buying the specific car you can view the owner’s full phone number if you want to sell your own car you can sign up or login with email and password or with social out such as Google or Facebook you can add your own car upload images and publish on the website at the end of the course I will also teach you how to host the project on custom domain in production environment just type in your browser grab a car doxyz and see the final version of the project at the end of each module you will also find quizzes and challenges to test your skills the course also includes written notes for almost all the topics that is explained in video content this course also has 3 hours testing section we’re going to get familiar writing test in LEL and write all the necessary and useful tests for our project by the end of this course you will be able to confidently build Lal projects with this complexity and host it on custom domain the course also comes with 30 days money back guarantee if you don’t like it we will refund your money back hello everyone my name is Zur also know known as the code holic I taught to hundreds of thousands of students what is PHP and how they can create fullstack applications with PHP and L I’m super excited to be your Mentor in this course and let’s get [Music] started this course is the perfect course for everyone whether you have zero experience with Lal or you know your way around round and you want to take your Lal skills to the next level since Lal is built on PHP it’s important you to have solid grasp of PHP and objectoriented programming don’t worry you don’t need to be an expert just comfortable enough to understand the basics you also need good handle of HTML and CSS since they are essential part of building websites knowing how to structure a page with HTML and style it with CSS is all what you need need lastly we will be working with databases a lot Reading Writing inserting updating the data so having a basic understanding of SQL databases will help a lot you should know what tables columns primary Keys foreign Keys data types are along with how to run queries write joints and perform basic insert update and delete operations again no need to be an expert just Basics will be enough now let’s have a look at the full demo of the project we are going to build in this course you can also check this on your own computer just type in the browser grab a car. XYZ this is already deployed on production environment when you open the homepage you’re going to see hero slider right here then search section and then latest edit cars in this hero section we see two main slides one is for potential buyers and second is for potential sellers this search form is just basic search form we can search by maker model state city type ER range price range and fuel type and when we click on search right here this is going to open dedicated search page and on the left side we have even more search criterias let me go back and check the homepage on the homepage we see 30 latest eded cars we can see car’s primary image its location its yard maker model and price the type and the fuel type as well when we click on the car it is going to open car details page right here we see all the images of this car and we can just activate the image by clicking on the thumbnail or we can navigate into the images through these arrows on the right side we see the price and all the details about this car we also have right here the seller information who is selling that specific car we can also see that this seller has 26 total cars open for selling right here we have the phone number if you as a potential buyer are interested to buy this specific car you can contact to this buyer um on this phone number however the phone number if you pay attention is not fully visible that is done on purpose we didn’t want the phone to be always fully visible because search engines will crawl our website and they will just grab grab the phone number and use it for spamming purposes instead if you are interested to see the full phone number you can click on this button this is going to make Ajax request to the server get the full phone number and display this right here so here we also have detailed description of the car and car specifications all the features the car U has supported if we scroll at the top we see right here heart icon this is to add the car into your watch list into your favorite cars right now I am not authenticated and if I click this watch list I get the following message please authenticate first to add cars into watch list okay let’s try to add this car into my favorite cars when I am authenticated now let’s test everything from the sellers perspective I’m going to click on sign up right here we have the very basic form with a name email phone and password we have also possibility to sign up with Google and Facebook let’s sign up with Google I’m going to click on this then I’m going to choose the account using which I want to sign up and I am actually already signed up and it opens this a new car page right now because I’m already authenticated let’s open the homepage I’m going to scroll down below and I’m going to add this car into my favorite cars right now I get the message car was added to watch list let’s click okay now right here I have my profile section so I can see my personal details like name email phone and I can change the password right here the email is disabled this is because I am authenticated as Google user and I cannot change email if I am authenticated as Google user if you are authenticated as regular user with email and password you can change your email let’s check my car section and at the moment my user doesn’t have any cars I can click right here to add new one but I’m interested in my favorite cars section inside which I have only one car at the moment let me go ahead and add a few more cars I’m interested into this one okay and into this one as well okay awesome now let’s click on my favorite cars and I see all three cars and the latest added car is at the top of the list okay I’m not interested in this one I’m just going to remove it I can reload the page and this is gone if I have a lot of cars added into my favorite cars list then right here I will see pagination now let me try to authenticate with a different user which has cars inside my car section and we can try to add new car from there I’m going to log out click on login I’m going to click on login right here okay and welcome back Ila Graham now let’s check my car section and I have right here a lot of cars and right here I also see this pagination okay let’s let me try to add new car click right here I’m going to choose Lexus RX ER we’re going to choose car type let’s provide some price here let’s provide the VIN code which must be exactly 17 characters so for justed testing purposes I’m just going to type right here one one one let’s provide the millage let’s provide the fuel type we’re going to choose the location we’re going to provide the address as well we’re going to provide address as well phone number and we’re going to choose the features the car has supported I’m going to take couple of features not all of them we’re going to provide right here some description let’s provide test description and if we want to publish the car and make it available for selling we’re going to provide the publish date right here we can also provide the publish date in the future and then the car will be visible on the website in the future but not now if we just want to create CS but not publish them you can just leave this publish date as empty right now I want the card to be displayed on the website so I’m going to choose today as publish date and before I click on the submit let’s add images as well that’s good let’s click on submit the car was added and we see right here this new car we can click on the homepage scroll down below and we see uh right here the new car has been added now let’s try to edit this car I’m going to click on my cars we can click on edit we can change anything what we want however if we want to manage images for the specific car we cannot do this from the screen we can click right here or we can click images button from here in the my cars page I’m going to click on images and right here we have couple of options we can delete the images we don’t want let’s say I don’t want this image so I’m going to tick this under the delete column and I’m going to click this update images and that image was actually deleted I can also change the ordering let’s say I want this image to be the first one so I’m going to give it position one and I’m going to give this position three I’m going to click on update images that was updated now this is the first one and if I check the homepage we’re going to see that this image now is the first image kind of thumbnail image of the car let’s go back into images if we decide that we want to add more images to that car we can click right here choose a few more right now we will have duplicated images but that’s not important and click on ADD images right now we have more images on this car let’s go on the homepage click on the car and we see all the images that we added for that specific car before we dive deep into larel I want to talk to you about something super important important and this is deployment now I know for many developers this seems something like they can put off for later stage but trust me learning how to deploy your project on production environment and make it accessible to the world is a GameChanger imagine this you have worked very hard created cool application with some cool and nice features and you want to put this project in portfolio and you want to demonstrate this to everyone how you’re going to do this of course you can write text descriptions you can also put some screenshots of the application in the portfolio but would not it be even better if you just deploy the project and put a demo link of the project in your portfolio having a demo link of your project is such a powerful tool now it is not just your words about the project it is a real actual functioning application that anyone can see when I personally look for some projects to use for my personal purposes I always look for projects which have demo links because one thing is what they say about the project how the screenshots look but the other thing is how it actually works when you make your hands on the project deploying the project on your own custom domain gives it professional look and touch as well it shows that you can take the project from start to finish and make it accessible to anyone and anywhere and this is exactly what we are going to do in this course we will be using GitHub actions for the project deployment which means less hustle for you once we set the project up your updates will be deployed immediately it is like a magic now speaking about hosting and deployment I personally use hostinger and they have been great so far I have been using their services for past three or four years and I’m very happy and confident that I can recommend it to you as well alongside with great advantages of the hostinger one of the greatest Advantage I personally like is that I have a single space from which I can purchase domains I can purchase shared hosting VPS hosting Cloud hosting I can manage DNS settings I can purchase business emails for my websites in my case this is going to be info@ grab card. XYZ um or support at grab a card. XYZ or both at the same time and hostinger also provides D protection with cloudware from their panel I don’t have to switch back and forth between multiple accounts one for domain second for hosting third for dust protection or DNS management everything is in a single place which is pretty cool for me and this saves a lot of time for me as well shared hosting is great for small projects and if the projects do not need any big customizations I can use shared hosting for a very low price which includes domain SSL certificates databases 100 website support and a lot more I do have YouTube videos where I deploy my Lal projects on shared hosting and I can tell you that this is is not bad practice but you should always keep in mind that shered hosting has shared Resources with others so that’s good for small projects but not for the big ones for medium to large size of projects I generally grab a VPS server and this is what I recommend also which comes with the latest pre-installed Lal application and set up everything the engine server the MySQL databas is the cloud panel to manage everything on your server and simply I can replace the existing prein Lal application with mine for this project we’re going to get VPS server and purchase the domain for as low as $2 all inside the hostinger they have all the tools you need to set the project up very easily and I will show you stepbystep guide how you can make your Lal project up and running on their platform for this course I partnered up with hostinger and they were kind enough to provide me the VPS server on which I’m going to host my project they also provided special link in discount coupon code for the students of this course or for pretty much anyone who wants to learn Lal go to the following URL hostinger.com learn Lal grab the VPS hosting you want and during checkout use a coupon code learn Lal to get extra 10% off so by the end of this course you will not only know how to create fully working Lal applications but also how to deploy this on custom domain on production environment make it accessible to to the world which is an awesome skill to have and it’s going to boost your confidence as well all right let’s get started lateral hands down is the most popular PHP framework out there used for almost everything starting from simple websites to apis crms e-commerce systems and just about any kind of web application you can think it was created by Taylor otwell in 2011 and right now is developed and maintained by an amazing team of passionate web developers laravel is all about clean and elegant syntax it provides a lot of tools to make building modern and robust web applications easier and more enjoyable LL offers ton of benefits so let’s take a look at few of these standout features it’s quick and simple to get started with but powerful enough to handle complex applications security is right in with features like xss protection and protection against SQL injection it delivers high performance right out of the box laravel’s rooting system is super flexible and Powerful eloquent orm makes working with a databases a breeze the syntax is clean simple and elegant making coding more enjoyable it follows the MVC architecture for better structure structure and organization LL comes with built-in support for testing which is a huge plus authentication and authorization are already baked into the framework caching is made easy for better performance it offers excellent error and exception handling the blade templating engine helps you build Dynamic frontend effortlessly task scheduling is seamless making automated tasks a breeze it has a robust QE system for managing heavy background jobs need to support multiple languages Lal got you covered with multilingual support maintenance and updates are super easy it keeps costs low while providing tons of value and let’s not forget huge laral community and ecosystem there is a package for just about anything you can think of these are just few benefits of using l the more time you spend in LL the better you will understand how powerful the framework is if you are here on this course willing to learn Lal I assume that you already have some experience in PHP and you quite probably have PHP working environment setup locally here are two major options in terms of Lal working environment setup if you are on Windows or on Ma Mech you can set up your laravel working environment using laravel herd laravel herd is a single program which combines PHP engine X web server node.js and composer if you buy a pro version of this package it is going to include MySQL radi and few other useful Services as well the second option to set up your PHP working environment is called zamp zamp is a package which contains PHP Apache web server MySQL and few other services if you choose zamp as a choice of your PHP environment you have to install composer and node.js separately which is a disadvantage compared to herd another disadvantage of zamp is that at the moment it doesn’t have the latest version of PHP supported in the future this might change and it might support the latest version of PHP but Lal herd already supports PHP 8.3 however the ADV Vantage of zamp is that it supports MySQL and comes with PHP my admin as well in case of her MySQL is in pro version so you cannot get it for free you can choose whichever you want herd or zamp if you’re on Linux you might install PHP apach your engine and MySQL as separate packages but we will not need MySQL engine or apachi locally installed for this course as we are going to use sqlite as a choice of the database and we are going to start the project with php’s built-in server but my choice for this course is going to be LEL herd just because it has the latest version of PHP 8.3 at the moment in case of Lal herd before you install your Lal project we should make one change in PHP in we are going to open a folder inside which PHP in file is located this in my case is located in my home directory under config folder heard being PHP and the version of the PHP in this folder there is PHP in file located and we’re going to open this using any editor you want we’re going to find variables order text and we’re going to remove this e and change this e gpcs into just gpcs we can close this file then we’re going to open any terminal and we’re going to execute her restart to take the changes of PHP speaking about the editor/ ID for Lal there are two major players PHP storm and vs code PHP storm is the paid product but is the best choice in my personal opinion for PHP it has integrated all the tools you need for laravel or PHP development it has 30 days free trial as well so I really recommend to try it vs code is free and open source but you need to install a couple of extensions to make it convenient for Lal development one of the extension is PHP allinone extension this contains all the basic things you need on PHP such as syntax highlighting Auto completion formatting and so on the next extension I recommend is LL blade Snippets I also recommend to install LL goto view leral extra intelligence and leral blade formater this extensions in my opinion are the most basic extensions you need to install in vs code to make it convenient to work with LL there are several ways to create Lal projects locally one of them is to install using composer comment we’re going to execute composer create d project ll/ Lal and we’re going to provide here your project name the second option is to install Lal installer and create new project with Lal installer keep in mind that internally it still uses composer to install Lal installer globally we’re going to execute composer Global require ll/ installer once this comment is finished we can create new Lal projects using Lal new and our project name the third option to create Lal project locally is using Lal herd if we go into side section we have a plus button right here when we click on this we have three options no starter kit leral Breeze and Jetstream we can choose whichever we want we’re going to click next we’re going to provide right here our project name we’re going to choose the testing framework we’re going to choose the Target location and we’re going to click next it is going to start creating project locally and once this is done we’re going to have up and running Lal project the Lal project has been created using Lal herd but I am going to delete this because this is not the way I want to create my Lal project maybe you are following this on zamp or you have a separate environment on Linux separate installation of PHP and everything so we’re going to create Lal project using terminal I’m going to navigate into desktop folder and I’m going to execute Lal new Lal course right here on the first question I have three options I’m going to hit the enter I’m going to choose the default one no starter kit and I’m going to hit enter right here as well now it asks us which database we want to use and I’m going to leave this default as this is the SQ light and this is exactly what I’m going to use hit the enter right here the project has been installed and here we have the instructions we can navigate into the project and we’re going to execute PHP Artisan serve but before I do this I want to open this project using my editor or ID the project is on my desktop as we created that I’m going to open brand new install PHP store and I’m going to click open right here we’re going to go to desktop and choose a lotel course we’re going to trust this project the project has been opened and now I’m going to bring up terminal integrated terminal of PHP storm you can open integrated terminal of vs code as well we are inside the LEL course project and we’re going to execute PHP Artisan serve now we’re going to open 1271 Port 8,000 in our browser and we’re going to see Lal application up and running in Lal in art design is a command line tool that helps you to perform various tasks related to your web application such as generating code managing migrations clearing cache and more here’s my project opened in PHP store and now I’m going to open Terminal in one terminal I have PHP Artisans running so I’m going to open second terminal in vs code you can open your terminal from the menu item terminal Al new terminal you can execute PHP Artis on serve right here and if you click the plus button it’s going to create second terminal and you can execute all the rest of the Artisan commments right here now let’s go back to PHP storm and I’m going to open this terminal on a full screen every Artisan command should be executed using PHP Artisan this is a common line tool and this command will be followed specific Artisan command such as about when we hit the enter this is going to give me the all information every information about our project such as application name Lal version PHP version information about caches and drivers let’s hold on for a second and understand how this works there is a file in our project which is called Artisan it doesn’t have any extension but actually this is a PHP file it is using the following class to pass the arguments in our console it is loading all the autoload files from vendor folder right here it is creating the Lal application and calling handle command passing the new argument input instance the rest happens inside this handle command and inside this application class to get the list of all available commments in our terminal we are going to execute PHP Artisan list we can scroll up and we see dozens of comments right here here some of the commments are inside the group such as cache DB event or make every comment right here has its own description what it does okay to see a list of commments in a specific group we’re going to execute PHP artisan make which is the name of the group help which means that I want to get all the commments inside make group or make name space when we hit the enter it’s going to give me all the commments available for the make name space to get information for a specific command such as make controller we’re going to execute the following commment PHP artisan make controller d-el we hit the enter and we’re going to see the description of the commment the usage how we can use it arguments as well as all the additional options with the description for each option so whenever you have a question how a specific command Works in Artisan you can always execute PHP Artisan that command D- [Music] help now let me give you a challenge I want you to execute an artisan command which will give you list of all the available commments in a q namespace pause the video right now execute that Artisan comment and then continue the video and see the [Music] answer okay to get a list of all commments in a q name space we’re going to execute PHP Artisan Q help we hit the enter and it’s going to give us all the available comments or the Q name space as well as the descriptions for each comment now I have another small challenge to you now let’s execute an artisan command which will give you all the information about migrate colum refresh commment okay I hope that was easy to get all the information about migrate refresh commment we’re going to execute PHP Artisan migrate colon refresh D- help we hit the enter and it’s going to give us the description the usage as well as all the options with their description regarding that specific comment now let’s explore directory structure of our lateral application there are several key folders in your Lal application inside which you are going to do most of your work one of them is the app folder by default it contains HTTP moduls and providers folder containing controllers models and a single provider but you can also create new folders manually inside the app folder such as enam for example and create new enams inside the enam folder and it’s going to be autoloaded or whenever you execute specific Artisan comments such as PHP artisan make job is going to create job folder for you inside app folder bootstop folder contains two main files a PHP and providers PHP a PHP file is one of the most important files inside which we can configure middle weers routing exceptions and few other useful things around our application providers PHP just contains a single provider you can add more providers inside this array config folder contains the major configuration files if you don’t plan to modify these configuration files you can delete them or if you want to create new configuration files you can also create them either by manually or by executing specific Artisan command the database folder contains factories migrations and sits this will also contain database.sql file if your database driver is set to sq light in our case we are using SQ light as our choice of database that’s why we see right here database SQ light this is the main database file for our project public folder is single web accessible folder index PHP right here is the entry script and the request starts from this index PHP so every file or folder which is available inside public folder is going to be accessible through the browser resources folder contains CSS JavaScript and Views RS folder contains the main rots for our application whether those are web based roads or console based roads if if we decide to create API roads we can have api.php for roads related to API storage is the folder that contains all the generated files inside app folder we can have uploaded files by the user inside the framework there are files and folders generated by the Lal framework itself such as cache sessions testing or views those views are cached views the locks folder contains all the log files generated by Lal framework test folder contains all the available tests vendor folder contains all the third party packages editor config file is necessary for IDE or editor file contains most of the configuration options around our application such as the application name application language database credentials session driver RIS client mailer SMTP credentials and so on enf do example file is the simple example file of you should never comit and push file in your git repository because it might contain sensitive data instead you’re going to comment and push. example file which should not contain sensitive data it should contain only sample data git attributes and git ignore are git related files we already talked about Artisan composer Json and composer log are composer related files package Json is for mpm dependencies PHP unit is for test read me is I think obvious and V config JS is the configuration file for V server now I want to create new route whenever I access slab URL in our application I want to see um some text some information about my project so let’s go to the project and we’re going to open Roots folder web PHP and we are going to create new root for slab for this we’re going to use root facade we’re going to listen on get method the URL is going to be about and we’re going to provide function right here from which we are going to return view in inside view we’re going to pass the actual view name in our case I’m going to create a view called about we need semicolon here semicolon here now if I try to access slab root is available but we don’t have view yet let’s go inside resources views and just like here we have welcome blade PHP I’m going to create another blade PHP file about. blade PHP file let’s hit the enter the blade file can contain plain HTML even plain HTML is okay we’re going to obviously talk more about blade in the future lessons but for now let’s just create H1 tag right here and I’m going to write hello welcome to my LEL course and let’s create another paragraph I’m going to just write low mum text now when I save this I go in the browser reload the page and we’re going to see hello welcome to my Lal course with some Laur msum text congratulations you have just created your first Lal [Music] route in leral application the request starts on public index PHP index PHP includes wender out toold PHP file then it creates application in bootup PHP the application itself loads configuration files and initiates service providers service providers in Lal prepare and configure the application handling tasks like registering Services event listeners middle wear and Roots they ensure both core and custom features are set up properly making the application ready to function efficiently then the request is passed to router the router takes the request finds the corresponding function to execute and executes that optionally there might be middle we registered on the road we will talk more about middle weers but in a nutshell the purpose of the middle we is to execute code before the request reaches to the action and maybe block the request after this the controller will send the response back to the user or if the middle we is registered the response will be passed to Middle we first and then returned to the user the controller action might also optionally render The View after which the response as a view will be sent to the browser in some cases the road might be configured in a way that it directly renders the view in which case the response might be directly sent to the user or if the middle we is available first the response will be passed back to Middle we and then back to user this is the Lal request life [Music] cycle most of the configuration options regarding LL is available in file here you can change the application name application time zone change the language change the database credentials session driver modify rist client information SMTP details AWS and so on they are are even more configuration Keys available which is not by default in the file if you want to customize configuration options which are not available inen file you can find the configuration files under config folder if you don’t plan to modify these configuration files feel free to delete them the default files exist in Vendor folder in laravel core and they will be used from core let’s open up PHP for example here we have the application name which is taken from file here we have the environment we have deug mode and so on now let’s open database PHP configuration file we have couple of options right here and most of the values are coming from file but here we have one of the option which is called migrations and here we have the table for example if you decide that you want to change the table name for migrations you should update that right here and if you don’t plan to modify any other configuration options in this database PHP feel free to delete every other option right here and only leave migrations with your own database table name in this case the default values for those other configuration options will be taken from vendor from laravel core but your modified configuration option will be taken accordingly so if I quickly delete all the options right here just below the migrations and above we can have database.php file as simple as that and of course modify the table name I’m going to undo this because this is not exactly what I want Let Me Close database PHP in a PHP and I’m going to open Terminal besides the configuration files that is available by default in the config folder there are other configuration files which is not available by default in the config folder but we can publish them and modify them to publish new configuration files we should execute the following Artisan commment PHP Artisan config publish when we hit the enter it’s going to give us a list of configuration files we want to publish most of the configuration files are familiar for us and is already available in the config folder such as app for example but by default broadcasting is not available in the config folder also course is not available in the config folder if I want to publish broadcasting configuration file I would just type right here broadcasting and hit the enter and the configuration file will be published or if you know exactly which configuration file you want to publish you can directly execute PHP artison config publish and the configuration file name for example course we hit the enter and we published course configuration file as well we can see those configuration files in our config folder broadcasting and course I just showed you how you can publish configuration files I don’t need them to be published so I’m going to delete [Music] them now let’s talk about couple of useful debugging functions in Lille we have the welcome page opened and let’s go and open roads web PHP file here we have two Roots defined and I’m going to make some changes right here I want to Define an associate creative array called person where we have this name and email and I want to print that person I’m going to use the following function called dump we’re going to provide the person right here we save this and let’s check in the browser and we’re going to see a person like this dump is a Lal built-in function which prints every information about the given variable and it prints pretty nicely if the associative array is too large you you can also collapse it and expand it and you can also see right here a comment from which file and which line that was printed there are two other debugging functions available one of them is called DD which actually prints the variable and stops code execution so if I reload right now we’re going to see only this dump and we don’t see welcome page anymore because right here the code execution was [Music] topped we have already defined a single Road in our application when we access slab about URL we see the following content this is how we Define the TRU now let’s see what other request methods are available in LL there are totally six request methods available get post put patch delete and option get is mostly used to get the information post is to create the information put is to update the information and Patch is also for to update the information delete is to delete the information and options is to get more information about the specific root in LL there is also a possibility to Define Roots which listen for multiple methods for example the following route will listen to get and post methods and the corresponding function will be executed for both methods in the following way we can also Define a root which matches to all request methods if we want to define a redirect type of rout in Lal Roots we can do this in the following way we call the redirect method the first argument in this method is the rout to which we are going to listen to and the second argument is where the user should be redirected by default this redirect happens with status code 302 but we can also provide a third argument which is going to be the status code in this case we are doing a redirect with status code 301 which is the identical of calling permanent redirect method in lateral there’s also possibility to Define view type of rules for example the following code will listen to SL contact road and it will immediately try to render a view called Contact so if we open our application we can even change the following Road definition in the following way we can change this get into view we have the road as a first argument and the second argument in our case should be the view name we already have view called about so this will be the equivalent of what we had previously and now if I open the browser and reload the page we’re going to see the same result optionally we can also provide third argument to the view method and pass the parameters for view in this case we are passing a single parameter called the phone to the contact view in the later lessons we’re going to see how we can get and how we can print those parameters inside the blade [Music] file now let’s understand how to define roots with required parameters let’s define a get root I’m going to listen to the following URL product slash and right here I want to have a variable Road parameter the road parameters needs to be inside curly braces so I’m going to Define curly braces and inside there I’m going to give it a name I’m going to call it ID so whenever the URL looks like this then some function should be executed so here I have the function and whenever the function is executed it means that the URL was matched so we are going to get that ID as a parameter of the function once we have this ready we can already return something from here for example product ID equals the parameter ID okay now let’s save this in open browser and let’s access the URL product slash1 when we hit the enter we see the following text that text is exactly what is returned from here we can type right here not only one uh we can type any arbitrary number obviously because this is a variable like 1 2 three or we can even have strings like test because we don’t have any restriction defined on the following root for the root parameter ID so our defined Road will match the following URLs any string after the product textt if it does not contain forward slash will be matched now let’s see slightly more complex example in this case I’m going to have three Road parameters let’s say that I want to access product review for the specific language so in this case the URL the first section of the URL contains the language code then we have the product as a hardcoded then we have the product ID then we have review text and the review ID so we have three variables and we can access those three variables inside this closure function we have length ID and reviews and the following Road will match the following URLs it’s going to match these three URLs just pause right now and pay attention the variables at the moment can contain any arbitrary text as soon as these variables do not contain forward slash because forward slash is is a special character in the URL in the later lessons we will understand how to add those restrictions so that link ID or review ID cannot be any arbitrary text now let’s learn how to define rades with optional parameters let me Define get Ro in this case I’m going to listen to the following URL product SL in here I’m going to define a category parameter category but to make this optional we’re going to provide question mark before this closing curly brace now let’s provide Associated function here let’s put a semicolon and inside this function we can obviously accept the category that’s going to be string category but because we Define that category right here optional this category might not be given to the fun function whenever it is not presented in the URL in order us to not have any kind of Errors we’re going to assign some default value to the category okay in this case I’m going to assign null to it otherwise you might have an error when you do don’t provide this category in the URL now I’m going to return something product for category equals the given category let’s save this now let’s open the browser and let’s try to access the following Road product slash and let’s provide the category let’s say cars I’m going to hit the enter and we’re going to see product for category cars however if we remove this section completely it’s going to still work however the category is going to be null that’s why we don’t see anything printed right here this is how you can Define the optional parameters and you can Define as many optional parameters as you want just make sure in the function us assign some default values to them otherwise if we simply remove these and reload in the browser we are going to see an error let’s undo this and I’m going to leave null right [Music] here now let’s define a road what we already had defined previously product slash ID and let’s just return a text it works and I’m going to return the ID as well as we already discussed if we provide any arbitrary text inside this ID variable it is going to work now let’s open our browser and let’s just provide product slash test we hit the enter and we see Works however our goal is to make it not working because we only want the ID to be number so if I type test we it should not work however if I type one two three any arbitrary number it should work how we’re going to do this inside this road whenever we Define this after this calling this get method we can chain another method in this case I’m going to use the method called we number we number accepts an argument and we’re going to provide a parameter so in this case I’m going to provide it and that’s it so we just Define that this rot should only work if the parameter ID is going to be number if I save this and reload in the browser we see it works however if I type test right here and hit the enter we see 404 the road was not matched that’s the whole idea now let’s see which URLs will be matched based on our road definition so the following Road definition will match the following URLs whenever the ID only contains numeric values it is going to match but it is not going to match anything that does not contain numeric values now now let’s see another example so we’re going to define the following Road where username needs to contain only Alpha Characters it cannot contain numbers or anything else it should only be Alpha characters from A to Z so it is going to match the following URLs but it’s not going to match the following URLs if the URL contains a numeric value okay let’s see another example in this case I want the username to be to contain alpha numeric characters numbers and letters is okay but anything else is not okay so in this case it is going to match the following URLs but it is not going to match the URLs which contains something else other than letter or number let’s see another example I want to Define road with multiple parameters we have language and we have ID so in this case language can only contain uppercase and lowercase letters in the ID needs to contain only digits the road will match the following URLs however it is not going to match the following URLs let’s see one last example in this case I’m going to Define list of allowed values so the language parameter can only be one of the provided values e n Ka a or i n in this case it is going to match the following URLs but it will not match the following [Music] URLs we can also apply custom regex validation logic to our root parameters for example we have three Roots defined let’s say that I want username to only contain lowercase letters not uppercase but only lowercase so in this case I’m going to Define right here here a we method I’m going to provide the parameter name in this case it is going to be username and then I’m going to provide the custom regex expression I’m going to define the following characters from A to Z and I’m using the plus sign which identifies that the following characters needs to be at least one so now if I save this and I’m going to open the browser and let’s try to access user slash Zur it is going to work and we see empty page we see empty page because we don’t return anything from here however if I use any uppercase characters inside here let’s say a is an uppercase I’m going to hit the enter I will see 404 because the rad was not matched in the same way we can Define custom reix validation Logic for other rootes so for example here I’m going to Define custom validation Logic for both parameters in which case I’m using an associative array syntax the length needs to be exactly two characters any symbol from A to Z and let’s use two character annotation however the ID needs to be digits let’s make sure it is a digit and also we need to make sure that it is at least four characters length so four comma and curly brace this is a syntax of r reix if you don’t know what is a regex how to work with it that is just out of scope of the following course but basically the following expression means that the ID needs to only contain digits but it should be also at least four characters now if I save this and let’s try to access in the browser we are going to have the following URL y/ product SL1 2 3 4 let’s hit the enter and it’s going to work and we see empty page because we don’t return anything from here however if we change this language code and make it three characters it is not going to work and we see 404 or if we return this into two characters let’s change this into Ka H but if we change this ID and make it three characters we’re going to still see 404 because according to the definition it should be at least four characters now let’s see the last example we are we Define the search let’s try to access the following URL search SL test if we hit the enter we see test right here because we are printing the search however if let’s say that my search keyword should contain slash if I try to provide for example 9 divided by 15 and I hit the enter it’s going to show me 404 because it tries to match the following URL and by default the Q parameter right here search does not consider SL character inside to make it consider SL character we’re going to use the following validation rule where search cury parameter contains any symbol and it should be at least one character so I’m going to save this and now if I reload this we’re going to see nine divided by 15 in lateral we can also Define names for each rot but what is the point of assigning name to a rot here we have Slab Road which renders about blade file and we have just slash root which renderers welcome now let’s imagine that we want to create a link to about page generally when we have a website we have the navigation and in the header we have the link to all the pages or most of the pages we might also have the link to the ab about page in the footer as well and maybe in the sidebar as well so a link to about page is used in let’s say three places and we want to change that URL so if we want to create let me create a variable called about page URL okay and we know that right now it is slab and whenever we use this about page URL it is going to be slab if we decide that we want to change the url from about into about us then we have to update all the places we have to update header we have to update footer and maybe if we have it in somewhere in the sidebar we have to update sidebar as well however if we associate name to every road and we can associate names in the following way name and then we just provide right here some string in this case it’s going to be logical if I call this about so we Associated name about to the about wrote and instead of having this hardcoded URL we can always generate the URLs with a name about page URL equals root and in this case we have to provide the root name in this case the root name is about now let’s have a look if I comment this out and if I print this about page URL let’s try to access homepage hit the enter we see a about page URL this is it however if we decide to change the url from about into about us if we save this and reload the page we are going to see updated URL so the generation of the URL should always happen based on on the road’s name that’s why it is always good practice to associate names to your [Music] roads now let’s define one more road which will have parameters product road with length and ID parameters I’m going to associate name product. view to the following quot now let’s generate URL based on the road name for the road which already has two parameters so first we’re going to Define this product URL with the road and provide the product name then we’re going to provide two parameters those are parameters which is required for the road Leng and ID we’re going to provide Leng to be whatever and ID to be whatever in this case e and one now let’s print this product URL but for this let’s remove what we have right here completely now I’m going to save this and let’s access in the browser I’m going to reload the page and we see the following URL now if I decide to change the format of the URL let’s say I want P slash language and then ID I save this I reload the page and this is how our URL looks like let me Define another rout and I’m going to call this user slash profile let’s create a simple function empty function right here and I’m going to give it also name to be profile now I’m going to Define another rout which I’m going to call current user and let’s say whenever current user is accessed I want to redirect user to the user profile page so in this case I want to do this redirect using the name so one way to do this is going to use a redirect function and provide root right here and provide the root name in our case this is going to be profile the second way will be to use to root function just providing root name we can comment this out and just like this whenever we try to access SLC current user URL it is going to redirect us to a road which has name profile in our case this is going to be it if we want to Define roads with the same prefix we can do this in the following way we can call the prefix on the road providing your desired prefix and then we’re going to call group method on this providing the function inside that function we can Define our roads in a regular way however the prefix admin will be used for every road defined in this function so in our case the following rout will be matched if the URL is admin users if I save this and if we check in our browser we can see users is not going to be matched but admin SL users will be matched normally in the same way we can Define the prefix for the root name we’re going to use root name and the value is going to be admin dot in our case we provide the group and inside this function we’re going to Define slash users root however I’m going to assign name to that road and this means that the URL is going to be matched with Slash users but the road name is going to be admin. users so if I save this any if we try to access slash users we are going to see these slash users however the road name is going to be admin. users typically when the road is not matched lateral will show 404 error for example let’s try to access SL contact we see 404 however we can define a fallback rout for every un Ed roads we can do this in the following way we’re going to call fallback providing function right here which will be executed every time road is not matched so if I return right here fallback save and reload in the browser we see fallback right here in this case you can render any view maybe you want to save that information somewhere but the idea is that you can match all unmatched URLs with the fallback method [Music] now let’s open Terminal and I want to execute a command and print all defined Road list for this we’re going to execute PHP Artisan Road list this will print six roads and two of them is defined by us slash and slout others are defined by a LEL application if we want to also display middle we for each Road we’re going to provide flag DV we hit the enter and it is printing the middle we as well for each road if we want to only print roads which is defined by us we can provide D Dash except Dash vendor flag we hit the enter and it’s going to print those two roads in a similar way if we want to Define roads which is defined only inside the vendor we can provide only- vendor we hit the enter and it’s going to print those four roads only if we want to Define all roads which are part of the API we can provide path equals API we hit the enter and in this case the application gives us an error that we don’t have any rows matching the given criteria which is actually correct we can even combine these flxs and for example print all the details about our roads we can print them except vendor and we can even provide path equals admin for example this is not going to print anything because the given path was not matched but I hope you get the idea once you deploy your Lal project on production it is recommended to execute the following command PHP Artisan wrot cach this will create cached version of your Lal roads is especially this is useful if your application has a lot of Roads the cache will help your application to match the road in a shorter time and this will increase the overall performance of your website however if you don’t want this cach anymore you can clear this always by executing PHP Artisan Road [Music] clear now let me give you a small challenge you should create a road which accepts two Road parameters these Road parameters must be numbers you should calculate the sum of these two parameters and print that sum pause right now spend some time to implement this then come back and see my [Music] solution all right now let’s Define the root we’re going to listen to the get method and let me call this sum and then we’re going to accept two parameters A and B you can call this whatever you want then we need to define the function however I’m going to also Define a validation Logic for these parameters we are number we are number and we can provide an array A and B both should be numbers then we’re going to accept right here float a and Float B finally we are going to return some of these two numbers a plus b let’s save this now let’s open the browser and try to access to the following rout sum one and two let’s hit the enter and we see three right here let’s increase the numbers 1 2 3 slash 4 5 6 let’s hit the enter and we see five seven and nine that works correctly controller is a class which is associated to one or more roads and is responsible for handling requests of that roads generally controller is a grouping of similar roads together for example product controller should contain only logic Associated to products but not anything else car controller should not contain logic which is not associated to cars we can create controller classes manually or we can execute Artisan commments doing this with Artisan Commons is more convenient and fast so this is how we’re going to do also PHP artisan make controller and we’re going to provide the name of the controller I’m going to call my controller car controller it is also convention that your controller classes should should end with controller suffix in our case it is car controller let’s hit the enter the output tells us that the new file was created under up HTTP controllers F folder called car controller okay we are going to open this up HTTP controllers car controller this is how car controller looks like by default now let’s create a road and associate action to that controller I’m going to define a function called index okay from this function I’m going to return hardcoded text index method from car controller let’s save this now I’m going to open roads file web.php and I’m going to associate that method what I just created to specific rout let’s define a rout and listen on SL car and provide the controller and the method the controller is going to be called car controller we’re going to provide class and the second argument of this array right here is going to be the method name the method is called index and just like this we provide the controller and the method instead of providing a closure function actually I’m going to change this into import so here we have just car controller but here is the import of our controller okay let’s save this and now let’s try to access this in our browser right here let’s change car hit the enter and we see index method from car controller if we have multiple methods defined in the car controller and we want to associate them to roads obviously we can duplicate this change the road right here and change the method however there’s a better version of it and we’re going to use grouping by the controller so in this case I’m going to use Road controller but I’m going to provide car controller right here car controller class this returns an object on which we can call group inside group we’re going to provide function and any root we’re going to Define inside this function will assume that the controller is the car controller so I’m going to take this rout put this right here but we don’t need the controller we only need the method name so this is how we can Define SL car we can duplicate this and we can have for example my cars right here which will have a different method associated like my cars or and so on you get the idea right so whenever we save this let’s check in the browser I’m going to reload this and the result does not change so it is still using this index method right here to render some text whenever the URL is matched in Lal we can also Define single action controllers if your controller grows and becomes very large it is recommended practice to split it up into multiple other controllers or create single action controllers single action controllers are controllers that are associated to a single route only to generate single action controller we’re going to execute the following commment PHP artisan make controller we’re going to provide the controller name like show car controller for example and then we’re going to provide a flag D- invocable that D- invocable flag makes the controller to be single action controller when we hit the enter we see that the controller was created let’s collapse this let’s go into controller section and we’re going to open this show car controller that controller is very similar to car controller however it has one additional method underscore uncore invoke that’s a special method and whenever we use that controller in the road that method can be executed however the usage of the controller should be also different now let’s go into web.php and I’m going to modify this slightly let me actually comment this out for now and I’m going to Define new controller new route slash carar on SL car we are going to apply show car controller class pay attention that I don’t provide the method anymore just like I we have provided previously I don’t provide method let’s change this using import so that we have showard controller without name space and we have the showard controller imported properly now if I save this let’s go actually in the showard controller and let’s return something like return uncore uncore invocable let’s save this now let’s go in the browser and reload the page and we see UND underscore invocable invocable controller is nothing else but addit invoke method to regular controller so in the same way what we can do is let me just delete this show car invocable controller completely then inside the car controller I’m going to create that function uncore uncore invoke let’s just return from here underscore uncore invoke we say this let’s open web PHP and here we are using show car controller and I’m going to change this into car controller now if I save this and reload in the browser we’re going to see uncore unor invoke which is coming from car controller however we have other regular method as well in our car controller and we can use this one as well let’s go into web and let me duplicate this and I’m going to change the url for one of them let’s give it different text inv vocable for example and right here on this car I’m going to provide the array we provide the controller and we provide the method as well so now I save this and if I just reload we’re going to see index method from car controller however if we provide invocable right here we’re going to see underscore uncore invoke before we start talking about resource controllers I’m going to delete just created car controller completely let’s delete the rotes as well in LEL a controller is a special type of controller that provides a convenient way to handle typical crowd operations for a resource such as a database table to generate resource controller using AR design we should execute the following command PHP artisan make controller we’re going to provide the name of the controller I’m going to call this product controller and then we’re going to provide a flag called D- resource once we hit the enter it’s going to generate this product controller let’s open this product controller and as you see there are predefined methods we have index create store show edit update and destroy there are seven default methods defined in the resource controller for typical crowd operations index is responsible to show a list of the resources create is responsible to show form for the resource using store we’re going to create the resource inside show we’re going to show a specific resource by the given ID inside edit we’re going to render the form for editing purpose for a specific resource ID in the update we’re going to update the resource by the ID and in the destroy we’re going to delete the resource by the ID now let’s open web.php and I’m going to Define Roots Associated to this product controller we can obviously Define Roots separately for each method what we have right here but there’s a oneliner in laravel which can do this thing rote Source we’re going to provide the name products for example and then we’re going to provide the controller name in our case this is going to be product controller class semicolon at the end and let me change this using import so we have product controller imported right here now if we try to access SL products it should execute the following route let me bring up the terminal and I’m going to execute PHP Artisan Road list this will print the list of the roads and let’s have a look so here we see the seven roads defined by us which corresponds to products Index this is an index method this is actually a root name and this is the method name so the root name for to create products is called products. store and it is mapped to the following Method products create is mapped to the following method and so on if we want to exclude a specific method from this definition we should provide right here accept method inside except we can provide array of methods we want to exclude for example I’m going to exclude destroy from this list let’s save this let’s bring up the terminal and I’m going to execute again PHP Artisan Road list now we don’t see products destroy method right here we only see six roads defined or if we want to only include specific roades in the Declaration we can provide only method as well inside only let’s say I’m going to provide index and I’m going to provide show I don’t want anything else from this product controller let’s bring up the terminal and I’m going to execute PHP Artisan Ro list and now we only see two roads defined from the product controller in the product controller as I mentioned we have seven methods but five of them is relevant for the API two of them is not relevant for the API for example the purpose of this create is to render the form as well as the purpose of this edit method is to render the edit form so these two methods are not relevant for the API if we want to Define resource for the API only we should do this in the following way instead of resource method right here we’re going to use API resource method once we Define this let’s bring up the terminal and I’m going to execute PHP Artisan R list hit the enter and now we have five methods defined we don’t have create method and we don’t have edit method right here let’s go even step farther and when we generate the controller if we want to generate it for the API meaning that if we don’t want create and edit methods to be presented in the controller we should execute the following Artisan command PHP artisan make controller we are going to obviously give it name car controller and then we’re going to provide d d API flag once we hit the enter it’s going to generate this car controller let’s open this very quickly and we see index store show update and Destroy we don’t see create and we don’t see edit as well then in the same way we can use this car controller right here to Define rules for the car controller we’re going to use API resource name we’re going to provide the resource name in our case we can call this cars and then we’re going to provide car controller right here let’s replace this with import as well we should see car controller imported right here however if we we want to Define product controller and car controller both at the same time as API resources we can use API resources name providing associative array where the key is the resource name and the value is the controller so we Define the car controller and we can provide as well products by specifying here product controller just like this we can delete this completely and now if we execute PHP Artisan Road list we are going to see API Roots defined for cars as well as defined for products in the later lessons we’re going to learn how to implement these methods actually and how to implement in general crowd operations how to render the data how to create the data how to delete the data as well okay now I don’t need this car controller and product controller yet so I’m going I’m going to delete them both and I’m going to also remove them from web.php [Music] now I have a challenge to you I want you to generate a controller with two methods sum and subtract Define roads SL sum and/ subtract which will be Associated to the controller corresponding methods both methods will accept two arguments and both arguments should be numbers when accessing slm Road it should print the sum of arguments and when accessing SL subtract method it should print the difference of these two numbers pause the video right now spend as much time as you think you need on this problem try to make it working and then come back and see my solution [Music] okay I hope you made it now let’s see my solution first of all I’m going to create controller let’s execute PHP artisan make controller math controller let’s hit the enter math controller was created now let’s open this and create two functions public function sum we’re going to except two arguments inside this function float a and Float B now let’s define second function subtract float a and Float B here we’re going to return some of these two numbers so we’re going to return A+ B and in the second function we are going to return Difference A minus B now let’s open web PHP and Define Roots root get on/ sum we’re going to accept two properties two parameters A and B and we’re going to associate the math controller sum method right here let’s put the semicolon and let’s replace this with import now let’s duplicate the and I’m going to call this subtract A and B and the method name will be subtract now we save this and we can check this in the browser let’s access sum sum five and 7 hit the enter we see 12 now let’s change the method name into subtract hit the enter and we see minus two and just like like this we made it working but if we change seven right here into something non numeric value such as a c and we hit the enter we are going to see an error subtract method argument B must be type of looat but string was given that’s because we need to validate the arguments of sum and subtract method so right here and right here we’re going to provide we number and we’re going to provide a comma B both A and B should be numbers so now if I save this and if we reload this in the browser we are going to see 404 because such type of URL is not defined in our RADS however if we change ABC into something which is numeric value which is number we hit the enter we see the result all right that was the challenge and we completed the challenge now I’m going to delete math controller and I’m going to also remove Roots defined in web [Music] PHP so far we have been creating and deleting controllers defining and removing Roots that’s because we have been learning and we did not need this code in our final car selling website now I’m going to start working on my car selling website and I’m going to define the controller which will stay in the project and I’m not going to delete this let’s open Terminal and I’m going to execute PHP artisan make controller and I’m going to call this home controller we hit the enter home controller was created now let’s go in the home controller and I’m going to create new function and I’m going to call this index and for now let’s just return index hardcoded string from here now let’s go into web PHP and I’m going to change this closure function into using home controller class and I’m going to render I’m going to use index method right here okay now I’m going to change this home controller fully qualified name into import so that we have import right here and we have much much shorter line right here let me associate name to this and I’m going to call this home as well now if we go in the index method we can return this hardcoded index or we can change this and return the welcome blade file as it was returned from this web PHP right here let me quickly undo this right here we be returning this view so now we change this into home controller okay awesome now let’s open the browser and in the browser nothing is changed we see lel’s welcome page however this welcome blade file is not exactly what I want so if we go under resources views we’re going to see about blade which is something we created and we have this welcome blade PHP as well so I’m going to completely delete this welcome blade PHP file PHP torm Finds Its usage in cached file so it asks me whether if I want to refactor or not I’m going to do refactor anyway it is a cached file so in this case what I’m going to do is just to return hardcoded index and in later lessons we’re going to start working on views and I’m going to create new view for the home controller index method and I’m going to use that new view right here but for now if I reload the homepage we’re going to see hardcoded index text [Music] views are files that are responsible for presentation logic in your LEL applications and are stored under resources views folder typically views are in format of Blade files blade is a Lal templating engine that helps you build HTML views efficiently it allows mixing HTML with PHP using Simple and Clean syntax blade supports template inheritance enabling you to define a base layout and extend it in other views it provides directives with different purposes for control flow blade also supports reusable components and Slots all blade views must have extension. blade. PHP we can create views by hand under resources views folder or we can execute the following Artisan commment PHP art is on make View and we’re going to give it a name the view name should be all in lowercase like index for example I’m going to hit the enter and index view was created under resources views index. play. PHP file if we open this we see this empty d right here with some comment now let me change this content and let’s write H1 and I’m going to write text hello from larel course I’m I’m going to save this now let’s go into controllers up HTTP controllers and I’m going to open Home controller and I’m going to change this return right here and instead I’m going to render View using view function and inside here I’m going to provide the view name which I just created now let’s open browser and I’m going to reload the page and we see hello from LEL course views can be deeply nested into sub folders under resources views folder for example under resources views I’m going to create a new folder called it home and I’m going to move my index blade PHP under home and now inside home controller when we try to render this view index we should change right here as well instead of rendering index which will not work anymore because there is no index. blade. PHP file under views folder instead it is available in the home folder we are going to render this in the following way home dot index the dot identifies subfolder so it is like a folder separator now if I save this and we check in the browser the result is unchanged this also works however if we want to create a View using artisan and directly put this in a subfolder we should execute the following comment in the view name we’re going to provide home. index as well so in this case it will throw an error because the view under home folder index view already exists but if you want to create for example home AB about we hit the enter and it’s going to create about. blade PHP under home folder obviously this is something what we don’t need at the moment so I’m going to delete this [Music] to render The View we used function called view there is a second method to render The View as well in this case we’re going to use view facade so I’m going to remove this and I’m going to use view facade which is coming from illuminate support facad so make sure you use the following facad following class we hit the enter that needs to be imported right here make sure it is imported if you’re using vs code and then we’re going to call method called make and here we’re going to provide the view name in our case this is going to be home. index so we save this and if we check in the browser the result is not going to change because we are doing the exact same thing however the view facade has couple of advantages for example right here we can provide another function called First and provide a list of View files for example first I can provide index IND and then I can provide home index well the first method will render the first available view so in this case if there is index blade file under views directly it will render it otherwise it will search under home. index so if we just copy this index plate PHP and put this under views and if we just change its content have hello from um views folder okay so I save this and if we reload in the browser we see hello from views folder now I’m going to again delete this index blade from views folder and it is going to pick up this index blade from home folder and the result will be hello from LEL course if we want to check if the view exists or not we can also use view exist function we provide for example home. index and if the view does not exist for some reason we can dump the following message view does not exist of course in this case the view will exist because there is home. index but if I change this into just index save this and we reload in the browser we see view does not exist I’m going to undo the change and return the code back when we were using view function just like this now let’s talk about how we can pass variables to views there are two ways to pass data to views one of them is to provide an associative array as a second argument of the view function and we can use this associative array when we are using view facade make function as well make method okay here I’m going to provide two Vari variables one I’m going to call it name and I’m going to provide my name and then I’m going to provide um surname which is going to be my surname awesome now we can access these two variables in the blade file let’s open blade file hello from blal course and I’m going to create a paragraph right here my name is and I’m going to print these two variables to print these two variables we’re going to use double curve braces and inside double curly braces we’re going to use PHP variable normally like dollar sign and the name the name is the variable we passed right here in the same way we can also output second variable called surname now if I save this Andre load in the browser we are going to see Hello from Lal course my name is Zur the second method to pass data to views is the following we can remove this associative array and we can provide additional variables inside The View using with method the first argument is the variable name name for example in our case and I’m going to provide zuro right here let’s move this with down and the second we can provide this with second times so here I’m going to provide surname is going to be my surname I’m going to save this reload the browser and the result does not change however if I comment out this line there is no surname declared in the blade file in the view file so it will throw an error now let’s uncomment this so that we don’t have any [Music] errors it is also possible to declare a global shared data and that data will be available in all blade files for this we’re going to open service provider up service provider which is inside up folder providers let’s open this and inside boot method we’re going to use view facade or this and we’re going to provide Shear method right here the key will be the variable name I’m going to call this ER and the value is going to be your value of the variable so let’s use a function date to create the current ER let’s put semicolon Right Here and Now the Y variable will be available in every blade file so if we open this index blade PHP and I’m going to create second paragraph right here y colon and then we can output y let’s save this reload the browser and we see y [Music] 2024 now let’s do a small challenge I want you to create a hello control roller with welcome method create welcome view as well using IGN and put it in the Hello subfolder from Hello controller welcome method render welcome view you just created pass your name and surname to The View and output in the blade file also Define the root SL hello so that when you access it it will output your name and surname now pause the video work on this spend as much time as you need on this then come back and see my [Music] solution okay now let’s see my solution first let’s open Terminal and I’m going to generate new controller in New View file PHP artisan make controller hello controller we hit the enter the controller was created now let’s create view PHP arst on make view well I’m going to create welcome view but I’m going to put this in the hello folder so hello. welcome this will create welcome view in the hello subfolder I’m going to hit the enter now look at this welcome blade PHP was created inside hello folder awesome now let’s create Hello controller from up HTTP controllers and let’s define welcome method from here we are going to render view called hello. welcome so this is the blade file we’re going to render and we’re going to pass two variables we’re going to pass name and we’re going to pass surname awesome now we have the controller we have the view created now let’s go let’s collapse everything let’s go under Roots web PHP and Define new root root get on slash hello we’re going to render hello controller method called Welcome let’s put a semicolon right here and we have these roots defined now let’s access this in the browser slash hello we hit the enter and we see empty our output let’s check hello controller this is because we don’t have anything defined in the hello welcome now let’s open resources views hello welcome blade it is an empty div and let’s change this and output these two variables let’s delete this comment and output name and surname we save this reload in the browser and we see my name and surname you should see your name and surname the data you passed from the hello controller like this now let’s clean up the code we created for the challenge let’s remove the root I’m going to also delete this hello folder completely including welcome blade PHP and I’m going to also delete hello controller cool we don’t need this in our final [Music] project besid the variables we are using in our blate files we can also use functions we can even use classes in their methods to Output certain things in the blade files let me actually remove these two lines now let’s use date function and print the current date so we already have this shared Global shared y variable which we printed previously but right now I’m going to use functions in Blade file to output something so we can use date function inside Cur braces just to Output the result the current ER in the same way we can do the following we can use Str Str to Upper function take our name and concatenate it with a surname and print it like this so if I save this right now and we check our browser we to access to the homepage we’re going to see the Y in my name and surname all in uppercase so in the same way way we can even use classes with name spaces to print something so for example I’m going to use St Str helper class and use the after method basically inside the following string we’re going to take anything that is after hello space so it should print world I’m going to save this reload in the browser and we see world right here we can also use application constants or we can use even Global constants like this all will work in your blade files and the result will be something like this now let’s open Home controller and I’m going to Define one more variable right here and I’m going to give it job name however the content will contain HTML Tags I’m going to use B tags and inside B Tags I’m going to write the developer now let’s open blade file and I’m going to Output right here my job this is going to be like this if I save this and we reload in the browser we’re going to see developer right here but the bags are printed well they are printed as you see so actually the developer is not inside bold whenever we output variables inside blade they are escaped in the the following way if we want to render it differently and if we want job to be inside bold instead of rendering boping and closing tags we should render it in the following way we are going to use let me remove this completely we’re going to use one curly brace and then we need double exclamation okay exclamation two times and inside here we can output job now if I save this and reload the page we’re going to see developer in bold let’s remove this and now let’s imagine that I want to print something like this in my browser the following expressions are very oftenly used in frontend applications such as vue.js if we want to print a variable in vue.js we need to do this in the following syntax in the following way let’s assume that I’m using a VI JS and I want to Output the following content if I save this and if I reload in the browser we are going to see an error right here right now blade is processing curly braces double curly braces and right now blade is trying to find a constant called the name and output it right here because we have these double curly opening and closing braces but let’s say that we want the output to be exactly like this what are we going to do in this case we’re going to put it symbol before these opening double curly braces this add symbol tells lateral blade not to process the following expression if I save this and if I reload right now I see the following output and this is exactly what I want okay and this output now later can be used by vue.js to render the name variable also in Blade there are directives every directive starts with eight symbol for example there is a for each directive okay let’s say that I want to Output a text starting with at at for each or at something if I do this if I save this and if I reload this I see it something however if I want to print 84 or 84 each this will throw an error because because we have a syntax err at the moment whenever blade sees 84 it assumes that we I want to iterate over something and it basically fails because I don’t provide all the arguments for this directive however my intention is just to print 84 in my browser so for this we’re going to use second times the at symbol 8 84 so if I save this and reload right now we see 84 in the browser and this is exactly what I wanted however imagine that just like we have here name and the same way let’s say that we have multiple such type of Expressions I’m going to copy and paste small amount of code where we have name age job hobbies and also we have this if directive which is also blade directive now if I save this and if I reload the first first one right here it’s going to fail because it will try to print the name of course we can go ahead and add eight symbols for all of them like this and it is going to work and we see the following result but doing this manually in five places to put this add symbol is not convenient there is better way to do this in leral Blade and it is called verba team directive so I mention that all directives in Blade start with at symbol so we’re going to use verba team directive for this and we need also end verba te directive down below so whenever there is something some content between opening verbatim and closing verbatim directives between here and between here Lal blade will not process these variables so these double curly Expressions will not be processed this if will not be processed and they will be outputed exactly as you see so if I save this and reload the page we don’t see any change so this is working as it should work however without this word button directives we are going to see an error we have syntax error and even if we fix this syntax error we we’re going to have a lot of Errors basically because we don’t have we don’t satisfy the blade requirements that’s why we need verb team Direct to Output it as we [Music] expect now I’m going to add one more variable into my home index view file let’s provide WID right here and I’m going to call these hobbies and in this case I’m going to provide an area let’s say my hobby is tennis and fishing it’s pretty different types of hobbies but I love both okay now let’s go into index blade PHP and I want to Output this array Hobbies as a Json array how to do this so for this I’m going to use JS helper class so I’m going to use double curly braces to output something and I’m going to use JS helper class this one illuminate support JS and I’m going to use from function for this and I’m going to provide the variable called Hobbies so this will actually output a Json let me save this and let’s go in the browser reload this and here we see Json parse and if we check this also in the page Source we see this Json Parts this from function encodes your variable into a proper Json format and if I want to create now a JavaScript variable which is the intention basically when you want to convert this into Json so we should create a script tag inside script tag obviously we need to Define a variable called hobbies for example and we can assign the following expression to Hobbies okay now I save this now we reload this and we see const Hobbies equals the following variable if we check this in the browser we obviously don’t see because we put this in script tag however if we bring up developer tools and if we go in the console we should see hob is global variable available and if we hit enter we see tennis and fishing hey if you are enjoying this tutorial so far maybe you want to check the entire course on my website the.com where you can find quizzes The Source Code of the project is available there you can find all the modules including the deployment section the T testing section which contains I think three hours of uh content regarding testing uh using pest framework and a lot more all right now let’s talk about what are laravel blade directives and how they are used blade directives are special keywords which is prefixed with Ed symbol used in laravel’s Blade templating engine to simplify common tasks like template inheritance conditional rendering iteration of data and more they convert these Shand notations into plain PHP code enhancing readability and maintainability of the code examples include if for conditionals for each for Loops extends for layout inheritance by obstructing these common patterns blade directives streamline template creation and reduce boiler plate code allowing developers to focus more on the content and logic of their views now we’re going to get familiar with the most common directives in LEL now let’s open resources views home index blade file and we are going to talk more about directives blade directives first of all let me remove this code from here and now I’m going to first talk about comments in Blade we can actually Define the comments we already are familiar with HTML comments which has the following syntax less than symbol exclamation Das Dash and there’s obviously the closing part of the comment so this creates a comment and in between these comments I can write some text now if I save this and we check in our browser we obviously don’t see anything if we check the page Source however we see the comment right here however there are cases when we don’t want the comment to be displayed in which case we’re going to use blade comments the difference between the HTML comment and the blade comment is that HTML comment is visible in the page Source however the blade comment is completely ignored by blade engine to define the blade comment we’re going to use double curly braces then we need Double Dash which is the opening of the comment then we write a comment single line comment for example and then we do Double Dash and double closing curly braces so this actually creates a comment and creating a multi-line comment is very similar we use double opening Cur braces Double Dash then we write multi-line comment and then Double Dash and double closing curly braces now if I save this and we reload the page we don’t see this comment right here we see additional empty lines from uh line five up to line 9ine but actually we don’t see the content which is the most important part for example if you have written some blade expressions for example outputting a name which you decided that you want to comment out you comment out this part completely and it will not be visible in the page Source now let me scroll down below and I’m going to talk more about the most basic blade directives let’s start with conditional directives if we want to write a condition in our blade file we can use it if directive it is the how every directive basically starts and if is the name of the directive so this is very similar to typical PHP if statement inside if we’re going to provide the condition for example if true then we can do something however every such type of Blade conditional blade directive needs its closing directive closing as well so in our case we’re going to provide end if with ADD symbol so whatever we write in between opening if and closing if directive this will be displayed for example this will be displayed now we save this we reload in the browser and we see this will be displayed of course if we write false here this will not be displayed I have prepared couple of slides which demonstrates the most basic directives and I’m just giving you quick overview what is possible when we actually start building the project our car selling website we will use these directives step by step in real application now let’s have a look so here we have an if directive if statement let’s imagine that we have cars array in our blade file so we check if the count of cars is more than one then we print there is more than one car however we also have possibility to write an else statement so if count of cars is more than zero there is at least one car in L’s case we write there are no cars and as I mentioned every if directive needs to have end if directive as well which which is going going to end that directive okay we can go even further and we can also have else if statements just like this is displayed right here if count of cars is more than one we’ll write something else if count of cars is exactly one we write there’s exactly one car in L’s case there are no Cars so that was all about if directive now let’s talk about unless which is actually the opposite of if directive so if you write unless false this actually will be displayed and this is the same as if true if we want to check if a variable exists if it’s a defined or not in our blade file we can use is set directive in the following way if cars variable is defined it will print is set inside paragraph otherwise it will not do anything in the same way we can use empty directive as well to check if the cars variable is empty or not these iset and empty directives are doing exactly as php’s native iset and empty functions we also have out and guest directives which is very relevant to Lal application using out directive we can check if the user is authenticated or not using guest we will check if the user is guest or not which is opposite of authentication we can also use switch directives in Blade here in this example we can check if the country is GE we display Georgia inside paragraph in L’s case we display unknown country of course we can add more cases and we can compare the country to addition country codes such as UK or us this is also very similar to Native PHP switch [Music] statement now let’s talk about four directive which is also very similar to Native PHP for Loop pay attention that every directives what we described so far has their ending directive as well for four it is end four in the similar way we have also four for each directive which gives us possibility to iterate over array in our blade template we also have one additional directive which is not available in Native PHP so this is called for else for else is very similar to for each however if the array is empty which we are trying to iterate then there is empty directive as well so in this case we iterate our cars and displaying the car model for each car however if the car’s array is empty in this case we are displaying they are are no cars and finally we have and for LS we also have while loop available in Blade which is exactly the same as php’s while [Music] loop now I want to talk about continue and break directives now let’s Imagine The Following in case we are iterating over numbers from 1 to 5 and we are displaying the number if I want to write a continue code one way to do this is the following I’m going to write an if statement if Nal 2 then I type continue which means that the following paragraph will not be printed whenever n equals 2 so n will be printed for 1 3 4 and five but not for two because we have continue code right here this is how we can use continue directive but there’s a second way which is much simpler we can replace this three line with just a single line providing the condition inside continue directive so in this case if the condition we are providing rate here equals true the continue will happen in this case and this is the equivalent of this pretty cool right so in the same way we also have break directive if we want to break when n equals four we can do this in the following way however the shorthand syntax will be like this from home controller we are passing hobes variable which is an array now I’m going to iterate over these arrays and print hobbies for this we’re going to use for each directive I’m going to iterate over Hobbies as let’s call the loop variable H and then I’m going to print H now I’m going to save this let’s check in the browser reload it and we see tennis and fishing now I want to talk about a special variable which is available inside loops and that is called Loop Loop if we try to Output this Loop variable it’s not going to work it’s not going to give us what we want because it is an instance of the class it is an object however I’m going to use DD to dump and die and this will print the loop variable and it’s going to stop the execution so we’re going to see what is this Loop variable it is an object and it has couple of properties it has iteration index remaining and so on and let me explain all of them step by step the iteration identifies which iteration the current Loop is used in and the iterations start with number one so we are dumping this Loop variable and stopping the code execution on the very first iteration so the iteration is one and basically we don’t allow every other iteration so what we can do is try to access the iteration through Loop iteration so if I comment out the stamp and if I comment out this H we save and reload we see there are two iterations the first iteration and second iteration okay now let me uncomment this DD because this is the most important thing so in the same way we have index and the index starts with zero we have remaining how many ele ments are remaining and there is exactly one remaining and so on and now let’s understand what each Loop property is actually doing so the index is the current Loop iteration which starts at zero the iteration is the current Loop iteration which starts at one there are remaining the iterations remaining in the loop we have count the total number of items in the array being iterated we have the first one and this simply returns true or false if this is the first iteration through the loop this returns whether this is the last iteration of the loop even returns whether this is the even iteration through the loop odd returns if this is the odd iteration of the loop depth Returns the level of the current Loop this is interesting if you have nested Loops one Loop into another the loop magic variable inside the outer loop will have a depth of one but the loop inside the nested Loop will have depth of Two And in the same way if you have third Loop inside the second Loop and if you have three Loops nested into each other the loop variable in the third Loop will have the depth of three and also Loop perant will return the p parent iterations Loop variable so if we are calling Loop parent on the first level of iteration like in our example if we try to print parent right here this will return null because there is no parent iteration right here however if I create a second iteration inside the first one and iterate something then Loop parent will will refer to the parent Loops Loop variable so the loop parent right here will be the same as using Loop right here of course right here we need n for each now let’s have a very quick look in the browser so we have Loop p in and let’s just print right here depth of it and I’m going to duplicate this and let’s print also Loop depth itself okay I can remove this because it’s going to throw an error now I’m going to save this and reload in the browser and look at this so we see a lot of 2121 2121 but what does this mean first of all we have two items inside hobbies and we are iterating these twice so totally there are four iterations okay so this code the line 22 and 23 will be executed four times all right so now the first output is the depth of this Loop second output is the depth of the parent Loop so this one has depth of two and the parent has depth of one and that’s why we see 2 one 2 one 2 one and 2 [Music] one now I’m going to leave this code right here but I’m going to comment this out not to pollute my output in the browser and we’re going to talk about conditional classes and styles so right now if we have a look in the browser we just see hello from Lal course which is exactly what I expect now if we go in the home controller I’m going to pass one additional variable and I’m going to call this country and in my case I’m going to provide GE right here now let’s go in the index blade let’s scroll down below and I’m going to create one div and conditionally I’m going to add some CSS classes to this so for this we can use directive called class so we use add symbol then we provide class right here and here we’re going to provide an associative array so here if I provide CSS class like my- css-class so this CSS class will be applied to the div in any case so let’s just generate lsum text so I save this I reload this we see Laur msum and if we check in the page Source we are going to see let’s reload the page uh okay down below we see this D which has CSS class my CSS class now let’s say that this class my CSS class must always be added to the div however conditionally I want to add another CSS class if the country code is GE so in this case I’m going to do the following Georgia CSS class should be added if country equals GE so now if I save this and reload we’re going to see Georgia right here because our country is actually equals to GE if we go in the home controller and change this country code into UK for example reload the page we don’t see Georgia CSS class eded right here in the same way we can add style attributes so right here on the same div I’m going to use style directive I’m going to pass an array and first I’m going to provide color to be green so this is something I want always to be added so if I save this right now and reload we’re going to see that color green was added and in the browser we’re going to also see that the actual color is green however now let’s add conditionally some styles for example background- color equals Canan should only be added if country equals g now if I save this and reload the background color will not be applied because country does not equal to G it equals to UK okay however if we change this into GE and reload we’re going to see that the background color was applied to it as well so the possibilities regarding this are endless you can provide as many elements right here inside these arrays as you want and you can provide any conditions right here you want to add or not add specific class or specific CSS properties to your HTML elements [Music] now let’s talk about how we can create and include sub views in our blade file I’m going to comment out this part I’m leaving this code so that you can refer it but when we move on the next section I’m going to remove all unnecessary piece of code and you can find them as a written form down below the lessons or you can download the source code at the end of each section and you will find these right there now let’s open resources views folder and inside views I’m going to create one folder called shared and inside shared I’m going to create a new blade file and I’m going to call this button blade PHP of course I could create this directly inside views but J just I’m showing you how you can also organize this and it is recommended to organize these partial blade files into subfolders now we have this button blade PHP which I’m going to do the following so inside here we’re going to have just a button and I’m going to Output two things I’m going to Output text and I’m going to also add background color to the button so for this I’m going to use style Direct itive and just like this background- color and I assume that we will have right here um variable called color okay awesome now let’s go into index blade and I want to include that button right here so for this we’re going to use include directive and we’re going to provide the location of the blade file so so if we would create the button blade PHP directly inside resources views we could include it in the following way button but because we created this under shared folder we need to include this shared dot button in the following way all right now if I save this and we reload in the browser we’re going to see an error because we don’t pass two variables color and text but we try to use these variables right here and this will throw an error to pass the variables we can provide the second argument as an associative array to this include directive in this case we’re going to provide color to be brown for example and we’re going to provide text to be submit now I save this now let’s open the browser reload the page and we see button so we see the button it has text submit and it has background color brown now let’s change this background color into something like yellow save and reload and now we see yellow button if we try to include a view which doesn’t exist let’s say shared search form in browser we’re going to see in error view shared search form not found however if we don’t want the error to be thrown instead of include we can use include if directive so the following directive will check if shared search form exists it is going to include that otherwise simply it will not do anything and also it will not throw an error there is also a directive include when the first argument is the condition the second argument is the the file the blade file to include and the third argument are the parameters given to that blade file include when will include the given blade file only if the first condition equals true or if the first condition is trable so in our example if the search keyword exists it is going to include shared do search results blade file however if the search keyword does not exist it is not going to include that there also exists include unless which is the opposite of include when include unless will only include shared. search results if the first parameter of this include unless equals false so in our example these two lines are equivalent there also exists include first directive which accepts an array of plate files and it will include the first available blade file so if there is admin button it is going to include that otherwise it will try to include button blade PHP first let me change this search form into button and make sure we have everything working as expected no errors and now I’m going to talk about how we can include sub views inside loop let’s imagine the casee that I want to iterate over something let’s say I want to iterate over cars as car and for each car I want to include a separate view file past the car and render each car in its own view file so how I can do this I’m going to use include directory right here provide the view name and I’m going to call this let’s assume that we already have this car. view file and I’m going to pass car right here so if we create car view. blade PHP file this will accept car for every car however we can do something similar in just one line and for this there exists each directive in Blade each accepts first it’s going to accept the view name in in our case we’re going to pass car. view we’re going to pass then the array which needs to be iterated cars in our case and then we pass the string variable name which will be passed to car view and each element from this cars array will be passed to car view with that given name car in our case so LEL will iterate over cars and for each car it’s going to render car view passing the car variable so these two piece of code what I have just selected are identical and additionally there’s four parameter also available uh which is assumed to be a blade view file which will be rendered if the cars array is empty so in our case we can provide car. empty let me quickly demonstrate this to you I’m going to declare a variable called cars but I’m going to just assign numbers to it let let’s assume this is an array okay so this is an actual array but in reality the array of cars will be array of objects but right now we just declared it to be numbers so car will be a single number and then we need to create car. viw file so if we go under resources views I’m going to create right here a file carv. blade PHP awesome so here let me create a paragraph and I’m going to Output car variable now if we check in the browser we see the following so 1 2 3 4 5 and then again we see 1 2 3 4 5 that’s because we are doing the same thing twice right here and right here however if we make this cars array empty the first one will not do anything the third one will throw an error because it will try to to render car. empty blade file which does not exist let’s have a look here we go car empty not found however if we create empty. blade file inside car folder then that will be [Music] rendered all right let me first comment out this part and then I’m going to talk about how we can use row PHP in our blade files for for example if I want to declare a variable the traditional way is going to use traditional PHP tags opening PHP tag and closing PHP tag and inside there we can declare a variable however there exists PHP directive and we use this in the following way we open with PHP directive and close with end PHP and in between we can declare variables we can create functions or we can do anything in the same way if we want to import a specific class in our file the traditional approach would be to create traditional PHP tags use and the class name however there exists use directive as well which gives us possibility to provide right here the fully qualified class name so these two piece of code is [Music] identical now it’s time for another challenge I want you to create a sub view alert blade PHP you can put this in a sub folder if you want which will take two variables message and color and use them in Blade file use style directive to add color to the alert element include that view in another blade file and pass these two variables there are many interpretations of this challenge but the main idea is that you create a second blade file include it in another blade file and you provide variables pause right now think a little bit about this create your own solution your own version of this Challenge and then come back and see my [Music] solution all right let’s see my solution how I would do this first we need to create alert blade PHP file and I’m going to do this in inside the shared folder because this is kind of reusable shared component PHP artisan make view let’s put this in the shared folder alert let’s hit the enter and it created alert blade PHP file okay let’s open this file let’s go into resources views shared and I’m going to open this alert blade PHP file so I’m going to leave this div and I’m going to assume that to two variables will be passed to it color and message and I’m going to use this color variable right here to give some style to the alert element but for style I’m going to use style directive as it is required let’s provide background- color to be whatever color has been provided however inside the alert I’m going to use message variable to actually output the message now let’s go into index blade PHP file and I’m going to include that alert include provide shared. alert and let’s provide two variables message is the first and let’s provide some message for example your account was created and let’s provide second variable called color let’s move this on a new line like this okay the color will be green and just like this we have created and included the component now if we open the browser reload the page we’re going to see your account was created alert so I can reuse this alert now multiple times I can provide a different text right here I can provide different color like red for example reload the page and we see this same blade file included two times with different text and different colors of course if we want to create like really real world type of alert component we need the text color as well and couple of other things but you get the idea we can always assume that inside alert we provide the basic styles for example color will be always white and we will also always have pting to be 15 pix let’s do like this reload the page and now we see that the color is always White and the there’s always some pading and we can provide additional CSS properties right here but the main idea is that we have variables and we output those variables now we’re going to move forward and start building the layout of our website but before we do this I want to delete all the content we created only for learning purposes such as I’m going to delete this alert blade PHP and button blade PHP so I’m going to delete the shared folder completely and if we open this home index plate as well we have a lot of content right here so I’m going to completely delete almost everything from here and from the home controller as well we can remove all these variables given to home index and just like this we have now clean project and we are going to work on index blade to actually render the content of our website the website we are working on now let’s create the main layout file using Artisan PHP artisan make View and I’m going to put that layout file under layouts folder and I’m going to call this file app so it’s going to be up blade PHP under layouts folder so this is created now let’s go under resources views layouts and let’s open this up blade PHP I’m going to remove everything and I’m going to generate boilerplate HTML code so we have the standard HTML structure you can generate this code by just typing exclamation mark in your PHP stor or vs code and hit the tab okay awesome now let’s start using blade directives right here the title is a document which I don’t want to be documented I want it to be something Dynamic okay so here I’m going to use yel directive and I’m going to provide right here name so that’s going to be section name so I’m going to type title right here so I want to Output the content for Section title and I’m going to right here provide extra hardcoded text like car sell L website you can put the name of the website whatever you call it okay or you can even leave this empty and just only have this title so the choice is up to you the most interesting part is that right here we are trying to Output the section with name title okay so I’m defining the layout and the layout needs header so I’m going to Define header right here and we can just type a hardcoded text like um your header so this is just your header okay so I’m going to Define footer as well and that’s going to be your footer and in between the header and footer we’re going to obviously have the main content again I’m going to use a yeld directive and I’m going to Output a section with the name content so I have the very very basic layout ready now let’s go into index blade PHP file and I’m going to try to use this layout let’s delete everything and we want to extend the layout we want to use this app blade PHP file in our index blade how can I do this extends except the blade view file name our blade file is located under a layouts folder and it is called app just like this we are extending our app blade PHP so even if I leave this right now as it is and I don’t do anything and if we check in the browser we see your header and your footer and if we check the page Source we see this very very basic HTML so we don’t see anything right here we don’t see anything in between header and footer but the basic layout is already rendered because of these extents but because we are extending we want to actually extend it and add additional things to this layouts up for example I want to define a section with the name title and we can provide right here any text for the title like home page for example I save this I reload the page and we see homepage right here because we defined the section right here title and that section title was outputed in the layout our definition that text now is outputed in layout awesome we also try to Output right here section called content now let’s define this section section however there are two ways to Define content for the section one way is to provide two parameters right here the first one is going to be the section name the second is going to be the value for the section so I want to Define much larger text than just a single line so we have possibility for this we just provide the section name and then we use end section and whatever we put inside in between the section and end section that’s going to be considered as a content for this section so in our case I will just type homage content goes here and let’s fix the typ hole and maybe we can put this inside H1 awesome now I save this I reload the page and we see in between header and footer we see this H1 of course you can put HTML of any complexity any html text as much as larger HTML as you want you reload and you’re going to see the whole HTML okay awesome and now if we check in the browser we see homepage content goes here in between header and footer okay we have the layout ready but we want to improve this layout for example if we look at the HTML link property we see en right here so we have language English defined always but what if our application is in different language let’s say Spanish I want this language to be dynamic based on the applications language also we see right here car selling website which is actually kind of title of our website but we already have this title written in file if we go under en and open this we see application name right here we can call this whatever we want for example we can call this car selling website or let’s just call this Carell okay so this is the application name and I want to Output the application name right here how can I do these things first let’s go into link and I’m going to Output right here the current application name I’m going to access this through up function this returns an application and then I can call get local method on that so if I save this right now and if we check in the browser Source we see if in right here so our current application language is actually in English if we go right here and change the application local into es for example then we reload we’re going to see es right here which is exactly what we want however the language codes can be in different format for example it can be escore uppercase es for example so we don’t want underscore written in our language program property so it’s a recommended practice to call St Str replace to search underscore in the language replace it with a dash and output only this information so now if I our language code is escore es the output will be es- es which is relevant for the link property okay this is one thing what we want to do I’m going to reverse this B into en next we want to Output the application name right here for this we can use config function in the config function we need to provide the configuration name and the configuration name is called app. name all right so where does this come from if we go into config folder open up PHP scroll at the very top we see application name which is taken from Ian okay from Ian whatever is the app name it is taken and inserted in the application name that’s why we are taking up name right here however we can fall back this to something else like LEL of course the fallback will never happen because we have that name defined right here in the and we also have fallback right here so application name will be always something but again this fallback doesn’t hurt it so it’s a good practice to have basically it is a method to prevent attack from Another Side to your website so it’s good practice to Define and we will need this as well so the name is going to be csrf Dash token and we’re going to provide the content for this token as well the content needs to be a result of the function we are going to Output csrf token function result now if I save this and if we reload we see right here csrf token metat tag and we see the content so this is unique string which regenerates once in a while and it is only valid for your website so if other websites will try to send information to your website without this csrf they will not be able to do this again we will talk more about csrf in the upcoming lessons and here we see the language as we talked and here we see the application name if I open p. file and change this application name for example if we call this car selling we save we reload we see application name changes right here as well make sure you download and open the HTML CSS project that has been provided under this video when you open this using vs code make sure to install live server extension as well we will need this to open this HTML project in in the browser so let’s open index HTML file and we can click go live button right here this will start the live server and we can browse and view this website in the browser here’s the website and how it looks like and now I want to take the layout from this HTML template and put this in our LEL project I’m going to copy everything from this index HTML let’s open our project and I’m going to insert this content just below the stock type HTML I don’t want to delete this HTML for now I’m just putting this at the very top I can put in create multiple new lines and let’s put this right here so this is a very long 800 line HTML content and we have to identify what is part of the layout right here and what is part of the actual view because this is an index page and index page contains not only layout but it actually contains the cars as well now let’s identify what is part of the layout and what is part of the content so if we start from this top so this is all part of the layout including the links including this header so this is also part of the layout let’s collapse this then we have this home slider this home slider is already part of the homepage so I’m going to take this out cut it and let’s put this inside index blade PHP inside content right here okay I’m going to paste it good now we have this main tag inside which we have a couple of sections we have to find a car form we have new cars section and that’s basically it so we need to take this entire main tag and put it in the index blade right here awesome let’s go into up blade again we can remove this extra new lines and then this is part of the footer and that is part of the layout so everything what we see right now is part of the layout now what we need to do is to Output the language right here output the proper CSF token output the application name as well let’s do this down below we have this old HTML so I’m going to copy this HTML tag let’s scroll at the top and put this right here next we also have csrf token I’m going to take this let’s scroll up and just below the title tag I’m going to put this here and finally we have this title so I’m going to get this and put this right here okay and in between the header and footer we need to also output using yel we need to Output content just like we had in the previous version okay now we don’t need this previous version so we are going to remove it completely let’s remove this extra new lines as well cool now we have this HTML ready however it’s not going to display nicely because we don’t have Javascript file and we also don’t have our main CSS file in our project but before we proceed let’s have a look on our website so we see bunch of content okay so we see this hero text and we see uh the search form and we see cars without any Styles because the CSS file is missing and if we check also the page Source we are going to see this entire HTML content including this header and home slider and all those cars okay this is pretty awesome now let’s inspect this and let’s have a look where the CSS and JavaScript files are coming from so if we reload the page we are going to see that it has CSS up CSS missing JS upjs missing and couple of images as well what we need to do is take those CSS image and JS files and put them in our project now I’m going to open this using Explorer File Explorer so right click on folder reveal in file explorer this opens the file explorer and here we see CSS image and JS I’m going to select all of them and I’m going to copy them and let’s go into our project and we need to put them under public folder we will improve this later but for now we’re going to put this in the public folder again I’m going to right click inside the public folder in PHP storm there’s open in Explorer in vs code it is reveal in Explorer I’m going to open this in Explorer here it see here is the public folder and I’m going to paste it right here now we have the CSS image and JS in the public folder I can close this they will be available right here as well and now let’s recheck it in the browser reload the page and we don’t see any errors in the console let’s close the console and we see I need to zoom out slightly and we see the homepage it is very identical to the HTML file what we just saw so because we successfully moved the layout part and the homepage part in our project if we have a look at the HT HML CSS template and navigate between Pages we see that the header is the same so the following page at new HTML has the exact same layout as the homepage we also have car details page and this one also has the exact same layout however if we go into signup page we don’t see this header anymore so this page has a different layout and this page has the same layout as the login page so if we think a little bit we can identify that we have two different types of layouts in our project the one which is related to the pay website like the homepage car details a new car and so on and the others which is for sign up which is for login or maybe for password resit so we actually have to create two different layouts let’s open the HTML CSS project and I’m going to open login HTML file and I want to compare these two files index HTML and login HTML so we already saw index HTML so it has all the links and uh the header right here as well which I’m going to collapse right now however in the login HTML we have all the CSS files we have these links but we don’t have this header then we directly have this main section so if we observe a little bit we can identify that everything what is above this body opening tag inside login HTML and inside index HTML is actually the same also in the index HTML we have this footer down below which is at the moment empty but on the real websites we obviously have some sort of footer right on loging HTML we don’t have this footer if we scroll down below we directly see this script tag which in index HTML only comes after the footer so if we select right now I’m going to select the content this content is not available in login HTML and if I delete this for just temporarily we can identify that now this looks very similar to login HTML so this is the content inside login HTML we can delete this and these two HTML files are almost identical except that we have additional CSS class to the body inside login HTML so I want to create now one layout which will be a basic layout only contain CSS in JavaScript files it will not contain this header tag and then the second layout will have this header tag let’s open our project I’m going to bring up the terminal and I’m going to execute PHP artisan make view layouts. clean I’m going to call this layout clean layout let’s hit the enter the file was created let’s go under resources views layouts and let’s open this clean blade PHP now let’s open up blade PHP and I’m going to copy the part which should be part of the clean blade PHP everything starting from the stock type HTML down below the opening body tag so I’m going to copy this part or cut this part remove it from up blade PHP and I’m going to delete everything from clean blade and I’m going to paste this right here now let’s open up blade PHP again I’m going to leave this header I’m going to leave the content and footer and I’m going to take this part which should be part of the clean layout as well so let’s go into clean layout and down below I’m going to paste this okay now we have this clean blade PHP which has this uh outputting of the language csrf and the application name as well and right here right here in this place we want to Output the its nested layout child layout content so in our case case that should be up blade PHP content so that content should go inside here right in this place so for this I’m going to use Yi and I want to Output child content so I’m going to call this section child content now let’s go into up blade PHP and first we have to extend the clean layout so we use extend directive layouts. clean awesome next we have this header and we can leave this then we have we have to define the child content section because right here the clean layout expects child content section let’s go into up blade and I’m going to Define section child content and in between the child content opening and section in between the child content opening and closing directives I’m going to Output the actual content as well however this header and footer should go somewhere as well right so they should be inside this child content as well so I’m going to take this header and put it in the child content take this footer and put it in the child content as well now let’s remove this extra new lines let’s save it and before we check the result in the browser let’s understand the flow again index blade which is the homepage extends the up layout this is the up layout it extends the clean layout this is the clean layout clean layout outputs child content right here and it also outputs um title right here as well so in up blade we Define the child content with a header we outputed the content which will come from its child view index play PHP so this content right here will be taken and inserted here in the following place and this content will be taken and inserted here in the following place and finally when we access index Blade the homepage we should see the correct result let’s save this and let’s check in the browser I’m going to reload the page and we see the same result let’s check the page Source let’s scroll at the very top and here we see the title we see language we see the header as well and down below we see somewhere probably footer as well if we open uplate PHP we see that the header tag is about 70 lines of code of course we can leave this right here but it is also good practice to move that into its own blade file so I’m going to cut this I’m going to open the terminal and I’m going to execute PHP artisan make View and I’m going to create under layouts I’m going to create another folder called partials and inside there I’m going to create header view file so the view under layouts partials header blade was created let’s go let’s open this I’m going to replace the content with the header tag and inside Apple blade I’m going to include layouts arals header blade file now we see that we only have seven lines of code in up plade which is how it’s supposed to be if our footer gets very large we can put this in its own partial file as well so we save this if we check clean blade as well uh this only contains the CSS and JavaScript files nothing else the header obviously contains only header which is exactly how it’s supposed to be and we have perfect setup of our layout let’s check the resle just to make sure that we don’t break anything we still see the header right here the reason why we created clean layout is that it is used inside login sign up or password reset pages so we have to create signup page and login pages and we have to use this clean layout right there let me create signup controller by executing PHP artison make controller sign up controller we hit the enter the controller was created let’s go under up HTTP controllers we have the signup controller and I’m going to create right here at the moment I’m going to create only one function create which should render the form so we’re going to return view okay um I want to render the view from a specific folder called out out sign up so this is the view I want to render let’s open Terminal again and let’s create new view PHP artisan make view out. signup we hit the enter the view was created let’s go resources views out sign up blade now let’s open the HTML project and let’s open sign up HTML okay let’s scroll down below and find the content section we identified what is layout and what is part of the page so here we see the main is part of the page again we have to take care of this page sign up class maybe but let’s take this main tag because this is what contains the actual form let’s go in our PHP storm and I’m going to delete everything and I’m going to paste right here this main tag okay good now we have this um sign up blade PHP but that needs to extend clean layout okay just like we are extending layout up on homepage and we Define the title and the content we have to extend the clean layout and Define the title and child content because the clean layout is using child content so let’s open signup blade let’s collapse this Main and we are going to extend from layouts. clean let’s define section title with signup title and let’s define section chart content and we obviously need end section as well okay awesome now let’s open web.php from Roots folder roots web.php and we have to Define new root for sign up root get sign up and we’re going to use sign up controller class create method let’s let’s replace this fully qualified name with import so that we have signup controller imported right here and just like this we can already have a look and see the result let’s provide sign up right here hit the enter and we see the sign up page which is pretty cool if we have a look in the HTML template we can see that the body has page signup CSS class this is something which is missing in our case so if we check our website we see the sign up page but if we inspect this check the body we don’t see the CSS class however if we check right here we see that it has this page signup class which adds additional ping top and bottom so we want this ability to add this page sign up CSS class to inside clean layout and it’s pretty easy much easier than you think so we extend these layouts clean right here and we also have possibility to Prov additional parameters right here for example we can provide CSS class which needs to be page Dash sign up now if we go in the clean layout we can use this right here we can do like a check if the CSS class exists or not or we can assume that it always exists and we can simply output CSS class if I save this right now and reload on the page we’re going to see page sign up CSS class was successfully added to body so in our example if we want to be 100% safe and make sure we don’t try to Output a variable which is not even defined we can do something like this we can use is set directive for this which we already mentioned in previous lessons we provide CSS class if that is defined we output it and we need end is set as well and just like this the result will not change we will still have this page output we also have additional extra white spaces in front of the class after the class which can be removed if we remove these white spaces right here awesome now we don’t have that however if we try to if we just forget to provide that CSS class and remove this completely it will not throw an error it simply will not use that class however as you see we see empty class attribute right here which we can also prevent if we go right here and if we move that class only if the CSS class is defined and we move that double quotes right here as well so now pay attention so the following content will only be rendered if the CSS class is defined now I save this reload and we don’t even see this CSS empty attribute but now if we go in the sign up and revert this back we save and reload we see this CSS class [Music] added now I have a challenge to you and I want you to promise yourself that you will do your best to implement this challenge only by yourself and you can check obviously my solution if you need but do your best to do this on your own and the challenge is the following it’s pretty simple in my opinion because we already did something similar in the same way like we created sign up page I want you to create a login controller new login route and copy the login form content from the HTML CSS project template project into your LEL project and create a login page on/ login URL so whenever we try to access SL login it should render the following login form coming from the Lal application pause the video right now span time and then come back and see my [Music] solution all right I hope you made it and now here’s my solution let’s first open HTML CSS project and let’s open login HTML we are going to copy this main tag which is the main form now let’s open our project and I’m going to create the controller and view file PHP artisan make controller login controller hit the enter PHP artisan make view out. login we hit the enter so the controller was created view was created now I’m going to hit double shift on my keyboard which gives me possibility to access through all my files you can hit contrl in p in vs code to do something similar so I’m going to open login controller file then I’m going to create the function create from here I want to render a view al. login now let’s open the view file which should be inside out slash login which we just created okay awesome I’m going to delete this div and I’m going to paste this main div what I just copied from the HTML CSS project I want to extend this from layouts. clean I want to Define section title login and I want to Define section child content let’s collapse this div and here we need end section as well let’s remove this extra new line and right here in this layout clean I want to provide the CSS class page- login oops we need key right here as well CSS class will be page- login now let’s open web.php and I’m going to duplicate this line and I’m going to Define login rout which should use login controller let’s replace this with import we have login controller imported right here and we need to use the method called create now we save this let’s check in our browser reload the page and we see login page we see one error which is coming from JavaScript it it is not that important we can close this and uh the main thing is that if the CSS class is available so let’s check this page login we see that so our login form coming from LL exactly looks like the login form coming from the HTML CSS project [Music] there are several more useful cases when working with Section related directives let’s open the layout up blade PHP here we have the empty footer tag now let’s assume that inside this footer tag we want to Output footer links for this we would use yel directive and let’s call this section footer links whenever that footer link section is defined the links will be outputed right here in this footer now let’s open index blade PHP which is the homepage and inside this content I want to define a section let’s define section Hooter links we obviously need end section and here I’m going to Define two links I’m going to Define link three and Link four and you will know right now in a few seconds why I defined link three and Link four and where is link one and Link two okay I’m going to save this and when we reload the browser we’re going to see link three and Link four at the very bottom left corner of the screen we can check this in the page Source we can zoom in and here inside the footer we see link three and Link four now let’s assume that we want this link one and Link two to be for every page now we provided this link three and Link four for homepage only if we go to another page those links three and four will not be there now I want to Define link one and two for every page okay so in this case I’m going to change this yel into the following so let me remove this completely so here we need to define a section footer links okay but instead of calling right here end section we want to call show directive so whatever we put right here in this case we’re going to put link one and Link two so the section will be defined but it will be also outputed so this is pretty much equivalent of calling end section right here and then calling yel with footer links so this is pretty much the same as a having show right here and of course this is much better so now if I save this and reload in the browser we still see link three and Link four why do we see this and Where’s link one and Link two if we don’t Define this section at all in index blade and I’m going to comment this out we are going to see link one and Link two in footer because we didn’t Define it and it took the default values whenever we Define that our content made an override of these two links however what we want is the combination of Link one two three and four how to do this for this we are going to use right here a directive called parent and we can use this parent in any place we can use it here we can use it here or we can use it here so it’s up to you where you want to use it in this case we’re going to put at the very beginning of the section and now this print will take the content of the parent section the parent section in our case is this so link one two and then three and four will be defined and will be printed in our browser and you see the [Music] result there are several more direct which are definitely worth mentioning one of them is his section his section directive checks if a specific section is defined or not and let’s see this on our example I’m going to remove this default content right here and let’s say that I’m just yielding footer links right here so if we open the homepage reload this we’re going to see link three and four because this is how we Define in index blade cool but if you don’t don’t Define these footer links I’m going to delete this completely then the footer empty tag is still rendered and let’s say that we want to avoid this if the footer links are not defined we don’t want the footer tag to be defined or it to be empty so how to do this let’s go into up blade and before yiing we are going to check if footer links section exists it if it is defined if that section exists then we’re going to use at the end we need to finish this with end if directive and inside the head section and end if we can put this footer so if the footer link section is defined we Define the we create this footer and output the footer links but if it is not defined we don’t even show this footer tag okay this is awesome now if we reload the page in the page Source we don’t see the footer tag at all however if we open index blade and uncomment these footer links we save we reload we are going to see footer with the links the next directive worth mentioning is section missing using this directive we check if a specific section is missing or not in our case if the navigation section does not exist then inside D with class pool right we render the default navigation using checked directive we can add checked attribute to input type checkbox or input type radio the check directive accepts a Boolean expression if the Boolean expression is false then checked attribute will not be added to the checkbox or radio button however if the Boolean expression is true then checked attribute will be added and finally it will be rendered with checked attribute in HTML in the same way there exists disabled attribute if it is a false the disabled attribute will not be added if it’s true it will be added in the same way there exists readon which will add or not add readon attributes to HTML input elements in the same way there exists required attribute which will add or not add required attribute and there also exists selected directive which will add or not add selected HTML attribute to option tag on the example what we see right now we are iterating over yards and whichever is the current y we are adding selected attribute to that option so in our case 2024 this is the current time when I’m recording this course to option with value 2024 will get this selected attribute the other options will not get that in LEL components are reusable piece of user inter interface that can be included in your blade views they encapsulate HTML markup Styles and logic into a single unit making it easier to manage and reuse code components can accept data as attributes and can include slots for more flexible content insertion lell provides two types of components class-based components and Anonymous components now let’s learn how to create Anonymous components first Anonymous components components are blade files located under specific folder inside resources views I’m going to create a new folder called components inside components I’m going to create a new blade file called card blade PHP this is a blade file and inside here I’m going to create a div and let’s give it a class card inside here I I’m just going to write a lurm Ipson text at the moment so this is a component because it leaves under a specific folder inside views now let’s see how I can use that component in another blade file let’s open Home index blade PHP and let’s try to use it right here at the top of the content section components can be included as HTML tags every component tag starts with ex dish so in our case ex dish card will be the component we want to include the components can be self closing text like this or it can have a separate closing tag like this so we have card component created and we have included this right here let me change this into self closing version now if I save this and if we ch check the browser here is lurum text which is coming from component if I duplicate this component couple of times I will see this lsum text repeated couple of times as well components can leave in sub folders as well for example if I copy this card blade and I’m going to move this into a subfolder of the components let’s create a subfolder and I’m going to call this let’s call this admin folder for example if we have a separate card component for admin I’m going to move this right there and I’m going to change the text right here and I’m going to call this admin card component now I save this let’s open index plate PHP and I’m going to use this admin component in the following way x- admin do card and then we have sell closing or we can have a separate closing tag so in this case the admin defines the folder and card is obviously the component name we can have deeply nested components we can create another folder inside admin and call it for example bootstrap and we would be able to render the card component from the bootstrap folder in the following way admin bootstrap card but every component starts with ex and dash of course this component doesn’t exist so it will show an error so so let’s just remove this bootstrap I would save this and if we check in the browser we will see right here admin card component to create the component using Artisan we should execute the following comment PHP artisan make component then we would provide the component name card and we can provide an optional flag D- view which will generate Anonymous components we are talking right now about Anonymous components we will talk about class components in the next lessons and using the following way we can create new component because we already have card component available this will not work and this will throw an error so let’s just change this and call it button when you are creating Anonymous component it really doesn’t matter how you name your component with uppercase b or lowercase B it’s still going to create blade file with all letters lowercase if we hit the enter the component created successfully we can check inside views components we see button blade PHP if we open this we see right here deal with a comment and we can change this into button with submit text for example we open index blade and we can include this in the following way x button now we save it we reload and here’s the button component if we want to create a button component inside admin folder we will do it in the following way admin. button let me remove any unnecessary files like this button blade I’m going to delete this I’m going to delete the admin folder also from the components so we know that we can put the components in a subfolders that’s clear we have this card blade and we are using inside index blade PHP P however we have this x button and X admin card as well which I’m going to also remove here we are using X Card component three times and if we check in the browser we see three times the same content would not it be great if we would have the possibility to customize the content every time we are using the excard component that is possible through component slots a component slot is a placeholder where you can insert custom content when you use the component it allows you to pass different pieces of content into predefined sections of a component making the component flexible and reusable there are two types of slots default slots and named slots now let’s see an example of default slot I’m going to open the card blade component and I’m going to remove this LM iom text and I’m going to use preserved variable variable called slot I’m outputting that variable inside in between the opening and closing html text now I’m going to open this index blade and I’m going to change how I’m using the EX card instead of using with self closing tag I’m going to have a separate closing tag right here and in between I’m going to write some content like card content one and now I’m going to duplicate this two more times and we’re going to have card content two and card content three now let’s delete these self closing versions now I save this and if we reload in the browser now we see card content one card content two and card content three that happens through slots whatever we put in between X card opening and closing text that will be taken and rendered instead of this slot variable right here now let’s talk about named slots there can be only one default slot however there might be multiple named slots now let’s update our card component into like this I’m going to create two HTML elements card header and card Booter inside card header I’m going to use use a variable called title and inside cart footer I’m going to use a variable called footer awesome so those variables by default do not exist and if we try to reload the page we are going to see an error undefined variable title which is obvious now let’s go how we use this excard component and I’m going to Define named slot to provide content for named slot we should use ex slot tag so I’m going to use ex Dash slot okay then we can provide the name of the slot so I’m going to give it title and then card title one so in the same way I’m going to Define X slot with name footer card Hooter one now I’m going to comment out or maybe completely remove these other cards and I have this single card with title name and footer name for slots this name given right here title and the footer name given here will be converted into a variable’s title and footer right here so if I reload the page we will not see error anymore instead we see card Title One content and card footer one instead of providing name attribute right here there is another version to provide content for title slot I’m going to delete this name and we can do in the following way x- slot colon title and x- Slot colum footer let’s delete the name here as well so whatever we provide next to this column right here that’s going to be converted into to a variable in our component okay if I don’t provide title and if I provide title two for example we will probably see an error on title because there is no title however we are trying to print that now this works exactly as it should work if we want to check if the default lot is empty or not we can do this in the following way the slot provides a method called is empty and we can check if the slot is empty empty then we can render some content else we can render the slot actually and just like this if we don’t provide anything any information in the default slot let me remove this completely then it will render the message please provide some content right here however if we provide this card content one reload the page we will see this card content one now let’s create class-based component PHP artisan make component let’s call this search form and pay attention right here that I start the naming with uppercase C and then I have F also uppercase so we have to name our class-based components with Pascal case every first letter of the word word needs to be an uppercase and we also don’t need to provide Das view we hit the enter and it created the component pay attention that the component was created under up view components search form so this command created two files one is under up view component search form and second is under resources views components search dish form okay cool now what is the purpose of this class class-based components give you a possibility to override the default location of the blade file by changing The Following part right here so inside render it is rendering component search form which we can change easily if we don’t want that place also if you have very complex logic of selecting data that you want to render in your component you can put this in the construct ctor right here we can also Define public methods right here let’s define test return something which can be used then inside the component in the following way dollar sign test and parenthesis so this test right here is available as a variable but because it is a function then we use the parenthesis right here now let’s open index blade and let’s include this search form component maybe next to the card I’m going to use x dash search- form okay so we save this and now we check in the browser and we see something and that something is coming from here from this method test now let’s open index blade PHP and I’m going to find the actual place where we have have this search form so this is the home slider I’m going to collapse it inside main we have this find a car form so I’m going to get this completely go inside search form and replace it right here and then in the index blade I’m going to use this ex search form like this now if I save and reload down below we see this search form which is coming from the component if I go in the component and delete everything this form will be gun as you see it is not there anymore this is pretty handy because right here in this search form we will need to have options for um maker maybe for model for States and all that information can be selected inside search form which will be available inside the component any public property or public method what we describe in the search form will be automatically available as a variable inside search form blade PHP we have the following search form class based component which has its own Associated blade file now let’s assume that whenever we use this search form component from here we’re going to pass action and method then we’re going to take this action and Method and we’re going to Output those two variables right here this can give us possibility to provide different actions inside the search form when we use the component from different places okay how we can pass those attributes and render them let’s open search form PHP and right here in the Constructor I’m going to accept two properties public string action and public string Method All right we Define those properties and they are both of them are required right now if I reload the page we’re going to see an error required string action so we have them required but we don’t pass them from here now let’s provide action equals something and Method equals something something now if I reload the page the error will be gone so we pass those two attributes we accept them right here but we don’t use inside the blade file now let’s replace the following part of the code and output these two variables action and Method Keep in mind that any Global variables any Global properties inside the component class and the global methods are directly available in the blade B that’s why because we have this action and Method defined as public properties we can directly access them under search form blade file now if I save and reload we don’t see any error and if we check the page Source if we search for form we’re going to see action is search and method is get and just like this we provided those two properties right here we can change it and just leave DH SLS and we can change this into post if we want preload the page and we’re going to see it like this however if we don’t want these properties to be required we can provide some default values for example search and get now this gives us possibility to not provide none of the properties or we can provide only one and for the second one it’s going to take the default values but let’s leave it like this reload the page and it’s going to take take the default Valu search and get and we don’t see any errors because we have provided default values for these [Music] properties now let’s open card blade PHP which is anonymous component and see how we can pass attributes to Anonymous components let’s open index blade and right here we are using this EX card Anonymous component let’s provide color equals red for example and in the anonymous component blade file we can already access the variable named color so whatever attribute we’re giving right here that attribute will be created as a variable in the blade file so let’s just output here color we save and we reload and right here we’re going to see red okay this is what we provided obviously we can provide any number of attributes right here and for all of them the variable will be created however there exists a specific dedicated directive to define the properties of the anonymous component and the directive is called props so we provide array right here and inside the array we’re going to Define what properties we’re accepting inside this Anonymous component so I’m going to accept color and I’m going to accept BG color right here okay so I expect these two properties to be passed to the uh Anonymous component however now you might have a question what’s the purpose of defining the props if we can just directly provide the color or PG color right here and we can accept them right here in the following place and we can display them that’s a good question there are couple of reasons one of the reason is that when we Define those props we have an explicit view of what properties are defined and are used inside this component that component might be multiple lines dozens of lines and we Define those props at the top on it’s a recommended practice to Define them on the very first line of the component okay and when we have a look on the very first line of the component we immediately see what properties this component accepts that’s the one thing and the second reason why this is a good practice is that we can provide default values for example on the BG color I’m going to provide the default value to be white and whenever the B color is not provided is not passed it’s going to be white so now let’s use this color and BG color right here card Dash text Dash and let’s use color variable here and then I’m going to add a second class card BG and let’s use BG color variable here now if we save and reload and I’m going to check the page Source let’s search for card and here we see that card text red card BG white the card text red is given because we are providing a color righted here and BG white is because we don’t provide BG color from here but we have the default value for BG color however we can obviously provide BG color here to be blue for example we save we reload and we see blue right here when we provide directives we can provide the attribute names with camel case notation like it is defined right here in the props or we can provide the T notation as well BG Das lowercase C color so this will also work we reload we still see blue right here however if we just provide full without without Dash but the C is lowercase still this will be a different variable and if we reload in the browser we are going to see white because right here we are using BG color with camel case naming and we don’t provide anything with camel case naming so that’s why it is taking the default value for the B color okay so far so good what if we want to provide variables right here let me Define two variables using PHP directive so one of them will be color let’s give it red and the second will be B color let’s give it blue so I want to use these two variables right here so we can use directly dollar color here and dollar BG color however those text will be evaluated as hardcoded texts not as very variables if we want them to be evaluated as variables and the values to be passed inside the attributes we’re going to use column in front of the attribute name so if we save it like this and reload the page we’re going to see now card text red and card BG blue this is exactly how we want and there is a shorthand version of the following line so I’m going to duplicate this line and I’m going to comment it out and we can have have a shorthand version whenever the variable name which we are passing matches the attribute name exactly we can do it in the following way so we can remove the value and we can use the dollar sign here and this is equivalent of this code and in the same way we can do for B color we can remove this part and now the following line is equivalent of this line which is pretty cool so if you want to use this shorthand version that’s good however if you have a different named variables like C right here and PG right here obviously you cannot do like this then you have to provide C right here and BG right here okay let me quickly undo this because we have now the same naming of our variables and now let’s test this in the browser reload the page we see right here and blue right here [Music] in components we have access to predefined variables called atributes so this is an object and we need to print this using Dum and let’s have a look what this variable looks like let’s reload the page and we see this is component attribute and beg so which has attributes property right here and it is empty array at the moment however if if I comment out this part save and reload we’re going to see that the inside attributes now we have two elements so one is color red and second is B color so the whole idea of the compute component attribute bag is that it contains all the attributes we provide whenever we use that component and it is excluding those properties which is defined using props directive so in our case we provide two properties right here color and V color but we don’t have props defined anymore we commented that out so it is taking all given attributes from here and inside attributes we have that all of them so if we provide right here language for example L equals n we save we reload now we’re going to see three attributes and languages inside there as well however if I now uncomment this code and we Define color and B color so then color and B color will be excluded from here so let’s reload we see only one attribute this is language for those attributes which is defined right here it is creating the LEL blade is creating separate variables for them however what is not defined using props it goes inside attributes and that is very good because we can use that attributes actually and we can output it right here in the following way let me remove this time so I save I reload we’re going to check inside the page source and right here we see link so the two string method of these attributes object is implemented in a way that it outputs the attributes properly as they should be outputed we can also provide test right here to equals something we save we reload and we see language and test output it right here so this is pretty cool now instead of test let me provide right here class and I’m going to add additional class let’s say card- rounded so this CSS class actually doesn’t exist I haven’t created any kind of styling for this specific class but that is not the main thing the main thing is how that CSS class will be added to the element so if we save this right now and reload in the browser look at this we have something something strange we have class card rounded and then we have another class so this card rounded is coming from the attributes if we go right here we are outputting everything from the attributes and class is inside that attributes however we have that second class right here which is what we have defined right here so in our case what we want is to merge the classes defined right here to the classes what will be provided to that element so this is how we can do this so instead of outputting attribute separately and outputting right here class separately on attributes we can use method called class this class accepts string and that should be the classes what we want to Define inside here so I’m going to take out these classes I’m going to delete this class attribute and let’s put them right here okay however pay attention that we need variables inside here let me use double quotes so we are going to use color variable here let’s delete these curly braces because we have a string here okay also so we have this card then CeX with color and cartex with BG so these are the classes which will be merged to class attribute given to this element so the card rounded will be merged to this one and then all the attributes will be outputed now if I save and reload we’re going to see we have language as well but we have all the classes merged into a single attribute so this is pretty cool in my opinion attributes object also has method called merge we can chain class method and merge method together but the purpose of this merge method is to merge the given attributes to the default ones we provide right here so for example if we don’t provide a language attribute right here let’s say that we want the default value on the card the Lang language attribute to have Ka which is the language code for Georgia so we’re going to provide right here inside the merge associative array where the key is the attribute name and the value is the default value k a right now we are providing language attribute so it is going to render the English however if I remove this save and we check this in the browser we’re going to see the language will be Ka so using the following approach you can Define the default attributes which will always be merged with the attributes given to your component if you use the following syntax this merge obviously can be used before the class method or after the class method it really does not matter the main thing is that it merges the attributes defined right here to the one given to the component here we are using card component and we have two slots defined title and footer now let’s assume that I want to add additional attributes to title or footer HTML Texs so let’s provide right here class for example and I’m going to give it card header blue now let’s assume that I want the following CSS class to be added to an HTML tag which renders the card header if we go in the card component we’re going to see that we have right here card header inside which we render the title so how we are going to take this class given to that slot inside here so the title basically is a variable which outputs the slot content in our case it outputs this card title one but actually it is an object and if we simply print using dump what is title we are going to see the following result so it it is component slot which has its content and it also has attributes and this attributes is instance of the exact same class we used previously right here the attributes okay so now what we can do is to access attributes title attributes and we can use that title attributes right here instead of this class so we can use title attributes we can provide class method right here in the same way we are doing exactly right here and we can provide card header CSS class now let’s move this down format it nicely let’s remove this dump and let’s just leave title as we had previously now when we save and reload if we check we see card header and card header blue this is exactly what we wanted of course if you need you can also use merge method on this title attributes in the same way we are using right [Music] here by default there are some keywords reserved for blades internal use in order to render components the following keywords cannot be defined as public Properties or method names with in the component for example if we try to Define right here method with a named data which should not be defined and then if we try to use that method in the blade file call the method and try to print the result in the browser we are going to see the following error argument number two data must be type of array string given something which is not very clear but this is because we made an override of existing data method which should not be done so whenever you come across error similar to this just check what are the reserved keywords and make sure that you don’t have any public Properties or methods defined with these [Music] names inline component is a component which does not have its Associated blade PHP file and the HTML content is returned from the components class render method directly now let’s execute the following Artisan command PHP artisan make component test component and we’re going to provide the flag D- inline we hit the enter the component was created let’s open the test component and here we have this render method from which we are returning HTML so inside this HTML every blade directive is supported we can use right here predefined variable called attributes we can also use slot right here the default slot or name slot any directives any blade can be written right here inside the string now since we have that defined let’s open index blade and let’s try right here to use this test component we’re going to use it in the following way X test component it’s pretty identical how we are using in general I’m going to provide some content inside there and I’m going to also add CSS class now because we are outputting all the attributes right here we are outputting the default slot we should see this rendered now let’s check this in the browser we reload the page and we see lurm ipsum right here and if we check in the page Source we are going to see the card right here as well so the CSS classes or any attributes we are going to add right here will be outputed on the HTML element on this T right there it is not very common to create and use inline components without blade files but still I wanted to show to you that so that you know that this is available we already have defined layouts and layouts are defined using template inheritance now it’s time to refactor our code and we are going to generate components and create rebuild our layouts using components let’s bring up the terminal and we’re going to create two components PHP artisan make component I’m going to call the first one up layout hit the enter and the second one is going to be base layout so the up layout will be the layout which will be for the homepage for example and the base layout will be the same as the clean layout What the clean layout does just I think the B layout describes it better that’s why I simply decided to call it base layout awesome so we have those two component classes now when we generated these components actually it generated two files for each component we have under up view components we have up layout and base layout but for each component for each class we have also View files up um up layout blade and BAS layout blade so what I’m going to do is just delete these components okay so we don’t need these blade files but we need to use these two blade files up blade and clean blade okay I’m going to also rename this clean blade and call it base blade let’s do refractor and now let’s open up layout and here is the components up layout blade file specified which I’m going to change into layouts up so this is the location of the blade file or the corresponding component let’s open base layout and I’m going to do something similar layouts base okay so we have the component classes ready we gave the correct names to the blade files now we are going to work inside these blade files so let’s open up blade PHP and Bas blade PHP so there are two approaches the first approach is to copy everything from this Bas blade PHP put this inside up blade but add this footer and this header okay so this is going to be the same however as we agreed when we implemented these this using template inheritance because our head tag is completely identical in Bas layout and in up layout we are extending the up layout from the Bas layout okay which previously was called clean layout but now let’s change this so I’m going to delete everything from this up plade or maybe I shouldn’t delete everything I’m going to take out this part and instead of using this extends directive we are going to use now component notation our base uh layout component is called X base layout okay because this is the class name Bas layout and we use components with ex prefix awesome so this is the base layout now let’s paste this include of headers instead of yel content we don’t want yel instead we’re going to use slots okay so here I’m going to use slot the default slot for the photo links we can leave the section we can obviously change this into name slot again but for now let’s just leave these footer links as a section awesome let’s open also index blade PHP from which we are extending the app layout so we should change this I’m going to take out everything what is inside this section content so let’s take this part completely out uh and I’m going to delete everything except these footer links I’m going to leave this for now because I want to put this in a proper place and here in this um index plate I’m using up layout so let me paste this everything here I’m going to also take these footer links and put this in the Uplay out inside it okay awesome now let’s have a look in the browser what happens what what was changed so we don’t see actually anything right now but if we check in the page Source what do we see we see body we see script right here but between opening body and script there’s nothing so if we go in the base plate PHP that is because uh we don’t have any kind of slot right here so we are yelding we are outputting the child content but now the base layout is used as the component right here in the up layout and everything what we see right here will be slot so inside base blade we are going to Output slot the default slot now we save we reload the browser and we see something the homepage actually was recovered and in the footer we also see these four links so two of them is coming from this up blade PHP and the other two link three and four is coming from this index blade PHP okay so so far so good now let’s take care of the login page because the homepage is done we recovered it nice maybe we have we have to adjust couple of things but uh we will do this so now inside the login we have this undefined variable slot because when we open login blade PHP we are using this pay layout as um normal blade file with extend in but we should use this as a component not with extend so I’m going to take out everything thing this main tag let’s delete everything um actually uh we need to delete everything but we have to then later pass this page login as well as the title okay let’s still it everything X base layout and let’s put this main tag inside there now we save we reload the page and the login page was recovered however the CSS class is not added age log l in as well as the title is not given as we want so if we check the page source for login URL or even for home we see there is no title right here uh and then we have this pipe in car selling which is the general name of the website now if we go in base blade PHP we see that we are still yielding title right here okay so this is what I want to change in the base blade we need two variables we need the title and we need the body CSS class and we should we should accept those as attributes as properties of the component so let’s define them right here props we have body class and I’m going to give its default value empty string and we need title as well and I’m going to give it also empty string now right here I want to Output title okay and if we scroll down below right here I want to Output body class we can call this obviously CSS class but we might want to add some CSS class to HTML tag as well for some reason so let’s call this body class now instead of is set we have to change this because it’s going to be always a set is set will always return true instead of is said we can just do if body class exists then then we output the body class inside the class attribute and finally we need end if okay great now we save this we reload the page the resle doesn’t change because we don’t provide these two attributes if we go in the blade login blade PHP now we can provide them right here title is login and body class equals h- login we save we reload the page now here we see login and here we see page login class now if we reload the page we see pading was added to the form around it and also right here we see the login title this is so cool so awesome let’s go on the homepage and we need to do uh the handling of the title right here as well so let’s go into up blade now we know that our base blade accepts two attributes body class and title let’s go in the up blade and we’re going to accept title right here so Props title we can give it default value empty string then whatever title is given to the up blade we are going to pass it to the base layout so because we’re going to pass title as a variable we’re going to use colum right here title equals and then V variable title or the shorthand notation will be dollar sign right here and remove this completely because the attribute name what is defined in the paas layout matches the variable name right here so we save this we reload this and we have to provide the title obviously it doesn’t work because we have to provide this title from the index blade now our app layout also accepts title if we go in the index blade right here we can provide title home page save and reload and here we see homepage uh written so our index blade is passing title attribute to up layout up layout takes that and passes it to Bas layout Bas layout takes the title and renders it right here base layout also takes the body class and if it is available if something was given it is adding it in um in theory if we need to provide body class from up blade as well to the base layout we can also do this as well from here we have to just provide body class equals something we save we reload the page and if we check the page Source we are going to see something right here but obviously we don’t need this so I’m going to Simply remove that all right now let’s define these footer links as a named slot and remove this section and use slots um for the footer links as well so right here inside the footer I am going to uh do the following so so we need these two links link one and Link two let’s remove the section completely okay so we need these two links but we have to Output right here the variable which going to be the name slot let’s call this variable footer links okay however what should happen if this is not defined so in this case uh so let me first leave this let’s do like this footer links and then if we go in the index blade if you scroll down below here is the section we have to change this and we have to use um X slot footer links like this great now let’s take these two links link three and Link four and put this inside let’s remove this section completely now let’s save this and let’s have a look in the browser we reload we don’t see any error which is good and down below we see link three link four then link one and Link two however we want it vice versa so here we have the footer links but we should put these down below right here awesome we reload and now we see correct ordering link 1 2 3 and four however we will have an error if we don’t want to Define these footer links for specific page like if I comment this out and I reload load the page we see an error that we try to Output footer links which which is undefined so in this case we have two options one is that we can check if the footer links is set we can output it only in this case or we can Define this under props so footer links will be an empty string by default now if I save and reload we see nothing simply we uh we have at the bottom link one and Link two but for link three and link four it doesn’t uh print anything it doesn’t print even error now if I uncomment this part the footer links again save and reload we see link three and Link four as well now one last thing what I’m going to do is to change this layouts partials header and create this component as well and use it right here as a component let’s expand the project and here we have these views layouts partials header blade so there are two options how we can do this first is to create class for the component like we created up layout and base layout so if we create for example header um header component and we change the view location for the header component and specify under layouts uh partials right here this is how we can do this is one option second option is to move this header blade into components maybe inside components we can create a folder called layouts and we can move this header right there which is something I prefer I don’t want to create a separate class for the nav bar or any partial U component what I’m going to have in my project so what I’m going to do is to create layouts folder here and then move move this header right there inside layouts components layouts now this partials folder is empty right here which we can delete and in the layouts we have this header blade PHP now if we go into up blade PHP we can change and use this in the following way X layouts do header so this is the component oops it should not be like this so X layout Dot header so this is the component and how we can use that let’s remove this line let’s leave it and let’s reload the page and have a look so layout header it should be layouts header in plural form reload the page and now we see header recovered and now we have everything the whole application is using components the complete layout uh because this doesn’t need any content in between we can change this into self closing tag as well well and this is how we can have [Music] it now it’s time for a small Challenge in a similar way how we transformed login blade PHP from using template inheritance into using component you have to change sign up page in the same way right now if we check sign up page in the browser we see something like this so we have an undefined variable slot and we have to adjust this and we have to make this working in the same way as login page is working okay pause right now spend as much time as you need and then come back and see my [Music] solution okay so here’s my solution let’s open sign up blade PHP and I’m going to delete everything right here and we are going to use x base layout component so the end the closing tag should go right here and we have to provide title to be sign up and we have to provide body class to be sign up page we save and we reload and we see page right there however the CSS class is not applied probably because it should be page- signup and not sign up page and just like this the sign up page is already [Music] working I also have Second Challenge to you in this case we’re going to create new component if we pay attention to login page and sign up page we see they are very similar to each other so we have this logo ipsum right here we have this Google and Facebook we have links right here and if we go on the login page so we see again logo here Google and Facebook and the form part goes right here okay so now I want you to create two components for Google and for Facebook because these buttons are duplicated if we scroll down below we’re going to find this is the Google button and this is the Facebook button okay let’s create a component and use them in the signup play PHP as well as in the login play [Music] PHP okay here is my solution let’s bring up the terminal and I’m going to execute PHP artisan make component Google button and we’re going to provide D- view we don’t want the component class to be generated we only want view file we hit the enter the component create and in the same way I’m going to generate bbfb button so we hit the enter the component created successfully now let’s open Google button blade and we’re going to open Phoebe button blade or FB button blade so in the sign up blade I’m going to grab this button for Facebook and we’re going to put this right here and we’re going to grab this button of Google and put this right here okay so then let’s go right here and we are going to use now the component X Google button and we can use self closing tag right here and xfb button and again we can use self closing take approach and let’s copy these two buttons right now open blade PHP scroll down below and replace these two buttons with these two lines we save and we reload and the result is not changed we still see Google and Facebook buttons and if we go in the sign up page we still see them right here in the future when we actually Implement register or login with Google and Facebook if we need we can add additional props right here we can also add additional props right now for the text or for the image we can also add slots you know all that kind of thing things already you can Implement your own version of Facebook or Google buttons with different props so it’s now up to you right now I’m going to leave this as it is we created reusable component already which is used in two places and this is very [Music] cool I have one last challenge to you we see that sign up blade PHP and login blade PHP are very similar to each other we already observed now I want you to create another layout similar to how we have up layout I want you to create guest layout which will extend from this base layout and you’re going to put all the code which is common for sign up blade PHP as well as login blade PHP inside the new layout so if you pay attention right now the logo right here the car image uh the link right here the link text changes and you can create a named slot for this and the form content obviously changes and you can create default slot for this but other than this form content and this link right here everything stays the same so if we go on the login page we can see we still see logo here we still see car we still see these um Facebook and Google buttons only part is this form and inputs and button in the link right here this is a little bit complicated challenge so I want you to spend as much time as necessary so you might need half an hour 5 minutes or 1 hour the main thing is that you should implement this by yourself okay after spending some time on this if you haven’t implemented or if you have implemented come back and see my solution [Music] okay awesome now let’s see my solution how I would do this first I’m going to create the component PHP artisan make component and let’s call this guest layout awesome so the component was created and the new component file was also created under components guest layout blade I’m going to move this guest layout blade into layouts folder and I’m going to also change rename it and it’s going to be only guest blade PHP now let’s open guest layout PHP class and right here I’m going to change the view layouts guest awesome now let’s open layouts guest blade and we’re going to extend from base layout X base layout however the base layout needs two properties properties it needs title and it needs body class so let’s accept those two properties right here props title let’s assign default Val mty string and body class empty string as well so now we provide title here and we provide body class here with dollar sign so we provide these two variables inside this base layout we need to put something which is common for the login blade as well as the sign up blade now let me copy one of the views content the entire content so let’s get this and let’s put this right here okay so we are already using this base layout so we can delete this line completely cool now inside main let’s format the code inside main what do we have so if we scroll down below we see right here logo this is logo which is common for login as well as for sign up so we are going to leave this inside the layout then right here we have text which is specific to login okay so because this is specific to login we need this to be inside login blade not inside guest blade so that should be part of the login as well as the form the entire form so I’m going to take out the this and right here I’m going to Output the default slot okay now if we go in the login blade I’m going to delete everything and we’re going to use ex guest layout okay and I’m going to paste this login title as well as the entire form obviously we need to provide the title and body class as well so right here we need Title to be login in body class to be page- login and the last thing what we need to take out or create slot is where’s that this is the form I see okay so here inside the form we have this Google button Facebook button and this link okay so this Google button and Facebook button can be part of the layout right and the text what we see right here here that should be named slot so the interpretation can be different so right now we have this ex Google button and x Facebook button um inside the login blade uh which can be theoretically inside the guest layout if we simply close the form right here so we have the form closing tag right here I’m going to delete this and if we close the form right here okay so then what we can do is to take out this part okay and put this back inside guest layout right here okay so this slot will be replaced by the form with the login Button as well as by the title but the Google button as well as the Facebook button will be inside the layout now if we save this and if we check the login page we see the result is actually not changed however this part don’t you have an account this part now is part of the layout okay and what we need to do is to create named slot for that so for this we can create Nam slot for the entire div or we can only create Nam slot right here so for example if we call our named slot um footer link for example then we go in the login blade and right here we can Define x- slot and we give it name footer link okay and we put this right here inside the footer link now we save we reload we still see link right here now let’s create sign up page so here we are going to use we’re going to take out this H1 and we’re going to take out this four like this and we’re going to delete everything and we’re going to use x guest layout then we paste everything here we need to provide title to the sign up page and we call this sign up and we need body class and we need to call this page- signup okay we save this we reload the page we need to go to the sign up page and now we see uh the error footer link because we don’t provide this footer link obviously we can check first of all if the footer link is given or not or we should say that the footer link must always be presented so in this case we don’t have this footer link named slot so let’s provide it x- slot footer link for the sign up page let’s go into let’s expand this form we scroll down below we see we have this button here and the footer link here so what we need to do is again move this form closing tag after the register button right here and this is part of the layout so we can delete this and this text is part of the footer link so we extract this we take out this and we delete this div which is Again part of the layout right here awesome so let’s delete this now we put this footer link information here we save it we reload the page and now let’s have a look already have an account click here to log if we go on login page we see don’t have an account click here to create one so we successfully implemented this name slot for to link and we have different texts for login blade and different text for um sign up plate okay and in the guest layout we have this entire form including the Google and Facebook buttons in the footer link Down Below in the future if we decide to have separate images the car images to be different for the login page and different for the signup page you can create another named slot right here just like we are outputting footer link we can output um image link or image uh element right here okay and then you would Define right here image element slot different for sign up page and different for login [Music] page now I have another challenge to you if you open index blade PHP file from the home folder we’re going to see that we have a lot of duplicated code so this code is related to car item because we have the exact same car item many times we see the exact same HTML code right here the challenge is the following you have to create new component car item component and you have to use this component right here inside the loop but at the moment because we don’t actually have any data related to cars just Create A Primitive for Loop from 1 to 15 and render the exact same car item component 15 times in this case we’re going to have right here only couple of lines but it will render the exact same component multiple times and we won’t have code duplication and in the future when we actually Select Cars from the database we will have an actual data we will slightly modify the component okay as always think a little bit spend the time on this Challenge and then come back and see my [Music] solution all right now let’s see my solution first of all I’m going to bring up the terminal and we’re going to create new component PHP artisan make component car dish item we can create class-based component or viewon component in this case I don’t want class Associated to this component so I’m going to provide right here D- view we hit the enter the component created successfully now let’s go under views components car item blade PHP this is the component let’s open index plate PHP file I’m going to copy single example of car item and put this in the car item blade PHP let’s expand this we see this car item with everything is dummy right now and hardcoded we’re going to modify this later now right here we don’t need this hardcoded HTML anymore so feel free to collapse everything and delete it so let’s collapse everything here we go and I am going to delete all car items from here just like this then we’re going to use for Loop and we’re going to iterate from 1 to 15 so let’s introduce I variable which equals to zero while I is less than 15 we’re going to increase I and obviously we need right here and four and in between the opening directive for four and for closing directive of N4 we are going to use ex car item just like this now we save this and let’s check everything in the browser reload the page let’s scroll down below and we see all car items and it is exactly 15 times now let’s reduce this into 12 and we should see only three lines of car not more just like this reload the page and we see exactly three lines of code now let’s clean up our blade files and remove the content which we created only for learning purposes but we don’t need them in our final project for example these text is something we don’t need also in the footer text we don’t need them let’s open index blade PHP from the home folder and we’re going to remove the following PHP directive we’re going to remove this EX card and we’re going to remove this ex test component as well let’s collapse this Main and we’re going to remove these footer links as well and we’re going to also open up blade PHP layout and we’re going to remove this footer completely now we don’t see if we reload the page we don’t see these text in the header as well as in the footer however there are few more things we’re going to do first let’s open web PHP and let’s add names to this sign up and login rotes let’s provide name for sign up obviously it is going to be sign up and for login it is going to to be loging cool next is we’re going to adjust the CSS files so if we open base layout CSS and JavaScript files more specifically so we have the following CSS file included with a relative URL so if we put slash right here this is going to be absolute URL if we remove the slash this is relative URL meaning that when we create Pages um which will have slash in the URL for example car SLC create when we create the following page which includes the following CSS file because we have the CSS relative the actual request to the CSS file will be like this like this and the following CSS file does not exist so this will give us an error and the CSS will not be loaded in the same way JavaScript will not be loaded so we are going to add slash right here scroll down below and we’re going to add slash right here as well in the next lessons when we create those pages we’re going to see that the CSS and JavaScript is loaded properly now let’s create car controller and render several Pages for this I’m going to open HTML CSS project and here we have a little bit more HTML files than we had previously I updated the project and you’re going to see the updated project if you follow this project basically so let’s open this index HTML and let’s open with the live server and right now at this stage we are going to create the following Pages we’re going to create add new car page in our PHP project we’re going to create my cars page we’re going to also create view car page and we’re going to also create edit car page all right let’s start first with the controller let’s bring up the terminal and we’re going to execute PHP artisan make controller we’re going to call this car controller and then we’re going to provide the flag D- resource let’s hit the enter car controller was created created now let’s open car controller which by default has seven methods so what I’m going to do now Implement those methods and render the corresponding blade files so from here actually let me use multic cursor functionality so I’m going to create cursor right here inside the index then hit the alt on my keyboard and create second cursor right here we’re going to scroll down below I’m going to create create another cursor right here I’m hitting alt whenever I’m clicking now I have three cursors one here second here and third here and in the same way I’m going to click alt and click right here now I have four cursors I’m going to delete this comment and I’m going to return view then we need semicolon right here but inside this view we’re going to provide the actual blade file name so let’s move up and I’m going to copy the function and I’m copying this function using control and shift which select is selects the entire word I have many cursors as you notice so control shift and right arrow and it selects all these four words I’m going to hit contrl and C then come down with this Arrow navigation and right here I’m going to to write car dot and paste all right in the following way of course when you get used to it you’re going to do it much quicker and this gives you possibility to easily Implement four methods car show here we have car create and here we have car index all right we are going to create these blade files but additionally we need one more method which is for search so let’s create new function search and we’re going to return view card. search now let’s create five blade files I’m going to bring up the terminal and we’re going to execute HP artisan make view we need car index we hit the enter next we need car show hit the enter we need car edit we need car create and we need car search okay we created five blade files now let’s open HTML CSS project and we’re going to copy uh HTML content from this project into our blade files let’s start with this add new so let’s move up and we’re going to find this main tag okay I’m going to select this entire main tag now let’s go in our project and find car create so this is this is the blade file which will be responsible for rendering car form and I’m going to paste this main tag right here okay in the same way let’s find my cars let’s find this main tag I’m going to collapse this header and here we have this main tag so I’m going to copy this main tag and open car index blade and I’m going to put this main tag right here and we also need to adjust the layout before I proceed so here instead of D we need X up layout make sure that the closing tag is also X up layout we need to do the same thing for create as well X up layout just like this and and here we need X up layout as well okay awesome let’s continue so inside edit we need pretty much the same um content as inside create plade PHP so let me copy this uh let’s open this edit X up layout X up layout and paste this main right here inside edit we need search as well so let’s open search where is shtml and let’s search for the main tag opening main tag right here let’s copy this and let’s change this into ex up layout and paste the main tag oops I copied something else let’s C copy this again okay it was pasted awesome and the last one is show blade PHP which is view HTML so again let’s search for main tag we are going to copy that and we are going to put this right here let’s change this again into X up layout okay awesome now let’s open web.php and we’re going to Define Roots let’s define this right here and we’re going to Define uh a couple of roots but we are we are going to use the resource type of definition so we’re going to use root resource we’re going to provide car and we’re going to provide car controller right here okay awesome let’s replace this with import I’m going to hit alt and ENT enter hit right here so that car controller was imported okay this is good and that defines as we know seven rules okay additionally we need search as well but we need to Define this search root Above This root so this is important if you define this below this root it is not going to work and I will explain why root get slash car search and then we are going to use car controller uh I think I have to disable this autocomplete this is the um PHP storms built-in autocomplete which if you’re using PHP storm this will work on your computer as well quite probably but I don’t want this aut to complete to um do the things instead of me because we’re going to learn a lot of things so I’m going to disable this quickly this can be actually disabled if we go to settings and then we need to go to um or maybe we can just type enable full line inside editor General code completion here we have this enable full line suggestions uh which actually downloads the models for PHP and couple of other things and it uses the AI so I’m going to disable this because I want to do everything by ourself because we’re going to learn so here I’m using car controller class and we need search method and let’s provide name for it as well this is going to be car. search okay now let me try to explain why this should be defined before this resource because the following line root resource for car defines seven roots in one of them is car to view car for specific ID and the root let’s execute the following common PHP Artisan root column list and we have car search right here and we have car and variable here as well so if this is below the following route then the following rout will always match car search because car this is car whatever and car search obviously is car whatever ever that’s why any any arbitrary string okay that’s why we need to have this car search to find this before the car and the variable whatever or arbitrary string okay awesome now we have these roots defined let’s actually open the browser and we can try to have a look for example car we hit the enter and we see my cars let’s access car create and we see a new car we have also car and specific variable which is car show I think we have car edit in some variable as well or don’t we um let’s open DRS again car ID and then edit my bad car ID and then edit this is again a new car because we have the exact same HTML and finally we have car search which looks like this since we have the controller and Roots defined now let’s update the links to these Pages for example when we click add new it should access car SLC create and in the same way sign up and loging should be implemented as well let’s open pH push Tor we are going to open header header blade PHP let’s um let’s actually we can fix the following as well it has HF SL which is actually correct this always go to goes to slash that’s okay we can leave that here we have this add new HTML and we’re going to change this to the following root root car. create awesome let’s collapse this we have sign up HTML this is going to be root sign up and we have this login HTML which is going to be root at login okay let’s go also into car item and clicking on the car item opens this view HTML and I’m going to change this into root car. show and right now I’m going to provide hardcoded number one but again we’re going to implement this uh correctly in the future so we’re going to save this I think one last thing what I’m going to do is also open index HTML index blade PHP sorry and we’re going to find this uh form not this index we need home slash index blade PHP and we’re going to find this form ex search form let’s open search- form and here we have this action and method which we actually don’t need so let’s open this search form we are going to remove this action and method that was only there for learning purposes awesome and I’m going to change this action into the following root this is going to be car dot search and the method needs to be always get we’re going to implement search with method get now if we open homepage and if I click right here it is going to redirect us to car search passing the C parameters which we don’t have yet implemented but the main thing is that the redirect to the search page works successfully a lot of travel makes it super easy to work with different databases using raw SQL a smooth quer Builder or the eloquent orm currently Lal directly supports five databases it is Maria DB t.3 and above MySQL 5.7 and above post SQL 10.0 and above SQ light 3.35 and above and SQL Server 2017 and above all configurations of the database happens under config database file here we’re going to find the default database connection name which is taken from file we see all the connections configured to sq light MySQL marad DB pgsql SQL Server we have the default migration repository table and we have the radi database as well everything related to database is right here but we control which connection we want to take fromen file the connection right here um is configured for different databases from the I file and let’s open. file we decide which database we want to use for example for DB connection we have provided that we want SQ light if we want to use use MySQL for dbit connection then we can uncomment the following code um we’re going to remove the hashes we’re going to change the DB connection into MySQL and then we’re going to configure the DB host Port database username and password for our MySQL in the same way we can change this into SQL server or uh postra SQL and we have to provide the correct host po database username and password however if we have this as a SQ light we can also provide the database location which by default is taken from database database.sql light however if we provide right here DB underscore database then we can provide a different path to our sqi database which we don’t want in our cas so I’m going to remove this line and our database is located under database.sql light additionally we have also uh option to provide the configuration through the URL for example we can provide right here database uncore URL and right here we can provide the full URL of the database we can provide the driver of the database then we can provide the username and password then we’re going to need Ed symbol here then we need host and port and then we can provide the database using the following URL we can also connect to the desire database okay so in MySQL example this would be MySQL let’s say this username is root the password let’s say it is password the host might be 1 127 001 the port will be 3306 and the database might be LEL or whatever okay we could connect to my SQL in the following way okay I’m going to remove the following codes which you can find under the notes everything uh but we know how to connect to the database and by default we are connected to sq light now let’s explore the existing database which comes with the default installation of LEL for this we need SQ light browser if you follow this with on PHP storm we can use the PHP storms built-in database tool but if you don’t follow on PHP stor I’m going to show you which um which software you can use to open SQ light files and browse it so let’s type in the Google SQ light DB browser the very first link will be DB browser for SQ light this is what we need to um download we can access slash DL and here we have these versions for different operating system um on Windows we can download make sure you download and install okay I already downloaded and installed on my machine so we’re going to open DB browser for SQ light this is opened and now let’s open the database we’re going to click this open database and let’s go to desktop Lal course database and database.sql light hit open and we see the following tables the following indices and we can also browse it so let’s explore the tables so we have the users table which has ID name email email verify date password remember token create that and updated that so we have this SQ light sequence table separately this is necessary for SQ light we have the sessions table with couple of columns user ID for which user the session is opened IP address user address payload last activity which is the uh date we have this password resit tokens table as well for email token and the date we have the migrations which we’re going to talk more about it soon in in in the next lessons we have the jobs and job batches table which is related to uh some background jobs we have the failed jobs which is also related to it and we have cash and cash locks so this is how the default uh structure looks like for the default installation of LEL and all those tables are created um through the migrations which we’re going to talk more about it if you are using PHP storm and you want to explore the database using PHP storm like I’m going to do in most of the cases then you can go into database and double click on this database SQ light file this will bring the following popup it will detect that this is sqlite file you might need to download the driver right here you might have that download driver button once you download it you can click okay and it’s going to mount the database right here and right here you will have this Main and tables and here we have all the tables we observed in the DB browser for SQ light we have these users with all columns we have those SQ light uh master and sequence and sessions and everything basically what we covered generally because I am doing this in PHP storm and I have this database tool integrated inside there it is going to be much quicker for me so I’m going to use the following database tool but whenever if you don’t follow this on PHP storm no worries you can always open TB browser for SQL light and whatever I’m going to do um you can do the same thing in the DB browser for SQ all [Music] right now let’s have a look at the our database schema which uh we need for our project here we have couple of tables and let’s start with the users uh I didn’t add all the columns to the users table because the columns what is already in the users table which comes with the LEL will you should consider that we are not going to touch it okay so we don’t touch them like the name email email verify data and so on here I mentioned the new columns which we need to add to the users table like phone for example Google ID and Facebook ID Google ID and Facebook ID will be necessary for oou for sign up and login with Google in Facebook and I had to provide ID right here because the users table has forign key into other tables so then let’s start with the car types so we’re going to have table for car types and we have only name like if it is Jeep or sports car or SUV and so on we’re going to save that information in the car types we’re going to have also uh fuel types and this is going to be like diesel or gas or hybrid or electric and so on okay we’re going to have makers The Producers like BMW Lexus Toyota and so on and we’re going to have models his corresponding models like Toyota Prius Lexus RX and so on we’re going to have also States list of states and cities because the our application is specific for a single country it is not like a global type of application which don’t have countries okay we have States and obviously there is different interpretation of States into different countries and you can create you can put records in the states table based on your country for USA we all know what it states for Canada um there I I believe they exist all also States but for different countries there are sometimes it is called regions so you can insert insert regions as well and then we have cities for each state so cities has connection to States okay so these are so-called Leaf tables which connects to the main table which is cars table each car will have ID the maker ID model ID the ER the car was released the price V code um millage um we have the car type ID fuel type ID user user ID who added this car we have the city ID where the car is located we have uh address as well which is a free text field we have the phone uh on which the buyers potential buyers should contact to we have the long text description where the seller can write any information we have this published at when the car was published uh when it appeared on the website okay potential sellers can also specify the publish dat to be in the future and the car will automatically appear on the website in the future we have also created it when the car was created updated it when the car was last updated and the deleted at if the car is deleted when it was deleted for each car we have also car images we have the ID of the image we have the car ID for which car the image exists we have the image path and we have the position as well and if we scroll up we also have favorite cars each user will have many cars in its favorite list so cars and users have many to many connection like one user has many cars in favorite list and one car might be added by many users into favorites all right I think we covered almost everything here we have the car features and car features and cars have one to one connections so these are just Boolean features whether the car has abs air conditioning power windows power door locks and so on you can Define if you want to customize this project which I really encourage you uh you can add as many features right here as you want or you can remove the features if you don’t want but for now I recommend to follow the course as I’m explaining with all the exact same fields and um then when you finish the project you can add additional features you can remove the features you don’t need and you can improve the project as you [Music] need Lal migration is a way to manage and Version Control your database schema think of it like a versioned blueprint for your database it allows you to Define the structure of your database tables like columns and the data types inside your code with migrations you can easily create modify and share database changes with your team when you run a migration Lal applies these changes to your database this helps keep your database structure consistent and makes it easy to roll back changes if something goes wrong migration are typically located under database migrations [Music] folder now let’s open the very first migration from the migrations folder but before I open it let’s understand the pattern of the name of the migration file the file name consists of a time stamp followed by a descriptive name of the migration the time stamp is the following right now which is set to 0000 1 0 1 0 1 and bunch of zeros right here so this specifies to year month day and the time stamp of the current time then we have this descriptive name the time Stamps will ensure that migrations are going to run in the correct order so in our case first this is the migration which should be executed then this migration will be executed then this migration will be executed and when we create more migrations we’re going to see that it has a different and the current time stamp right here now let’s open the very first migration create users table I’m going to call up the left side it has the following structure every migration file extends the migration class and it has Anonymous class inside this Anonymous class has two two methods up and down the up method defines the changes which will be applied to the database such as creating or modifying tables the method uses lal’s schema Builder to define the schema changes such as creating tables in our case the down method reverts the changes made in the app method providing a way to roll back the migration this method undos the changes like dropping the table which was created using up method we’re going to learn how to create migrations but this is the general idea so the name of the migration the class which is an anonymous class extending the migration we have up and down methods now let’s explore each migration which comes with the default installation of Flavel in more details let’s expand this up and we see that we are creating users table providing ID string name email which must be unique we provide the Tim stamp email verify dat which can be also null we provide the password we provide the remember token and the timestamps such as created at and updated at we also create second table which is password reset tokens table which has email which is a primary key of the table it has a token and it has timestamp created at which can be null and there is a third table sessions which has ID as a string and primary key we have the foring ID which relates to users and the foring ID can actually be null because if there’s a guest user the user ID will be null because the session is created for the guest user there’s also index added on the foring ID we also have IP address which can be also n we have the text user agent which can be also null we have the long Tex some payload of the session and we have the integer last activity which also has index let’s explore other migrations like create cach table and create jobs table let’s open this create cache table first it creates the following tables with um string key with value and the expiration date of the cache and we have cach locks as well with key owner and expiration as well and in the jobs table it creates three tables the jobs table with its own columns it creates job batches table and it creates failed jobs table as well and all these tables are available when whenever we execute whenever we create new project basically which behind the scene executes the might migrations it creates all these tables right here now let’s get familiar with the migrate Artisan comment for this we’re going to open the terminal and I’m going to execute PHP Artisan list migrate this will give me all the available commments for the migrate Nam space and we have few of them like my mate fresh which drops all tables and reruns all the migrations migrate install which creates the migration repository we have the uh migrate refresh which resets and reruns all the migrations basically the difference between this refresh and fresh is that fresh drops all tables and then reruns migrations but refresh executes down methods uh in the reverse order it reverts all the migrations and then re reruns them we have reset as well which simply reverts uh roll backs all the database migration so this executes only down methods in the corresponding order we have roll back as well to roll back the last database migration and we have the migrate status as well which shows the status of each migration okay let’s explore these Commons PHP Artisan migrate colon status we hit the enter and we have the following status so we have three migrations in our project and all of them have the status of Ren now let’s execute PHP Artisan migrate colum fresh hit the enter let’s scroll up to see the result dropping all the tables which will stand preparing the database creating migration table and then running the migrations now let’s execute PHP Artisan migrate refresh we hit the enter let’s have a look so it is rolling back the migrations I mean calling down for each of the migration in the reverse order first it is calling down for jobs then for cash then for users and then running migrations first for users for cash and for jobs so if you want to execute any specific commment from this migrate namespace you can first execute this um PHP Artisan list migrate to have a look at the commons for the migrate namespace and then you can easily use it again let’s execute PHP Artisan migrate um resette for example with the enter it roll backs all the migrations and now if I open the database reload it we don’t have those tables we have only only these core tables which is necessary for our project uh in any case like the migrations table SQ light master and sqq light sequence as well now let’s apply our migrations PHP Artisan migrate which will simply execute all unapplied migrations we hit the enter and it run those three migrations and now we can reload the database and we can see those um tables so in the same way if you are using DB browser for SQ light you can um reopen the database if you execute reset for example I just executed PHP Artisan migrate reset then you can close this database and reopen it and you’re going to see updated tables right here so every time you make some changes um you can execute migrate for example you can close this or directly reopen the same database in you’re going to see all updates so this is how you can kind of refresh the database in your DB browser before we create our first migration let’s first update the existing create users table migration because we need to add couple of columns to the users table according to our schema so we need to add phone Google ID and Facebook ID all right let’s duplicate this string email and change this into phone and we’re going to make this with the length of 45 and we’re going to make it also unique but we’re going to make it also nullable because the users registered through Google or Facebook uh they will not have phone numbers Okay Google or Facebook will not provide it and we’re going to make this nullable for that reason uh then we need to Define Google ID with a length of 45 and we’re going to make it nullable as well and next we need Facebook ID which is going to be nullable as well because the users registered with normal sign up form not with Google not with Facebook they will not have Google ID or Facebook ID inside the user table that’s why we’re going to make them nullable now since we have the those columns defined we are going to execute migrations let’s open the terminal and we’re going to execute PHP Artisan migrate fresh so that we’re going to drop all the tables reapply them so that users will have those new columns we hit the enter the tables were dropped reapplied let’s open the database refresh it and we see right here users which has phone Google ID and and Facebook ID columns as [Music] well now let’s create our first migration and the first table we’re going to create is going to be car types table let’s execute the following Artisan commment PHP artisan make migration and we’re going to provide the migration file name create underscore car types uncore table there’s a convention that you should whenever you’re creating new table you should call your migration file create your table name underscore table this is exactly what I’m going to do right now hit the enter and it created the following migration file now let’s open this create car types table here we see this and pay attention to the Tim stamp so this is the current time when the migration file was generated let’s double click and open this and it also has create table create command inside up method and inside down method it has drop uh command as well whenever you name your migration file in the following way create your table name table Lal will automatically generate the following code with the table name and with these ID and Tim stamps columns okay this is awesome now let’s actually provide the content so if we have a look in the picture of our schema for car types we have only name which is varar 45 characters okay so we don’t need this time stamps which is actually created at and updated at columns we’re going to remove this and on table we’re going to call St string name we can provide the second argument 45 as a length and it must be required so just like this we have created our first migration for car types now let’s create the second one for fuel types as well PHP artisan make migration create fuel underscore types table we hit the enter the migration was created let’s open it and let’s remove this time stamps we provide table string um let’s provide name with 45 as well so if we check fuel types which we have um right here it also has name as an only column except ID which has varar of 45 okay we just created two new migrations in now we can execute [Music] them let’s bring up the terminal and first I’m going to execute status commment phpr artison migrate status and this shows us that three migrations files are executed but two of them are pending and these are the migrations we created create car types table and fuel types table as well we can execute these migrations using PHP Artisan migrate as we already covered it but we can also pretend the migration run and print the actual SQL statement which will be generated using the following comment PHP Artisan migrate d d uh pretend we hit the enter and now pay attention running migrations so this is the first migration and here is the SQL code generated create table car types ID integer primary key Auto increment not null name varart not null okay depending on which database you you are using the generated code might be slightly different for um MySQL it might be slightly different uh for sqlite this is how it looks like for mssql it might be slightly different and this is the power of LEL it is database agnostic so we write the following methods and larel knows based on the database connection how to generate the code for the specific database that is very cool now let’s execute PHP Artisan migrate hit the enter two migration files were applied and if we check the database reload Lo it we’re going to see car types table right here and fuel types table as well and again if you’re using DB browser you can click open database again double click on it it’s going to refresh it and we see car types and fuel types with idend name columns right here as well now let’s keep creating more migrations for our project and let’s create maker table and model table and also States table and Ci’s table let’s bring up the terminal and execute PHP artisan make migration create makers table we hit the enter let’s execute create models table we hit the enter next create States table and create CTS table so we created four new migration files let’s go into database migrations we had previously these two now we have four more and the time stamps are very close to each other as you see so this is the current seconds okay let’s open this create makers table actually we’re going to open all four and we’re going to provide the content uh um starting from the makers so the makers need ID and if we have a look again in our database schema it only needs name nothing else so we don’t need time stamps on table we need string name with a length of 45 that’s it that’s all what we need in the makers so we can close this makers table and the down basically is ready by L so it simply drops the makers table so we can close this makers uh now this models is a little bit interesting so the models table has maker ID as well this is a new type of column it is a foring key type of column okay so let’s delete the time stamps and first let’s define string name with a length of 45 cool now here let’s define this maker ID on table we’re going to call foring ID method okay we provide the local column name which is maker ID and we provide using which table the uh following column is constrained so there’s a constrained method and we have to provide the table name like makers in our case so the following line creates a new column inside models table calling maker ID defines the foring key onto make makers table um maker table’s primary key okay so lot ofel knows that there is ID primary key inside maker table and it creates this maker ID of the model table to connect to maker uh tables ID column this is cool so we created these modules now let’s do something similar for States we need only name string name with the length of 45 inside States and inside cities we need string name with the length of 45 but we also need Bing ID and this is going to be state ID which has constrain on States table okay cool we Define four new migration files let’s close all of them let’s bring up the terminal I’m going to clear this up and let’s first execute PHP Artisan migrate column status we see four of them is about to be executed and then we can execute phpr design migrate hit the enter all four we are executed and we can reload the table and we see cities we see States we see models and we see makers now let’s keep working and now let’s create two more migrations one for car stable and second for car featur table and those two uh tables have most of the columns cars table and car features table okay let’s go with it PHP artisan make migration create cars table we hit the enter and second is going to be create car features table okay awesome let’s open create cars table in car features table as well let’s start with a create cars table okay what Fields do we need inside cars table so we need ID which is there we need maker ID in modu ID which will be foring keys so let’s define right here foring ID maker ID which will be constrained by maker table okay let’s duplicate this line and let’s change this model ID which will be constrained by models table next we need Y and price which will be integer values okay so on table uh we’re going to call integer y let’s duplicate this and integer rice next we have VIN code which will be varart 255 and Mage which is going to be also integer so let’s duplicate this and let’s create first millage and then right here we need string Vin which will be 255 with the length of 255 by default it is also 255 if you hit control on your keyboard and hit Mouse on the string method you’re going to see that it has length null but then this length is taken from this Builder default string length and if we follow this we’re going to find out that by default it is also 255 so we can actually close this and we can delete this to 55 but I actually like this to be explicitly visible that the length of V code is um the maximum is 255 actually the the in practice the wi code is 17 characters so we can set this into 17 but because we are using actually varart it doesn’t really hard so we can leave this to 55 okay then we have um after millage we have a car type ID fuel type ID user ID and CT all will be foring IDs so we create uh car t type ID which will be constrained by car type stable let’s duplicate this three more times so this is going to be fuel type ID constrained by Fuel types table this is going to be user ID constrained by users table and this is going to be CTI ID constrained by CTS table next we have address and phone let’s provide string right here address 255 and let’s duplicate it and second will be phone with 45 characters after phone we have this long text description and then we have time stamp so on table let’s call long text description but whatever is nullable we have to provide to be nullable as well like the description is nullable so right here we have to provide nullable column nullable method as well so this is the description next we need Tim stamp Tim stamp of published at which also should be nullable after description we have a publish dat and then we have this created at and updated at time stamps right here and this if uh we hit control again and click on the time stamps we’re going to see that it creates these two columns and both of them are nullable actually so this is fine and after these Tim stamps we need another Tim stamp which is going to be deleted at column okay so we we defined all the columns for our car table now let’s open create car features table and provide the content for it so here we have all of them are uh tiny integer type of um columns um the same as Boolean basically uh so we have to provide Boolean right here which will be inter interpreted into tiny integer so we need Boolean right here that uh needs to be abs and we can provide the default value to be zero okay so when we provide Boolean LL will automatically convert this into tiny integer because our database uh sqi does not support Boolean so it supports tiny integer but if your database uh supports Boolean such as for example post SQL then the column would be created as Boolean column now let’s duplicate this um couple of times uh because the format is the same for every column we just have to provide the names like ear conditioning power windows air conditioning then we have power windows we have power door locks power door locks we have cruise control Bluetooth connectivity cruise control Bluetooth connectivity next we have this remote start in GPS navigation we’re going to duplicate this few more times remote start GPS GPS navigation we have heater heater seats it’s called heater seats uh heater maybe it’s a typo so it should be heated heated seats uh then we have climate control climate control and we have two more it’s a rear parking sensors and sensors and the last one should be uh leather seats and finally our car features table does not have ID it has car ID based on the schema and it has the relation to the car table based on the car ID so it has one to one relation so here what we are going to do instead of defining ID I’m going to provide unsigned big integer provide the car ID and make it as primary key okay so we actually don’t Define the constraint like we defined for other relations but we have the car ID and then later on the model level we are going to implement the relation between the car features and cars uh tables so this is how we’re going to have it and we also don’t need time stamps on the car features so we are going to remove it as well okay just like this we Define these car features now we save it and we can execute migrations PHP Artisan migrate we hit the enter these two tables we are created and again we can check them right here cars and car [Music] features now let’s learn how to roll back our migrations for for this first open migrations table and observe the content of it so in DB browser let’s reopen the database so that it should be refreshed then on migrations we can right click in browse table so this gives us the same content and we just need to understand how the content looks like so here we have this migration table name and we have the pitch as well okay I prefer to have a look in the PHP storm so I’m going to open this PHP storm so this bch means uh that the migrations which we are run together they were grouped in a single batch so these first three migrations which comes with LEL we executed together so they were are in the first batch then these two what we created are in the second batch then these four tables are in the third batch and these two tables are in the fourth batch okay so this indicates that the migrations are executed if I delete for example these two lines and then try to execute migrations again a lot of will try to execute the migrations but because the tables already exist in the database we are going to have an error problem right so I’m not going to do this but you can try to do it so what I want to show you how you can R roll back the migrations HP Artis on Migrate colon roll back we hit the enter and the last uh two migrations last batch was basically uh rolled back and if we check right now if we check right now migrations table we don’t see last two tables right here so the last was actually rolled back okay so we can reexecute it obviously phpr design migrate and they will be reapplied if we want to roll back certain number of steps we can provide dash dash steps in roll back D Dash steps right here and let’s provide three for example we hit the enter uh actually it should be step not Steps step d d step equals three we hit hit the enter and last three migrations we are rolled back so let’s reexecute them so in the same way if we want to roll back specific number of patches like uh patches or pch in a singular form PCH equals two it is going to roll back last two batches so this is uh because we actually did a roll back and then we executed migrate again now these three um migrate migration files are in the same batch and these three are in the same bch so if we roll back last two batches these six migrations will will be rolled back so we can hit the enter and we’re going to see uh bch equals 2 create fuel type table create car type table okay what just happened oh excuse me um when we provide the batch not excuse me uh when we provide the batch it actually roll back specific batch not the last couple of batches but specific batch so in our case because we provided bch equals 2 we rolled back the second badge which was create car type stable and fuel type stable okay this is how it works okay now let’s execute my great again and those two tables would be applied again if and if I reload they will have now higher bch right here higher uh pitch number okay and just like we can pretend running migrations we can also pretend rolling back migrations like pretend hit the enter and it’s going to generate the SQL codes if it is like um rolling back the last bch migrations like create fuel types and create car types table okay so I think this is pretty cool and we can also execute um refresh with Das Das step like I want to roll back and then reapply last three migrations for example we hit the enter it’s going to roll back and reply last three steps and obviously which we already covered we can simply reapply um this refresh or fresh which will drop everything reapply it which is exactly what happened right now and if we open this migrations table again now we see the ID starts from one this is because all tables were dropped and also ID started from uh one the auto increment and every migration is executed in a single batch [Music] last two tables for which we don’t have migrations are car images table and favorite cars table for all the others we already generated migrations now you have a challenge and you probably guessed what is a challenge you have to create migrations for these two tables favorite cars and car images you can do it in your desired order however I recommend to maybe first create C images because we have just created cars and car features and then you can create favorite car stable but again the ordering doesn’t matter you can do it as as you as you prefer okay so pause right now create these migrations also implement the code uh for for these migrations implement the app method of uh migrations for these two tables and then and you can come back and see my [Music] solution okay so here’s my solution PHP Artisan migrate uh excuse me make migration create car images table we created the first migration second is create favorite cars table we hit the enter both we are created now let’s open create car images table and we are going to Define uh table ring ID car ID which is constrained by cars so car images table has relation to cars so this is how it should be and also this table has string string um image path which should be 255 this table also has position which should be integer so we provide integer position and the table does not need time stamp so we can remove it and let’s check the schema so car ID image path and position integer which is correct next we have this uh favorite cars let’s open it and we have two foring IDs table foring ID car ID which is constrained by cars table and the second is going to be user ID which will be constrained by users all right so we save it let’s bring up the terminal PHP Artisan migrate hit the enter the migrations we are applied we can check the database we see car images and we see favorite cars as well and we are going to see them in DB browser for SQ light as well uh this is the browse data for um specific table but we need the database structure we see favorite cars and car images eloquent orm or object relational mapping is lal’s built-in library that allows developers to interact with databases using PHP objects rather than writing row SQL cues each database table has a corresponding so-called model that is used to interact with the that specific table eloquent provides a simple and intuitive active record implementation for working with database including methods for common crud create read update and delete operations it also supports relationships allowing you to Define and work with the associations between different database tables eloquent simplifies data manipulation and retrieval making database interactions more readable and maintainable eloquent models are located under app models directory and they typically extend the eloquent model class so the user model is a specific class which extends the following class illuminate Foundation out user but if we expand this out user it finally extends this modu class and when we generate new eloquent model classes we are going to see that all of them extend from illuminate database eloquent model class the following [Music] class now let’s open the terminal and try to generate new model class for this we’re going to execute the following Artisan comment PHP artisan make model and we have to provide the model name I’m going to provide fuel type in Pascal case naming uppercase F and uppercase t so when we hit the enter it generated the model file which is located under app models fuel type we also have possibility to generate migration and controller alongside with the model so if I open up moduls and I delete this fuel type and reexecute PHP artisan make model fuel type by provide DH m flag to generate migration alongside with a fuel type we can also optionally provide c as well to generate controller we hit the enter and it generated three files the model file the migration file and the controller file now let’s have a look under database migrations let’s open this create fuel types table and as you see it generates the proper code to create the table fuel types if we don’t have fuel types table this would be awesome this would be exactly what we want but we already have migration so we don’t want the migration also we don’t plan to manage the fuel types from from the user interface so we don’t need the fuel type controller as well so I’m going to delete all three files and let’s generate just the model PHP artisan make model fuel type hit the enter and the model was generated if you want to see information about the model we’re going to execute PHP Artisan model colum show and we provide the module name such as fuel type in our case we hit the enter and it give us a every information about the model such as what’s the model class name what database it connects to what is its corresponding table name fuel types what attributes it has and what relations and what observers it has now if you open fuel type model the class looks like this it extends illuminate database eloquent model and it is a very simple class and it has only one trade has Factory we don’t specify what table the model has mapping into the database by default laravel considers the table name of the class to be snake case version of the class name but in plural form for fuel type laravel assumes that the table name is fuel lowercase underscore types in plural form okay if the model name is car LEL will assume that the table name will be cars if the model name is car image Lal will assume that the table name is car images with underscore and if the model name is TV uh remote controller for example the the table name will be tvcore remote uncore controllers in plural for so this is how Lal defines uh what’s going to be the corresponding table for the model however we always have ability to provide custom table name so for example here we can provide protected property called table and we provide a different name such as car under _ fuelcore types okay and now if we execute PHP Artisan model colum show fuel type we hit the enter we see the information that this this model maps to car fuel types but we don’t see anything in the attributes because that model that table excuse me that table car fuel types table does not exist in the database okay so in our specific case we don’t need to customize the table name however this is how you can do it okay so I’m going to comment this out sometimes there are cases that you want to customize the primary key by default Lille assumes that the primary key of the table is going to be ID okay however if we override protected primary key camel case uh property and we provide something different such as fuel type ID for example then Lal will assume that there’s a column inside fuel types table which is called fuel type ID and this is the primary key of the fuel types table okay so this is commented out let me remove it and if it is removed LEL assumes that the table name is fuel types and the primary key is fuel type ID okay this is something also we don’t need and we are not going to need in our project so I’m going to remove it and all the nodes you can find under the video as well or maybe I can leave it and comment it out just like this okay if you want to disable auto incrementing of the primary key then you can provide public uh incrementing property and set it into false so this will disable Auto incrementing feature sometimes if you want to um change the primary key type from number into string you can provide key type equals string right here by default the key type is going to be integer and always always the primary keys will be integers if if uh the primary key is not defined to be a string inside the migration okay but in our case uh we have all primary keys to be numbers so their actual values will be also numbers but if we provide key type to a string even though the fuel types um in the database has the integer right here when we select the data through models the value of the ID will be string again again this is something we don’t need we can comment this part out as well and we can put this on next to each other okay there are cases when we want when we don’t have time stamps such as created it and updated it on our models and this is exactly on our case we can disable those time stamps by providing time stamps equals false this is something we are going to need because our fuel types table does not have time stamps such as created dat and updated dat in the database cool if you want to customize the created it and updated it column names you can provide constants const created it um and the column name right here such as create date for example in the same way we can provide second constant which would be updated a equals such as update date for example and Lal will assume that there exists create date and update date columns in the database of course if the time stamp is not disabled so in this case I’m just giving this information for you to learn what is possible through models or how you can customize it okay but we are going to then go back to what actually is necessary for our project okay and finally if we have only create date on our model and we don’t have update date we can simply set the updated at to be null which means that we’re disabling the update updated eight column and we can leave this create we can completely remove it and it means that the there exists created at column inside this database table but there is no updated Ed column okay so again this is all for learning purposes so we can comment this out as well but what we definitely need is Tim stamps false because we don’t have created it and updated eight columns into um our table now let’s generate remaining models for our project we have a bunch of them to generate so let’s execute PHP artisan make model uh car type is one of the models we want to generate uh let’s generate maker let’s generate model let’s generate state city car car car features car images and um favorite cars is something which we actually don’t need to generate so that is all we can clear this up now let’s open model class and we have to fix something okay because by default the template uses the following illuminate database eloquent model class now we have two model classes in this file and we have to we have to fix that so let’s give alas to the imported model class as a Lo quent model and then take this and extend right here okay great now our model is fixed the next thing what I’m going to do is let’s go into car model and I’m going to use second trait which is called Soft deletes whenever our database table has deleted at column just like our cars table has right here okay deleted that column then we have to add soft deletes trade into our car and whenever you use soft delites make sure that the following import is also added under use okay this soft deletes manages that automatically for us whenever we call delete on the car model instance it is not going to actually create uh sorry it is not going to actually delete it from the database but it is going to set deleted at column into the database so this is something we need to add [Music] if we open car controller um in methods like show and edit for example and in um update and in Destroy as well so we have string ID which is assumed to be the ID of the car however Lal supports soall it Road model binding so right here instead of accepting string we can try to accept an instance of the car model which we just generated okay let’s hit the enter make sure that the car model is imported at the top awesome and then instead of ID we can call this ID obviously but uh more relevant will be to call this car so we expect right here an instance of the car and whenever there is an ID in the URL LEL will select based on the ID will select the car and provide an instance of the car model right here in this model in this method and this makes it very easy so we already have an instance of the car a record of the database converted into an object okay and in the same way right here let’s change and accept car inside edit we need to accept car here as well and in Destroy as well instance of the car awesome we don’t yet have any records in the database but we’re going to leave it like this because uh this is how we’re going to have finally okay also when we are generating Roots such as if we open car item for example we have right here root car show whenever we implement this component uh we will have an instance of the car okay and we can provide an instance of the car right here and LEL will take the primary key of this car and provide it in the route so this is going to also work I have to return this into one because we don’t have an instance of the car at the moment but because we are talking about uh Road model binding uh I had to mention this part as well but I’m going to leave these parts because whenever we actually have cars in the database then we will get instance of these cars right [Music] here we disabled time stamps on fuel types but there are bunch of models for which we also need to disable time stamps the only table which has time stamps is cars table if we have a look again again into database schema image we don’t have created that or updated it columns in any of the tables except the cars table so we’re going to leave them on the cars but disable for every other model now let’s start with the car features um we can actually open all of them then I’m going to collapse the left side and we can start from here on maker we have to disable it time stamps equals false then on model we can say time STS equals false let me actually duplicate uh or copy this code on States we have to disable on car features we have to disable on uh car images we have to disable on car types we have to uh disable then we have City we have to disable as well and I think we are done so so we did on all models we disabled the time stamps the only model for which we need is the car model now we’re going to move further and we want to insert some data manually in the database so that we can start reading that data and then obviously we’re going to learn how to insert that data uh through code uh through our modules okay so first let’s open DB browser and I’m going to show how you can do this in DB browser and then I’m going to do this in PHP store let’s refresh the database and let’s open fuel types let’s browse fuel uh types table we have to click the following plus button to create new records and I’m going to create like four records and I’m going to type guess right here we hit apply then we have uh diesel basically I’m not going to do this for all the tables just I’m showing to you how you can do it so in in a DB browser if you are not familiar with it electric and finally um hybrid Okay click on apply and the records we are inserted inside the fuel types table and in the same way we’re going to insert records into other tables now let’s open PHP stor and I’m going to open the database uh fuel types and we don’t see them because I think we have not saved the file we’re going to click on file and write changes okay this will affect the changes into the database file and if I reload right now into fuel time y we’re going to see those uh Records right here okay now let me open car types and I’m going to click plus sign couple of times and let’s insert sedan right here then we have hchb for example then we have SUV and for example we have Jeep just couple of them will be enough then I hit control and enter to save everything now let’s open open makers and let’s create two records Toyota and second Fort hit the enter Then control and enter and it’s going to submit that let’s open modules and create four models okay uh two of them for the maker ID one which is Toyota Let It Be Camry for example and cor Corolla and then we have like F150 and escape and provide maker ID too okay we save it uh next we’re going to open States and create like two states for example California and New York okay then Open Cities and create uh four cities two of them with state ID one two of them with state ID 2 we have to provide Los Angeles here we provide s franisco uh franisco like this then we provide New York and let’s provide Buffalo okay and I’m going to create also one user okay let’s provide uh John John at example.com let’s provide some dammy phone number email verify dat I’m going to leave this empty password I’m going to leave it empty or it is required I cannot make it empty so let’s just provide one to three I don’t care the password um the Google ID Facebook ID I’m going to leave them now remember token created it and updated it I can leave them now as well so and finally I’m going to create a couple of cars and let’s create like four cars uh maker ID one one two two one two three and four then we have y we can provide something and 200 and um 20 20 anything doesn’t matter okay let’s provide different 2015 okay for the price is let’s provide 10,000 20 30 and 40 okay for win we can just provide one two three and four um it should be 17 characters but uh we are just testing right now okay it does doesn’t matter for the mid AG as well we can just provide one two three and four we are testing car type ID maybe 1 two 3 and four one two three and four user ID for all of them will be one city ID 1 2 3 and four uh for address we can provide test for all of them for phone we can provide 1 2 3 4 5 six and I think that’s it and we can also provide the published but let me save everything so far uh cars deleted it oops I made a mistake the deleted at should be null I made it required okay let’s open the migration file create cars table and we’re going to make this deleted at nullable and in ideal case we have to execute PHP artisan migrate freshh or refresh but this is going to drop all the tables and reapply migrations and it’s going to work but because we already create some records inside car types and inside uh fuel types and so on I don’t want to lose that data because if I execute migrate fresh or migrate refresh we’re going to lose that data this is something I don’t want so I already changed the migration the next next time if I decide to execute PHP migrate fresh or refresh it is going to create the deleted a column to be nullable but right now I’m going to fix that column manually from here right click modify column and I’m going to turn off this checkbox not now okay create table uh it is going to actually do the following code behind but I don’t care okay this is this is the code it is going to generate I can copy this code click okay now it uh did the following code behind what described finally I have cars table which has um the deleted that column to be knowable if you are doing the same thing in using DB browser okay inside cars uh we have this modify table and you can find that deleted add column which is not null but if we just refresh double click then if we click uh and modify table it should be knowable because we updated this from PHP storm but basically you have to turn this off and on from DB browser okay awesome now let’s uh create these four records um one two actually one one two and two one two three and four uh let me actually duplicate the same thing for ER price for fee Mage car type ID field type ID user ID will be now for all of them CT 1234 address we can provide test and phone from 1234 again and that is all let’s click on submit and it creates four cars we can provide uh the current date as well which will be published at date uh okay like this awesome so we created the data now let’s open Home controller and here we have this index method which is rendered in the browser right on the homepage and now let’s try to select the data right here so cars equals we’re going to use now car model app models and make sure it is imported every time when we are using it and then I’m going to call get which will simply select all the cars available in the database okay so let’s dump this information let’s print that information for this we have a couple of options one of them is dump and let’s provide these cars right here let’s save it and reload the page and we can see right here there are four items into this collection okay and all of them are instances of up models car and if we expand it inside attributes we’re going to see the data that data is ID maker ID module ID and so on the data what we just created into the database okay awesome so this selects all cars select all cars now let’s select specific cars like the cars which are published for example okay let’s say we don’t want unpublished cars to be displayed on the homepage for this select published cars for this we’re going to do the following on car we are going to call method called we the first argument of the Weir method is the column name like published the second argument is the value actually our model is called published it right and the second argument is the actual value so if our column would be like published Boolean type of column then then we could provide right here true or one but because our column is published at column we have to find all the cars which has a non null value inside published eight for this we can use uh the following operator exclamation equals does not equal and we have to provide null right here so basically this we function is multi-purpose function we can provide two arguments right here which means that uh the published at should be equal something whatever we provide but if we provide three arguments it means that publish dat does not equal to null and after that we can call get okay let’s actually dump this information and it’s going to print four cars because all cars have publish it value but if we open it and change for example on the first one I’m going to set the published that value to be null okay then we have three published cars then if we open the browser reload the page we are going to see array with length of three so we totally see three cars which are published if I said n again on the second one and then reload the page now we see two cars right right here okay if we want to only select the first car let’s do like this select the first car then we have to do the following we can call we if we want or not where where is optional in this case uh for example published it does not equal to null and this then this is the most important one then we are going to call first okay we just want the first object based on the following condition and in this case we can print car which will be an actual model up model’s car instance and it has its own attributes so this is the first car which is published with ID3 so this is pretty cool obviously if we don’t want to provide this we published at we can directly call First and this is going to select the first available car and it will probably have the ID one because we are not filtering by published column however there exists simplified version if you want to select the car based on the ID for example car find and provide the specific ID for example two and in this case we can print it and we’re going to see that the car right here will be the car which has say id2 let’s reload the page expand it car with id2 if we want to sort cars by specific column we can use also order by let me comment out these things and later I’m going to remove but I’m going to also leave these under the lesson or inside the source code so let’s comment this part let’s say I want to sort cars by created it created it in descending order or maybe published at in descending order and then we’re going to call get on this now let’s adjust the published Ed column into the database like all of them are the same let’s set this to be 10 for example oops I mistaken we type dot right there let’s Pro provide right here to be 12 oops okay here we need 12 well it provides the time stamps for some reason uh I mean the visibility is for the time stamps which is something I don’t want uh let’s change these minutes maybe 50 let me do this from DB browser for SQ light or cars browse and we need to go to the right side we provide different time 50 right here uh let’s provide 51 here maybe 52 here and and this is going to be 53 okay and let’s save everything uh write changes uh if I reload right here the changes have been applied now we’re printing we’re selecting cars and printing those cars with published at descending order now if I reload we see actually this should be order by excuse me order bu reload the page now we see four elements right here and if we expand the first one is with id4 and that one has the highest publish date okay the next one with highest published at date uh is which has the ID3 okay the next one is which has probably ID 2 and the ID one okay this is um how we can sort the cars by published at column if you want to limit meet the cars by specific criteria for example if we want to only select two cars then we can use this limit function and obviously we don’t need order by we can provide order by but we don’t also it is not necessary we can just provide cars limit to and it’s going to always select the two cars okay and we can also use the combination of all these properties like uh we can provide uh let me duplicate copy this part where uh the publish dat is not null then we can call um something some another we close for example we uh user ID equals to one then we can provide order by as well we can provide limit and finally we can call get only so we can do all this combination now I save reload it is returning two cars and all the Weir Clauses are actually um correct so if I provide we user ID equals 2 it is not going to return anything because there are no cars for the user ID 2 but there are cars for the user ID one in the database and just like this instead of writing row sqls we can write any select any ques with the following methods on every model of course this is not specific to car we can call these methods on every eloquent model now I’m going to comment out this part and let’s see how we can insert the data into the database let’s scroll up a little bit and let’s say that we want to insert a new car in the database for this we have to create an instance of the car model using new car like this then on the car we can provide each properties individually so I’m going to copy the columns what we have in the database so that I don’t have to type them manually and let’s duplicate this many many times like this then I’m going to use multic cursor and I’m going to paste um these columns from the database and then we have to provide some values for each column like let’s just type one there so make maker ID one model ID one y we can provide whatever uh we can provide price one to three we can provide the VIN code to be one to3 millage something one to three car type ID one fuel type ID one we can provide the user ID uh everything so the address should be string we can leave it integer but we can provide string as well like some lurm Ipson for example we can provide the phone to be string as well the description should be a very large string or we can leave it also empty because it is actually nullable inside the published at uh we can provide the current date or we can leave it null as well if we provide the current date we can provide the Now function right here and created it can be now as well or it is going to be automatically provided automatically set by eloquent so we actually don’t even need to set any values to create it and update it so I’m going to remove them delete them and then on the car I can call Save okay before I call this in the database of the car table we have four cars now let’s open the browser and reload it and we don’t see any error which means that the code what we have in the home controller actually worked now let’s open cars table and we see one more record right here and here we see the data what we just provided so it is as simple as that to work with the eloquent models to save the data there are cases when you have the data in the form of associative array from which we want to create the data um record in the database okay let’s say that our data looks like this uh let’s put a comma right here oops okay so I’m going to comment out the above part creating car in the following way and then down below we have the following car data okay and let’s say that we want to create record out of it we can call Car colon colon create providing that car data which will create the record in the database and return just created record so finally here we’re going to have just created car okay which is pretty cool the second approach like this is the um approach one second approach is to approach two is to actually first create the instance of the car car let’s call it Car 2 equals new car then on Car 2 we can call F so we want to fill the car 2 with the car data so this will populate all the properties of the Car 2 model and then once we call this um field then on Car 2 we can call Save and there’s a third approach which is to create car three with a new car and in Constructor of the new car provide this car data and then which behind the scene we’ll call as well so this is probably shorthand notation of this then on car three we can call safe okay so this is good and this is Handy however there’s one important consideration when filling the data so all these three approaches is filling the data from the associative area from here okay but for security reasons it is not allowed the model to be filled with arbitrary data let’s say that we don’t want the user ID to be filled from that associative array okay user ID should always be the currently authenticated users ID and we don’t want it to be provided inside the fields so it should not be provided something if we expect this data from the client let’s say if we expect the data from the the user from the browser the user from the browser can send any information inside the user ID it can actually create the car on behalf of somebody else which is something we don’t want right so for security reasons filling the model data with the associative array by default is not allowed is not uh is blocked unless we activate it so if we open now car model we need to Define right here a protected array feelable so which Fields can be filled so in our case I’m going to copy and paste all the properties of this car we can copy from here as well select every every column from here and paste here so I’m just going to paste all the properties just to test the code what we have written right here okay but you should be careful what you allow the users to feel we’re going to talk more about this security and everything but for now let’s just put everything in aailable this means that every column what we have right here can be provided using this field approach the approach one approach two or approach three uh whatever we don’t put inside this fillable will not be filled and will not be provided in the database for example if I comment out the user ID then the user ID will not be provided when we provide this car data so there is a second uh property which is called guarded guarded and this excludes um the fields so if we provide guarded to be an empty array and if we comment out this fiable completely this means that every column of this model can be filled but if we provide um user ID here for example this means every column can be filled except user ID okay by default the guarded is null so if we don’t allow anything to be filled we should leave it null or we should not present it but if we allow any column to be filled we need to create this guarded detected property with the empty array so in our case um so this is kind of um wh list I’m sorry this is kind of a blacklist what is not allowed okay we put right here what is not allowed but it’s more common to Define what is allowed then what is not allowed so in our case I’m going to uncomment this fillable and we Define everything except the user ID and we want to see an error I want to see an error because user ID is required and we are are filling with the data but the user ID will not be filled so we should see some sort of error I’m going to comment out the approach two and approach three and let’s reload in the browser and we see this error table car has no column named VIN code that’s my mistake that should be Vin not VIN code now let’s reload the page and now we see uh n constraint failed inside the uh Vin that is because in the fillable we also have VIN code that should be Vin again now let’s reload the page and this is what I expected now we have this null constraint failed for user ID because we are filling everything except the user ID and the user ID is required that’s why the car is not created now let’s uncomment this user ID let’s reload the page and we don’t see any error the car was created in the database Let’s Open Cars table reload it and we see one more car with approach one now let’s comment the approach one and uncomment the approach two it’s going to do the exact same thing but let’s reload the page we have one more car we have now seven cars and we can comment this out and uncomment the approach three and reload the page and total toally we are going to have eight cars in the database the data is is the same for all the last three cars because we have we are using the same data but the records are created as you [Music] see now let’s open remaining models and we’re going to Define feelable protected property on all these models we already did this for cars uh let’s open the database car features let’s start with the car features and I’m going to copy all the columns what we have right here then we need to Define aable array semicolon here and I’m going to paste all the columns and let’s use now this multic cursor functionality in PHP storm we’re going to hit the inner button the middle button of the mouse the wheel and uh then we can do it like this or you can Define this obviously um one by one so we Define this for car features let’s go into car images uh the rest is slightly easier because there are not many fields so for images we need image path and position right for car type we need only name let me copy these fillable and for City we also need only name but we also need state ID right for fuel type we need only name for maker we need only name for model we need name and maker ID for State we need only name now let’s open user model as well and we’re going to add the new columns to the user model inside failable like we have phone we have Google ID and we have Facebook ID as well if we have a look at our schema we’re going to notice that all tables have primary key ID the only table that does not have primary key ID is these car features it has car ID to be primary key so we’re going to open car features model and we’re going to change its primary key into car ID as it is defined inside the migration based on our schema make sure you do this because based on the primary key we’re going to do the updates or deletes of these car features now what should we do if we want to update specific car let’s say I want to select a car which has id1 so I’m going to call find with id1 then on that car I want to modify the price let’s open the database open cars find the car which has id1 and it has pricey one as well okay let’s modify the price and provide 1,000 right here then on that car we’re going to call Save method which will which will affect the changes to the database now if we open the website reload it we have this in the home controller index method so the code was executed if we open cars and reload we’re going to see that the price of the car is 1,000 this is one way how we can update the data let’s comment it out now let’s see second way on the car model there is a static static method called update or create okay the IDE doesn’t autocomplete this but this doesn’t mean that the method doesn’t exist so the method exists feel free to use it update or create and we’re going to provide two arrays right here the first array and the second one the first is the condition which cars needs to be updated so here we have to provide for example I want to update all cars which has VIN code 999 and price equals 1,000 okay let’s have a look if we have such cars which has price 1,000 and VIN code 999 no there doesn’t exist such car but there exist cars which has been code 999 and price is 20,000 so let’s modify the price and set it to 20,000 so this is the wear condition and now let’s provide right here the actual property actual data that needs to be updated actually I’m going to move this like so okay so the first one is condition second one is what properties we want to update let’s say that we want to update price for every such type of car and we’re going to increase the price into 25,000 okay now let’s save reload the page we don’t see any errors so the code worked let’s open car stable reload and we see price is 2 5,000 however that only does for a single car that does not do for all the cars if we want to do this for all the cars we need to do it slightly differently okay by the way this updates the car and it also Returns the just updated car so if we just dump the car which has been right now updated we reload the page it gives us the following output now it updated the second car because the first one this one was already updated so if I reload the page the second one was updated now the second one was the first car which had VIN code 999 and price 20,000 so if we provide right here the condition based on which the car doesn’t exist in the database then it will try to create new car with the data we are providing okay let’s change this VIN code into 9999 and there is no such car in the database which has VIN code 9999 and the price 20,000 in this case LL tries to create new car with the following data but we will have an error because we are only providing price nothing else let’s reload the page here’s the error maker ID is um required fi in the database but we are providing null now this is because as as I mentioned we are only providing price right here okay let’s take the data we have Above This is the car data okay which is not commented out actually let me copy this comment it out and let’s put this right here now we have this car data I’m going to minimize this and I’m going to provide this car data right here okay now if it does not find that car it’s going to create new car with the following data and let’s provide VIN code to be 9999 because this is the car we want to create if it doesn’t exist okay so we save it we reload it we don’t see any error we see only output this is the new car that was just created if we check the database we see new car which has VIN code 9999 and it has all the other attributes we defined inside this car data and the last thing what I’m going to show to you regarding update is how to do a mass update how to update multiple cars for this uh let’s first comment out this part for this we’re going to write a cury like on car we’re going to write we condition for example I want to find all the cars which has published it to be null which is not published yet which also belongs to the user with ID one and then I’m going to call update on those selected cars and I’m going to provide associative array right here okay the properties which I want to update we can say published it to be now oops h to be now additionally we can provide other properties like set the price uh right here set the price equals 100,000 whatever we can provide any properties we want but right now for Simplicity we’re going to just update the published at date so the cars which are not published and belong to the user one will be published let’s have a look in the database how many cars are there which are not published actually all of them are published so I’m going to set null to those cars the publish that date okay so these five cars should be published when we execute the following code let’s save it reload the browser we don’t see any error so it worked we reload the page and we see published at the current date set on those cars in the following way we can do Mass update of multiple records but this one only updates a single record or if it doesn’t exist it is going to create it okay so the idea of this is going to work only on one record if the record doesn’t exist obviously it is not going to create multiple records with the exact same data right so that works only on single record based on your needs you need to decide which approach you’re going to do this one this one or if you want to obviously update multiple cars you can do this one as [Music] well now let’s talk about how we can delete data through eloquent models so let’s as as always we have a couple of options so first let me select the car we want to delete we can select by any criteria we can provide right here we close we whatever conditions you want and finally then you can call first to get the very first car based on these wear conditions or we can simply select the first car easily and then on that car I’m going to call delete method okay so this is the approach one now let’s save it and let’s reload the browser okay the car was deleted let’s open now cars table and car with id1 should be deleted let’s reload the page we don’t see that the record is gone that is because we have soft deletes activated if you scroll on the right side we’re going to see deleted it is actually populated so this is what soft deletes does on the car PHP model let’s scroll up here we have the soft deletes and this is why we added this deleted add now if we try to select car with id1 again and delete it again it is going to give us an error it does not select that car so when we call Car find with one no it doesn’t exist that’s why the car is the the car is considered ing the soft deletes and it doesn’t select the car which is already deleted okay how we can work with the actual deleted data there is a different approach for this uh we need to use with trashed as well and we’re going to talk more about this in the next lessons I don’t want to over complicate this simple lesson but right now we just proceeded delete however if we do this delete on a fuel type for example find the first fuel type and delete the record will be actually deleted from the database because the fuel type doesn’t have deleted at uh column right there and we also don’t have the same trait soft deletes on the fuel type [Music] okay this is one way how we can delete the data second way is to delete um data by IDs so on car model we can call D destroy and provide a single ID as an integer or we can provide array of IDs one and two I want to delete cars with one and two okay the car with id1 is already deleted let’s provide two and three right here let’s comment out this code we save it we reload the page then we check car table and we see now cars with id2 and three are also deleted okay uh we can also provide the IDS right here not as an array but as regular arguments like this uh in this case it doesn’t do anything because the cars already deleted but it also doesn’t throw any kind of error but this will also work and the next method to delete specific cars by certain criteria is the following we can provide we let’s say we want to delete all cars which are not published okay so we published at equals null which belongs to user ID one and then we’re going to call delete on that now let’s check on the database which cars will be deleted uh published it is not null on any of the cars but we can set null on those cars okay I saved it and those cars will be marked as deleted uh let’s let’s comment out this code okay we publish that is null we user ID equals 1 let’s delete those cars awesome reload the page now let’s check cars table and here we see deleted at is set on those cars and finally we can call truncate method on the model on any model uh truncate which will delete every car from the database so we can comment this out save and reload and the cars should be deleted but truncate actually deletes those cars from the database it doesn’t doesn’t mark them as deleted but it actually deletes them so you should be very careful when you execute truncate in this case we that didn’t need those cars anymore we learned how to select how to insert how to update the data and I’m okay the data to be gone but you should be very care ful when you need when you execute the following truncate [Music] method when generating orm models I noticed that we named our car images model incorrectly we named it in a plural form if we notice every other model we have in a singular form except car features and car images the whole idea of the model is that it should be in a singular form because whenever working with an instance of the model it is a single record of that class in the database for example when we create new car we have we we’re going to create this using new car new car type we have a single instance of a city when we are working with an object and so on the car features is kind of exception because inside car features table a single record contains multiple features such as ABS air conditioning power windows and so on however when we create a new image it is going to be new car images which is not quite accurate so what I’m going to do is to rename that to refactor it and call it into car image node car images in PHP storm we can right click on this we can click on refractor rename and it is going to change the class name as well as the file name however if you don’t follow this on ph storm you can do this manually you have to update the class name and rename the file as well and just like this now we have car image in a singular form as well but as we decided we’re going to leave car features into a plural form because a single record in the database contains multiple features [Music] now I have five challenges to you here you see all the challenges the first one is to retrieve all car records where the price is greater than 20,000 second fetch the maker details where the maker name is Toyota insert a new fuel type with the name electric update the price of the car with id1 to 15 ,000 and we’re going to delete all car records where the year is before 2020 okay pause the video right now Implement those five challenges and then come back and see my [Music] solution all right let’s see my solution how I am going to do these challenges let’s start with the first one and we’re going to retrieve all car records where the price is greater than 20,000 okay cars equal on car model I’m going to call where price is greater than 20,000 finally I’m going to call get and then we can print or iterate over the cars it doesn’t really matter car records where the price is greater than 20,000 double check it looks correct next is to fetch the maker details where the maker name is Toyota so here we have the maker maker where name is Toyota and we’re going to call first next to insert a new fuel type with a name electric we have a couple of ways to create new fuel type let’s call Fiel type create and we’re going to provide associative area right here name is electric this is the simplest way in my opinion however we can create a new instance using new keyword assign name to it and then call save as well but I prefer this this is a easiest way the next is to update the price of the car with ID one uh to 15,000 so again we have a couple of ways right here but on the car I’m going to call we ID equals to one and then I’m going to call update providing the attributes with which I want to update like price set to 15,000 and the last one is to delete all car records where the Y is before 2020 so on car I’m going to call where Y is less than 2020 and I’m going to call delete so that is all and we can execute this and have a look so let’s dump cars let’s dump maker and we’re going to see that the electric is created and the price is updated and right here the cars will be deleted reload the page okay we’re dumping something we don’t see any errors let’s now open uh fuel types here we have second electric we had one electric but now we have second electric next is we updated the price for the car with ID one to 15,000 so here we have 15,000 and all the cars which has year less than 20,000 was uh 2020 actually was deleted we don’t have such cars anymore but if we change this into 2010 and reload the page we are going to see that it should be marked as deleted here we go it is marked as deleted hey if you are enjoying this tutorial so far maybe you want to check the entire course on my website the.com where you can find quizzes The Source Code of the project is available there you can find all the modules including the deployment section the testing section which contains I think three hours of uh content regarding testing uh using pest framework and a lot [Music] more in lal’s eloquent omm relationships Define how different database tables are related to each other eloquent supports several types of relationships including one to one which is how our cars and car features are connected to each other one to many which is how our cars and car images are connected to each other many to many which is how our cars and users are connected to each other and it also supports polymorphic relationships which is not an example of our particular project these relationships allow you to easily retrieve and manage related data using methods on your models for example the car model has one one to manyu relationship with car image model meaning that each car can have multiple images defining relationships in eloquent involves creating methods in the model classes that use predefined relationship methods like his one has many belongs to and belongs to many this simplifies complex database queries and enhances code readability leral has very comprehensive relationship system in this beginner’s course we are not going to learn every single detail of these relationships instead we will focus on the most important ones and the most common ones and learn how to define and use them in our [Music] project now let’s open car model and start working on onetoone relationships we’re going to add right here two relations to a different models let’s scroll down below and right here I’m going to add public function and we’re going to name the function whatever we want but later we can access to related object based on the following name so here I’m going to call this features then I’m going to return the following thing this has one and we have to provide the relational model name in this case we’re defining relation to car features so I’m going to use car features class right here we need semicolon at the end obviously and we need to also Define it is not mandatory but is a good practice and we should do this uh we should Define the return type of this method let’s define it has one and that has one is a class imported from illuminate database eloquent relations has one make sure that you import this if your id/ editor does not automatically import it okay PHP storm or vs code whatever you’re using the Hasan method has second argument as well and the second argument is the field is the column name in the database using which the two models relate to each other in our case the car model inside which we we’re defining this method in the car fi featur model the column name which is the foring key column name is the car ID and based on the car ID car features table connects to the car however the car ID column right here is optional because LEL automatically guesses this foring key name based on the current model name current model name is the car inside which we’re defining this relation and the foring key name is guessed in the following way Lal converts the class name into snake case version which will be lowercase car and it appends underscore ID so even if we remove this foring key right here the relation will still work however just want to you to know about this you if you have a different uh Convention of naming your foreign key is like if this is called my car ID or if this is called ID for example you have to provide this foring ID in our case I’m going to delete this and we have this relation defined uh next the second relation which I’m going to Define is the primary image we know that car has many images but car will have a single image which will be its primary image and I’m going to assume that the primary image will be the image which has the lowest position in most cases it’s going to be position one so the image on the First Position will be my primary image so I’m going to define the following relation this has one we’re going to define the relation into car image we can optionally again provide forign key name car ID but this is the default one is also car ID guessed by LEL and let’s define right here has one and then we have to provide additional method right here just to make sure that Lal will take the image which has the lowest uh position among the all the images of that specific car so in our case we’re going to use the method called oldest of many by default this oldest of many is looking at at the created at column and it is taking the record which has lowest created at date time but we can provide right here a column which LEL should look at uh when taking the oldest of many record okay in our case we have to provide position right here so among many images of this specific car L will take take the one which has uh lowest position and it’s going to return that as primary image of the specific car there is a second method called latest of many if we want to take the image which has the highest position uh of all the images of that specific car and if we don’t provide a position right here a Lal will take this latest of many based on the created Edge column in our case we need um L oldest of many based on the position so this is what we [Music] need now let’s open Home controller and remove every code what we have in the index method and let’s understand how we can access relational data with onetoone relationship how we can read that data update delete or even create let me Select Car using car find and I’m going to provide one right here so I’m selecting the first car at the moment I think we deleted all cars from the database so I have to very quickly create a couple of them here is what I did I created a single car then I added a record inside car features for that car and I also created two images with dumy image path inside car images table which has which is for the car I just created so two images for the car car features and the car itself this is what I did now if we open Home controller we’re selecting this car and now I want to access this relational data such as car features for example let me use DD and on car I’m going to call features we can access this relational data with the name of the method we defined right here so we we called our method features so we can access uh with features name as a property to the car now if I save this and we open our project on the homepage reload it we see right here car features an instance of the car features which has couple of attributes and it has car ID 1 ABS 1 air conditioning one power windows one and everything else is zero this is exactly how I defined so using the following way we we are accessing the car features now let’s try to access primary image because this is also what we defined on car we’re going to call primary image save and reload here we have car features and here we have car image which has position one okay this is how we’re accessing to the primary image if we open car model and change that method from oldest of many in to latest latest of many then if we reload we’re going to see that the position will be two okay however this is not what we want we want oldest of many and just like this we are accessing the features in primary image of the car however if we want to update features let’s say for example then on the car features this is an instance of the car features then we can interact with the car features exactly as we interacted with the car model when we learned the basics of create read update or delete car features is an instance of car features class so here for example we can provide ABS to be zero and then on car features we can call save this is one way how we can do or on car features we can call directly update and providing ABS to be zero both ways is going to work so let me comment out this part and I’m going to change this DD into just dump to print and don’t die so now if we reload the browser we see that the page was rendered now let’s open um car features reload the page and we see ABS was changed into zero in the following way obviously right here we can provide um any additional features for that specific model what we want now let me try to delete the primary image as well so car primary image we’re going to call delete in the images table we have two records but if I reload the page then if we check car images table we’re going to see that the first image is gone with position one now let’s learn how to create relation first let me create duplicate of the car I’m going to very quickly do this let’s change its ID into two everything else is the same however there is no car features available for the car with id2 this is exactly what we are going to do right now let’s go in the home controller uh I’m going to comment out everything right now and let’s Select Car with id2 now on that car I am going to call features but I’m going to call features as a method not as a property and then I’m going to call Save on that relation features and here inside the save I’m going to provide an instance of car features let me just Define this instance of car features right here let’s also import the car features make sure that it is at the top okay awesome we created car features with all the columns what we have in the database and now I’m going to take these car features and I’m going to pass inside the save now I save the file I reload it we don’t see any errors which is good let’s go in the car features reload and we see second record right here which has everything false just like we provided right here when we are creating an instance we in the following way passing associative area in the Constructor make sure that you have feelable attributes properly defined however because we are creating these car features through uh relation we don’t need to provide car ID right here instead when we are creating in the following way from the car feature save LEL will automatically assign the corresponding car ID to the car features now let’s learn how to define one to menu relationships let’s again open car PHP and right here I’m going to Define another public function but this is a relation to all the images not a single image but collection of images so I’m going to call my function images from here I’m going to return the following thing as many previously we used has one now we are using has many we provide car image class and as I mentioned as a second argument we can provide the relation name which by default is car ID so we don’t need to do this that’s awesome as a return type we have to Define has many relation and again make sure it is imported in the following way so we just defined this relation of has many now let’s go into home controller and learn how to access this relation I commented out all the code inside this home controller index so now let’s Select Car by id1 then on that car we can access to the relation through images with the same name what we Define in the method now if we have a look in the browser reload it we’re going to see a colle collection eloquent collection there’s only one item and that item is instance of car image and that has id2 car id1 image path and position as well if we have a look in the car images table in the database we see that there’s a single image only for that car let’s duplicate this let’s give it id1 for car id1 test and position one I’m going to save it now let’s reload the page and I see items too now there are two car images for that specific car now let’s learn how to create relation as many relation so I’m going to create new image for this first I’m going to create an instance of car image and in the Constructor let’s just provide image path to be something and we have to provide second argument second column position equals um let’s provide position two okay and I’m going to just delete that second image right here okay so we have only one image on this car now I’m going to try to create new image on that car images I’m going to call Save passing the image as argument now if I save this and reload in the browser we don’t see any error which is good now let’s open car images reload it and we see second image right here there’s a second option second way how we can create image on the car on that car images I am going to directly call create and it is not necessary to create an instance of the car image instead we can provide associative array of attributes like image path something two for example and position three let’s comment out this part we save it reload it let’s check the database table and we see one more image in the database there is also possibility to create multiple images with a single commment let’s say the following one car images I am going to call method called save many we’re going to pass an array right here where each element of the array is an instance of car image so we have to provide new car image right here and provide attributes columns for the car image like let’s provide position four and I’m going to duplicate this with position five okay or another way is to call on car images create many which does not require to create instances we have to provide array but each element of the array can be directly an associative array not an instance of car image so that’s the difference now let’s create six and seven position images okay awesome now if I reload the page this will create two images this will create two more images and finally we’re going to have a lot of images let’s reload the page let’s check car images reload it and here we go now let’s learn how to define many to one relationship and how to work with that related data again let’s open C PHP and I’m going to Define new relation to car type we know that car belongs to car type so every car has one car type but car types have multiple cars now let’s define this relation and we’re going to use the following method this belongs to car type class again the second argument will be the uh foreign key name we can Define it car type ID D but LEL is intelligent enough to identify that because car belongs to car type class it will try to search column named carore typeor ID even without providing so we don’t need to provide it however if your foreign key name is different such as my car type ID for example you can do it and you can provide this forign key okay awesome let’s find this uh return type which will be belongs belongs to and as always make sure that it is properly imported right here okay we defined this this relation car type and we can also Define the inverse relation so if we open car type from here we can Define cars just like we defined images inside the car where car has many images inside car type we can Define that car type has many cars so this has many car class and we Define here has many class as well okay and as always make sure that import is edit right here so I’m not going to mention this every time but whenever you define this has many if your IDE PHP storm or vs code does not automatically import this as many or as one or belongs to you have to write it okay so we defined these relations and now let’s learn how we can access that parent relation or how we can select data by relation let’s go in the home controller I comment out all the code let’s scroll up slightly and now let me select um the first car as as I generally do car find one awesome now let’s try to access to car type in the following way it’s pretty straightforward let’s dump with is the car type of the car reload the page and we see instance of car type which has two attributes and it its name is actually sedan okay let me try now to select car type by its name car type where name equals Edge and let’s select first and let’s assign to a variable car type should be car type single car type now I want to select all the cars and there’s a special method for this where belongs to car type and then we can call get so using the following way laravel will return all the cars which belongs to the given car type that is awesome now let’s just print those cards save reload the page and we see a collection but because there are no actual cars based on the following car type it returns an empty collection okay let’s fix this let’s go into car types and see what is its ID it’s ID is two now let’s go into cars and change the car type ID into two for both of the cars now we have two cars with the car type ID of hchb and here we are trying to select the cars which belong to hatchback let’s reload the page and here we see two items those are two cars which belong to cart type ID hedback that’s pretty handy and because we selected the card type right here now we can try to access all the cars of the hedback in the following way so this is one way probably long way how you can do the same thing but let’s try to access let me Dump Car type cars we Define this relation of cars in the car type model and we can access to all cars for the following given car type in the following way so that code actually is the equivalent of this so if I simply replace this part that’s pretty cool okay let me comment out this part and it’s going to give us the exact same result all right I commented out all the code about now let’s select the first car and I’m going to select a different car type and I want to change the association of that specific car from whatever it has right now into this new car type one way to do this is to change car type ID to be selected car types ID and then on that car we can call Save which will update the car type ID in the database so the sedon has car type of one our first car has car type type of two in the following way we are changing the car type ID from two to one but there’s a second way to do this and on that carard I’m going to call Car type relation and then I’m going to call associate providing the new car type all right and that is all and then we have to call Save on the car now let me comment out this part and let’s just reload the page now let’s check the database in car table and as you see C type ID was changed from two to [Music] one now let’s learn how to work with many to many data first let’s Define relations we have one many to many relation example in our database schema and that is cars related to users through this favorite cars table all right let’s open car model and I’m going to define the following relation public function let’s name the relation favored users favored users all right um favored awesome let’s return this belongs to many okay this is a new method uh this the car belongs to to main user and here we have couple of more parameters to provide the second argument to provide right here is the many to many table Name by default LL will take those two model table names like the cars and users and we’ll assume that the pivot table the table in between this table has the name like cars users but this is not our case so we have to provide the pivot table name which is favorite cars this is how we call the table name then we have to provide the foring uh pivot Keys like what are those two columns car ID and user ID so Lille will uh the first uh like foring pivot key is the column using which the pivot table relates to current model in the current model is the car PHP so by default Lal will assume that that is the current model name snake case version s uh suffixed with underscore ID so Lal will assume that the forign pivot key is carore ID which is actually correct this is exactly what is the column name in our database car ID right here the second argument is the related model column name so what using which column the this pivot table connects to the related table which is the user model okay and this is user ID so Lal will guess this car ID and user ID by default so we don’t need to provide them however if the names are different then we have to provide them okay so in our case we can just omit those two columns awesome let’s define now belongs to manyu return type here and it should be imported at the top we defined favored users right here now let’s open user and we’re going to define the inverse relation let’s call this favorite cars okay let’s return this belongs to many car then we have to provide the table name favorite uncore cars and then again the column names which level will assume U correctly so we had to provide right here the current model name which would be user ID and then we have to provide car ID but again LEL will do this instead of us we don’t need to provide them so here we need belongs to many okay we Define this relation because we don’t have model defined for these favorite cars whenever new record is created inside the favorite cars the created it and updated eight columns will not be managed we don’t even have have those created at and updated at columns defined in these favorite cars but uh in a different example you might need those two columns created it and updated at okay LEL actually gives you possibility to provide second method right here with time stamps and if you provide this with time stamps Lal will assume that this pivot table has those two columns created at in updated it and whenever we’re trying to create uh Records inside this pivot table through this relation LL will automatically provide those created that and updated it columns for us we can add uh obviously we don’t need this in our case but the with time Stamps will be used only when we are creating records through this favorite cars relation but not vice versa not from favored users relation if we want to manage uh the time stamps from this favored users relation as well we need to add this with the time stamps right here as well however as I mentioned we don’t have those created de and updated columns so we can completely remove them but just for your for your information I wanted to mention that part as well now let’s open Home controller in the index method comment out everything and learn how to select that related data I’m going to select again car with ID one and on that car we have favored users which will return all the users which added that specific car inside watch list inside this fa cars favored users okay let’s dump this and have a look in the browser reload the page this returns empty collection because there is no records there are no records in the favorite cars let’s open favorite cars and I’m going to add two records car ID one user one car ID 2 and user one okay great I believe we have at least two cars don’t we yeah we do have and at least one user we do have awesome now we are selecting all the users which added the first car into its favorite cars reload the page and we see a single user which is an instance of up models user and that user is our user what we have in the database join example.com so we can access in the reverse way for example we can let me duplicate this and we’re going to change the variable into user and change the model into um user as well so let’s comment out this part we selected the user let’s import the model app models user model and then I’m going to access favorite cars of the user user favorite cars we are using the exact same name of relation what we defined in the models right here awesome so we save it we reload it and we see now a collection of two items where each of them is an instance of up models car and those are two cars what we have defined um in the cars table in the database now let’s say we want to create new records in this pivot table so how we’re going to do this let me select the user and that on that user let’s say that the user added a couple of more cars in the watch list okay so we are going to do the following on this favorite cars relation as a method we’re going to call method called attach and we have to provide array right here with the ID of the cars okay so for example one and two uh let’s actually remove everything from the favorite cars okay now the the particular user does not have anything in the favorite cars we selected that user and through this favorite cars relation we are attaching cars with id1 and with id2 additionally if there are couple of more columns in this pivot table um additional columns you can provide those additional columns as a second argument of this attach method like column one which has value one in our case we don’t have it but you know how to do it if you have it okay so this is when you attach when you just create new records how however and let let’s actually try this let’s reload the page everything is good let’s open now favorite cars and we have two records right here now let’s say that I want to delete delete every favorite car which exists in the database and synchronize with the new values okay instead of attach for this we have a second method called sync which deletes all existing values in his favorite cars and creates new one for example that new one might be three we at the moment don’t have car with ID3 but I believe that still work no that doesn’t work so if we create let’s do like this if we open cars duplicate that with ID3 save that now in the favorite cars let’s create okay so we created again those two cars in the favorite cars so user with id1 has car with ID one and two in the favorite cars the sync will remove them and only the third car I save I reload we don’t see any errors let’s open favorite cars and we see only single record car ID3 this is how the sync works also if we want to provide additional columns like I showed to you how you can provide additional columns in the attach we can provide second argument right here but the method is different it is not sync it is sync with p values okay and then we can provide right here an associative array with column one value one or whatever you have in your database okay great let’s comment out this part again and the last thing I want to show to you how you can delete detach that data on that user through favorite cars I’m going to call detach and provide the IDS we want to detach CCH for example one and two but we want to leave ID3 uh let’s uncom the user we need the user at the moment we have only one record right here um ID3 but we can again add ID one and two for user one now we have three cars and I want to detach one and two so the cars which have ID one and two so I save this I reload it let’s check favorite cars and those were removed if I want to detach everything I can just call detach without any argument so in this case if I reload there will be no favorite cars uh for the user id1 this is how you can work with the main tomain data and obviously you can do this through inverse relation as well we used favorite cars right now but you can also use favored users as well if your like main class is car and you want to work with the users adding attaching users to that car or removing users from that [Music] car okay now let’s define all the remaining relations on every model we might need in the project so we have C type generally my personal convention is to have belongs to relations at the top and then has many relations so I’m going to move this car type um at the top right here and then I’m going to Define all the remaining belongs to relations okay so we have a couple of them in this project based on the based on the database schema we see that the car has um maker ID so car belongs to maker and model and fuel type and user as well and CT as well so there are a bunch of so let’s define them fuel type return this belongs to fuel type and here we need belongs to as well so we have to type this it’s going to take some time but we have to type this then we’re going to Define maker return this belongs to maker you know what I’m going to try to speed up a little bit and I’m going to just copy and paste this method couple of times okay so I have maker the next one is model so I’m going to change the name right here and the actual model up models right here uh next is probably the user who is the owner of the car so we can call this user but I prefer to call this owner okay and that is user okay great but in this case I want to also Define the actual foreign key name like this is user ID uh through user ID it is not owner ID so it is user ID based on which the current model the car model connects to the user table okay I had some issues that in certain cases LEL was trying to use owner ID instead of the user ID so let’s just provide this foring key right here the next is to provide City and the related class will be city um I think we finished belongs to relations so we have let’s remove it we have features uh then we have primary image and we have images as well and we have favored users okay great now let’s open next model which is car features the car features has only one relation and this is belongs to car let me duplicate this belongs to and put this here uh but we’re going to change this car and car here okay let’s move up we have this belongs to imported which is great and car features belongs to car that is correct now let’s continue and let’s open car image and car image belongs to car car model here next let’s open car type and the car type actually already has cars relation defined here which is has many cars so this is something I will need in couple of other methods couple of other models so I’m going to copy that and let’s go into City and City also has many cars City also belongs to state so let’s define belongs to relation but I’m going to do this above cars so public function State return this belongs to State model belongs to okay so we have these cars copied let’s open other models such as fuel type and I’m going to paste this right here maker I’m going to paste this right here however maker has multiple models so I’m going to duplicate these cars and let’s change this into models and the actual model will be model up models model okay that is good let’s now open model which has multiple cars many cars and we have state which has many cars and state also has many cities so we can Define cities here and City model right here okay and the user also has many cars the user actually is an owner of the car so the user has many cars I believe we defined all the relations but let me double check inside car we have the city and owner and model and maker and fuel type and car type I think that’s everything what we have in the schema perfect double check features features has um belongs to car that’s great image belongs to car car type has multiple cars city has belongs to State and has many cars fuel type has many cars maker has many cars and many models uh model has many cars state has many cars and many cities and user has many cars the one thing we probably missed is that model belongs to maker so we Define here relation to maker return these belongs to maker class belong belongs to that’s it a factory in Lal is a tool to generate fake data for models it makes easy to create test and see data it defines how a model should be created including the default values for attributes using factories you can quickly generate multiple instances of a model with realistic data which is helpful for testing and database seting factories in LEL are typically located inside database factories folder by default there’s only one Factory user Factory if we open it this is how it looks like it extends the factory class which is coming from illuminate database eloquent factories Factory it has the main method called definition which returns an array associative array and the key is the field name the column name for the user table and the value is how the data should be generated so in this case right here we are using the fake function which always generates the fake name here it generates fake and unique email address here it takes the current date here it takes the random string and so on using the following way we’re going to Define factories for every hour model to generate some C data to generate new factories we’re going to execute the following comment PHP artisan make Factory and we have to provide the factory name like I’m going to create new Factory called maker Factory okay which will create a factory class for maker model I’m going to hit the enter however if we want to generate the model itself and the factory at the same time we can do the following make model maker and provide flag called dasf this will create maker model alongside with its related Factory class which is something we don’t need at the moment but you should know now let’s open this maker Factory and updates its definitions so from here we’re going to return the name and I’m going to use now this fake function which is is using the php’s faker package which always generates some fake data it has bunch of methods and one of them is called word so every time I want to generate new word for my maker class okay let’s also open user Factory and I want to generate uh random fake phone number for the user so I’m going to update this and let’s use this fake method and then I’m going to call method called numerify and I have to provide the format like I want to numerify the following string and I’m going to provide this hashtags right here this will generate three digigit number and let’s provide couple of more okay so every time when we try to create new user using Factory it’s going to have n digigit phone number inside there now let’s talk about the naming of factories in the discovery conventions by default factories as I mentioned are located under database factories and if the factory name is named properly uh it lateral will automatically connect to the corresponding mode model for example if we have a maker model which is located under up models and we create maker Factory in the database Factor stable uh folder then LEL will automatically detect it Discover it and connect that factory to that model OKAY however if we name our maker Factory something different for example we call it car maker Factory then Lal will not be able to connect that car maker Factory to the maker model and we have to do this manually now let’s open maker model and do this manually to do this manually we have to Define new function right here and that function should have a specific name like that should be new Factory static protected function and that should return an instance of the factory in the following way whatever we’re going to call our Factory let’s say it is car maker Factory we are going to call new on that factory okay so in our case we don’t have this car maker Factory but if we had then we should return it like this or we can return maker Factory if we want but that doesn’t make any sense because our maker Factory has the convention based name okay but I hope that makes sense uh but this is not enough when we Define this new Factory static function and we return the the factory new instance then we have to go to this car maker Factory and we have to also Define protected model right here and that model should be maker class only after this that maker Factory car maker Factory whatever we call it will be connected to this maker model okay just like this okay because we follow the convention I’m going to remove this I’m going to remove that new Factory method from here as well and we can try to generate some [Music] data now let’s see how we can generate data using factories let’s use maker Factory what we just created and then on that maker model we’re going to call method called Factory on that factory there exists a couple of methods one of them is make that creates an instance of maker model and returns that so right here we have this maker model and we can print that however if we want to create new maker record in the database we should use right here create instead of make make simply creates makes that record an instance of the maker moduel it returns it but it does not put that in the database however create method is what inserts the record in the database now if we open makers right here we see that we have two makers all right let’s open browser reload it and right here we see maker instance of maker and there’s a new word new name Amit so that’s a like a fake word it doesn’t mean anything but in the database in the maker table we see new record okay so that’s the difference between the make make simply creates an instance of the maker class and returns it but it does not put the in the database the create puts it in the database however if we want to create multiple records in the database we can also provide right here count let’s provide count 10 for example and execute that reload the browser and now the returned result is a collection instead of a single instance now this more specifically is Makers array makers collection as we see and it has 10 items inside there each of them is an instance of maker and if we check Maker’s table in the database we’re going to see 10 more records made in the maker table in the database if we want to just create instances of maker models and don’t put them in the database we can use right here make method again so this creates the instances of maker modu and returns it but don’t does not put them in the database we also have options to provide additional properties in the men make method right here or in the create method right here for example I want that every maker to have a specific and hardcoded name or maybe we can use um different example let’s undo this and I’m going to use now user Factory I’m going to provide create and let’s provide name right here to be zura so this creates let’s un let’s comment out this part so this creates new user with the name zura and that puts the user in the database as well however if we want to create multiple users we can provide count right here and all users will have name zura we can execute this now let’s open users table and right here we see 10 more new users with name zura obviously we can provide right here as I mentioned make which simply creates an instances of user classes and returns them but does not put them in the database there is specific method which gives you possibility to override specific fields and that method is called State you can provide associative array and you can provide your Fields right here in this associative array so that does the same thing as providing name zoraa right here in this make and that obviously works for create really it doesn’t [Music] matter the following code will create 10 new users however I’m going to introduce a new method called sequence which gives you possibility to alternate different values when overriding the fields for the models so here I’m going to provide two arrays the first one will have name zura and the second one will have name John now when we execute the following code it is going to create 10 users the first one will have name zura second one will have name John then the third one will have name zura and the fourth one will have name John and so on in the user table right now we already have 11 columns this is the last 10 records we created 11 um records excuse me these are the last 10 records we created I’m going to delete them okay now let’s open the browser and reload it and now let’s check the users table now as I mentioned we have zoraa John Zur John and so on sequence method is pretty powerful method which gives you a possibility to provide different values when creating uh multiple records for example inside the sequence we can ALS o provide um closure function we can provide regular F function or Arrow function as well let me provide Arrow function and we have to accept an instance of sequence in this Arrow function we need arrow and then I’m going to return associative array where I’m going to return name but the name will be something Dynamic such as for example name space and then I’m going to use sequence index okay I’m going to comment out this sequence method and I’m going to leave this now the sequence index increases for every new user because we have 10 users the sequence will increase from 1 to 10 and for every new record before it is inserted into into the database the name will be changed with name one name two name three and so on let’s open our users I’m going to delete again these last 10 records let’s reload the browser let’s reload users table and now we see name zero name one name two and so on obviously if we want to name it to start from name one we have to Simply add one right here but this is how sequences are working a factory stating LEL is a way to define specific variations of data when using modu factories states allow you to Define different sets of attributes for the model and making it easy to create various types of data without duplicating the code if we have a look at the following code this creates 10 users and all of them will have email verified at to be now if we open user Factory we’re going to see that email verifi dat right here is set to now now but we are actually overriding the state from here however in the user Factory there exists a method called unverified which defines the state and inside the state which is an nrow function we are returning the following area email verified at equals null so instead of executing and providing state right here we simply can provide unverified right here the method which is defined inside user Factory that does the same thing and if we execute the following code it is going to create 10 users and all of them will have email verified at toal by default there also exists one predefined State method similar to unverified and this is called trashed that trashed will create records and each record will have have deleted it to be something so we have deleted it column only on cars when we create the cars we don’t want the cars to be deleted but if we want to create deleted cars we could provide trashed when creating cars and that is going to create cars which have some value inside deleted dat obviously this is not relevant for users but because we’re talking about States I wanted to mention that there is a predefined trashed um state which provides some value inside deleted Ed column when creating new records using factories we have possibility to add a certain call back when the record or records is created or when the record or records are made and that happens through after creating and after making callback methods so after making will be executed when we call right here make and after creating will be called uh when we call create right here and that callback function is executed for every single user that is created and that is very helpful because inside that callback function you can put information you can uh create some logs or you can even create additional information for that specific user for example we create user and then we can create uh like additional cards for that specific user or we can add additional information inside the database table for that specific user now let’s create new Factory for model PHP artisan make factory model Factory now obviously maker and model has one too many relationship now let’s see how we can create relational data Factory with models but first we have to open model Factory from database factories folder and I am going to Define name right here to be fake word great we can close this now let’s go in the home controller and let’s define Factory with models so we’re going to use maker Factory and then let’s create five factories for example and each Factory needs to have five models so for this we can use method a magic method called has and whatever is the relation name from maker to uh model so the relation name from maker to model is called models okay so basically we have to provide right here uppercase m models has models and we can also provide count how many models it should create for each maker so the name the relation name is converted into a so-called Pascal case so if this is models this is going to become uppercase a moduls so if this is called my models then we should have has my models like this okay let me undo the change and finally we’re going to call create and now this is going to create five five makers and five models for each maker now let’s open maker table uh I believe we can delete everything else from here and let’s also open models and we have four models right here let’s open the browser reload it now let’s open moduls and we have 25 more moduls inside here and five more makers inside here and the maker ID is is uh taken from the just created maker from the makers table okay uh these has models has additional capabilities for example if we want to override certain state right now our models table has only name so if we want for example to overwrite that name and provide specific model for every maker like test for example let’s create just one maker and one model for that maker and let’s reload the browser and and let’s go into models reload it and at the bottom we have new uh model which has the name test so this associative array gives us possibility to provide additional or override the fields um inside this relational model uh also this H model has ability to provide right here instead of array we can provide a function so if we provide function that function except array of attributes um attributes and we can also take the parent model which is maker in our case so I can accept the maker and then I have to return an array uh from here return associative array so this is helpful sometimes we want to take some information from this parent model like maker some property and let’s say that the child model has the Cent models certain property for example if in practice we’re going to create later we’re going to create cars and users and every car has phone and in most cases that phone will be a phone from the users table okay from here so if we change this and let’s say that we are creating user right here uh with has cars let’s imagine the following case and right here we’re accepting user this is user and then we are overriding those uh the the phone so from here we can return phone to be the same as user phone and every car will have the same phone as just created user isn’t this awesome for me this is really cool let me undo this because we are not yet creating users and uh cars let’s talk about makers but I just wanted to show you how you can do this thing also this has models is a magic method uh and that only works if there is a relation defined on the models inside the maker however there also exists uh I’m going to comment this out there also exists a general method called has and right here we can provide other Factory such as model Factory and then we can provide count um three for example so now this is going to create one maker and it’s going to have three um models so let’s reload this let’s reload this and now let’s refresh the browser and inside makers we have one more maker and for that maker with ID 20 there should be three more models in the models table if your relation from maker to models has a different name so if it has models name then this code is going to work however if the relation name is different for example car models then we have to provide that relation as a second optional argument inside this H function okay if the relation name is called models which is um like a singular lowercase version of the relational class model class right here then we don’t need to provide that relationship right here because LEL guesses that automatically based on that model name okay however if we have a different name like what I mentioned car models right here we have to provide that relationship here okay I’m going to remove this because we have a very standard name it is called models that’s why we don’t need to do anything [Music] here now let’s see a reverse example where we create model uh for the factory and we create Factory as well so the following code will try to create five mod models however this is not going to work because in the model Factory we don’t have a maker ID defined and that is actually mandatory column in the database however when we create model we want to create it for a specific Factory and that’s why we can provide right here magic method like we had has models we can provide magic method called for and the relationship name so if we open mod PHP it has relationship called maker then we have to provide maker here so we want to create five models and all of them should be for the same maker okay U this is going to create one maker in five modules we can also provide additional fields for this maker for example name to be um Lexus okay so it’s going to create new maker with the name Lexus and five modules so I’m going to save it reload it let’s open makers uh table reload it we see Lexus right here and if we check moduls table we’re going to see five models all of them has maker ID 21 which is actually Lexus there is a generic method called four inside which we can provide another Factory like we can provide maker Factory and we can also provide like state for example to be Lexus similarly what we had above so these two lines of code are doing the same thing however make sure that the relationship name should be maker from model it should be maker otherwise if it is for example car maker right here then we have to provide again the this relationship name as a second argument of these four method car maker right here so if we name our relationship in a um standard way then we don’t need to do this we also have possibility to use an existing maker so if I Define in maker right here maker Factory call create then we can use that maker object and provide for the maker object right here let’s create five models all of them will before the maker created above and obviously we can provide state or anything to this maker what we want now let’s go ahead and Define the remaining factories PHP artisan make vectory uh car type vectory um hit the enter the next one is going to be the fuel type Factory hit the enter we’re going to we have already have maker Factory we have modu Factory let’s create State Factory let’s create C victory victory uh we’re going to create car Victory let’s create car um car features Factory and car image factory car features Factory and car image factory okay great now let’s open victories and let’s start with the um where’s car type here’s car type Victory Fuel type Victory State City um let’s open then car factory car features and car image and we’re going to Define definitions array for every Factory let’s start with the car type Factory here we’re going to have name and the name should be some some fake in almost all cases we’re going to use fake function so we’re going to start um assigning some values using fake function which gives us a huge object of Faker PHP and then then we can call certain methods on that so in this case we’re going to um use the method random element but we have to provide the values and the faker will take randomly one element from this array like we can provide sedan here we can provide SUV we can provide truck uh why did I provide all in uppercase uh we can provide like van um Coupe or how it’s pronounced I don’t know and like cross over that’s enough uh let’s go in the fuel types and here let me copy this line to save some time paste here and in this case we have to provide um yes for example we can provide diesel Electric and hybrid okay the next is to go into State Factory which has a name and there actually exists State um I believe there is exist State why why it doesn’t have to complete I don’t know but there exists a state function in the definition so we’re going to use that and it’s going to create new random State now let’s open City Factory the name will be fake and here we need City here it is uh the city actually needs state ID as well but we are going to handle this when creating the data okay so we’re going to leave this right now and then we have car factory which is the largest one and we are going to spend some time on this so we need to provide maker ID here and here what I’m going to do so I’m going to select some random ID from the makers table from the database so I’m going to use maker model then I’m going to use the function called in random order so that function exists and that returns makers in random order so because this is in random order I’m going to pick the first one and then I’m going to take the ID of the first one okay awesome then we need model ID however the model ID should be from the same maker okay it doesn’t make any sense on the car to have maker ID to be Lexus ID for example and the model ID to be something which is from Toyota so doing the same thing for model what we did for maker doesn’t make any sense because because it is going to pick uh any model ID in random order and we don’t have any guarantees that it will be from the same maker so here we’re going to use function we have that ability as well inside that function we’re going to have attributes and then from that attributes we’re going to take the maker so this is where’re going to what we’re going to do so on model we’re going to call we we’re going to set select all the models which has maker ID to be from attributes maker ID this attributes maker ID is already generated this generated maker ID so we take it and filter models based on this maker ID then we can call in random order then we can take the first and then we can take its ID and of course we need to return that awesome next we have y here which is going to be fake y next we have price and for the price I’m going to get um random number in some range so let’s use fake uh and on that fake let’s take random uh there’s no such method random integer we have random float and here’s what I’m going to do on that random float we’re going to provide um first is the maximum decimals and we can provide two then we are going to provide the minimum and maximum values like minimum five and maximum 100 okay so this gives me any random float number from five to 100 okay I am going to cast this into integer so this is how I’m going to cast it into integer so any decimal things will be lost and now I have an integer value from five to 100 and then I’m going to multiply this on 1,000 and this gives me a random integer value from 5,000 to 100,000 okay next is to generate VIN code and for this uh we are going to use Str Str Str Str um support class and we’re going to call random and provide the 17 which is typically the VIN code length but I’m going to also use St Str to uper to convert that all into uppercase okay next we need millage sorry if I don’t pronounce this correctly um then we are going to call again random float on that from five to 500 let’s cast this on Integer and we’re going Tok multiply this on 1,000 awesome then we have car type ID which I’m going to pick a random ID from the database like car type in random order we take the first and ID next we have fuel type ID and let me duplicate this fuel type ID into the model will be fuel type make sure it is imported after fuel type we have the user ID I’m going to duplicate this again then we have City ID I’m going to duplicate this again user user ID City ID let’s use City model here user model here and next excuse me I lost field type ID I’m going to move this up so C type ID field type user and City ID after City ID we have some address so let’s provide some fake address okay next is provide to provide the phone and for phone I’m going to use a again function we get array of attributes then I’m going to select the user user find based on the attributes user ID and then I’m going to take the phone of that user awesome next we have the description which should be some text I’m going to use fake text with 2,000 characters maximum 2,000 characters and finally we have published a which is a Tim stamp and I’m going to use the following way to assign a time stamp randomly so I’m going to use optional so this optional means that it is going to generate uh the value randomly okay it is it might not also generate the value and this optional has also probability like 0 um n so in 90% of the cases this will generate whatever I provide here so it is going to provide date it is going to generate date time date time and I also want to provide date time between so I don’t want any Daye time but I want let me move this down I want date time uh minus one month in the past and plus one day so the if I remove this optional this will always generate the daytime between minus one month and plus one day adding that optional and that optional can be added on any method right here we can also add this optional to this um uh not right here but we can add this optional to and like a VIN code for example or or any any other uh property okay so this with 90% probability generate the following data okay so we generated the car factory we defined the definitions for carfactory let’s open car factory car features Factory and this basically is pretty simple so I’m going to copy and paste this part so we have car ID which I left this hardcoded one or we can completely delete this because we will provide let me actually delete this uh because we’re going to create these car features for the cars and we’re going to Define for which cars the feature is created when actually creating the data every other property right here ABS air conditioning power windows and so on all of them are bullan values okay you can um just take the time and um type this or you can go into you can go into features car features and we can copy those columns all of them and we can paste them and we can do the thing okay I try to save some time but I also don’t want to do things and you feel annoyed that I did it in a very Rush way so I want you to follow with me and um just create one then duplicate it couple of times and just change the names okay I hope you define this now let’s open a car image factory and we’re going to define the last one it is going to have um a car ID but I’m not going to provide car ID as well so we just need image path which will be um something random like uh let’s use image URL random image URL okay good and then we have have to provide a position the position is kind of interesting uh I’m going to provide function here with array of attributes and then I’m going to return I’m going to find uh car based on the attributes car ID I’m going to access its relation called images and then on that relation I’m going to call function called count to get how many images that car already has and for that new image which should be created uh through the following definitions I’m going to add one however when we actually create images we might even overwrite this position completely okay so you should also keep that in mind okay that’s it it we have the definitions for all the factories now I want to create data for many to many relations I want to create a user with five cars and we’re going to add those five cars in favorite cars table for the created users because we already have defined uh the definitions for all the factories cars can also be created now let’s use user Factory we’re going to use has and then I’m going to use car factory count so this creates um let’s provide five here this creates user with five cars but here I’m going to provide the relation so without uh the relation it is going to create a user in five cars and that user will be user ID for that five cars right here I’m going to provide the relation name which is called favorite cars I think this is how we named favorite cars in our user we can always access and see double check it make sure it is correct and then we’re going to call create okay great now let’s open the browser reload it and let’s have a look in the database let’s open users a new user should be created this is the new user which was just created then we should have five cars let’s check the last five cars were created and there should be also records in the favorite cars let’s also check what is the user ID of those five cars it should be a random here we see it is random user ID it’s a 26 28 29 so it is random random this is how we defined in the car factory however if we check favored cars we see five records and all of them all these five just created cars are for the same user which was just created for this uh Rosalia okay and in the following way this is how we can Define find one to many relationships if we want to provide if we have uh this pivot table the favorite cars pivot table which has different columns additional columns and we want to provide some information inside that additional columns we can use a second method called has attached okay here uh let me duplicate this has attached first we have to provide the factory like we are doing here then we have to provide additional columns like column one and its corresponding value one whatever it is and then we have to provide this relationship name so in our case we don’t need any additional columns inside this favorite car table so this is something we don’t need this is something what we need and we test it and it works perfectly [Music] a cedar in laravel is a class used to populate the database with simple and test data Cedars allow developers to quickly insert predefined data into database tables making it easier to set up a consistent development or testing environment they are typically defined in the database seeders directory and can be run using the PHP Artisan DB column seed command seeders can call other SE ERS and use eloquent models to insert data ensuring relationships and constraints are maintained this helps in simulating real world data scenarios for development and testing purposes now let’s open only one CED database Cedar in our project and if we check its run method we see the following code this uses user Factory and it creates a single user with name test user and email test example.com [Music] to create new Cedars we’re going to execute the following Artisan commment PHP artisan make column Cedar and we have to provide the cedar class name let’s create users Cedar class hit the enter the class was created now let’s open user Cedar and and every Ceder has run method we should put creating user code inside run method I’m going to copy this database Cedar user Factory create into user Cedar and let’s just change the names into test user 2 and test 2@ example.com to run seeders we’re going to open Terminal and we’re going to execute the following comment HPR design DB colum seed the following command will run the default Cedar which is database Cedar however we can provide custom class or the Ceder using the following flag D- class equals users Cedar when we execute this seeding database was completed now let’s open users table and as a very last record we see test user two which was written in inside users Cedar by default running Cedars are not all loow on production because it is going to maybe delete the database maybe create something in the production database based on the environment variable up which right now is set to local but when you deploy the application and production this needs to be set to production okay so and you are not by default allowed to execute ceders if you still want to run ceders on production you have to use the flag Das Das Force additionally if we run the migrations and we want to execute Cedar classes as well we can use the following command PHP Artisan migrate D- seed flag this will execute the migrations and also it will execute the default Cedar which is database CER the dash dash seat flag can be applied to migrate refresh and migrate fresh as well if we want to use one Cedar into another Cedar for example let’s put users Cedar into database Cedar for this we’re going to open the database Cedar and we’re going to use this call method providing a single class or array of classes and here we’re going to use users Cedar class in the following way when we execute the default Cedar it is going to first create the user then it’s it is going to execute the user Cedar now let’s bring up the terminal and I’m going to execute PHP Artisan migrate fresh D- seed this will drop all the tables create them and also apply the seeders and finally it is going to create two users let’s open now users table every data is deleted right now and we only have two [Music] users first I’m going to delete users Ceder because I don’t need second Cedar I’m going to put every code to create data in my database Cedar let’s delete this user Cedar completely let’s delete the comment as well next I added couple of comments in Sample data using which we’re going to create CED data for the database so we have to create car types with the following data using factories we have to create fuel types with the following data we have to create states with cities and here I have States alongside with its cities we have to create makers with their corresponding models right here here I have typo and we have to create users cars with images and features so this this is going to be the most challenging one let’s do it one after another and you can treat this as a challenge okay so you know what should be created right here you can pause right now you can try to do this on your own if you are not able to do this on your own then come back and see my solution it is going to be uh pretty clear like step by step we’re going to make it very clear and we will know how to define a very complex see data through factories inside our Cedar okay this one is pretty easy we’re going to use car type vectory then I’m going to use sequence and here I’m going to provide array of those values so here I have U whatever like nine values so I’m going to take all of them I’m going to put them right here inside the sequence but each element inside the sequence needs to be attributes for my car type so I am going to create array like this name corresponds to the value so we have car type Factory sequence then we need to call count and this count should be the exact same number how many elements we have here like 1 2 3 4 5 6 7 8 nine so we have totally nine elements and finally we’re going to call create okay awesome so when we execute this it is going to create uh the following the nine car factories and it’s going to try to use the following sequence okay awesome next fuel types now you can do this on your own I assume because it is very identical to the car type let’s use fuel type vectory let’s use sequence we need array four times and then we can use the following values name corresponds to gasoline and then let’s change the second one into diesel electric and hybrid we call count four then create great next is to create states with the corresponding cities okay so in this case we’re going to iterate over our states and create each state with its own cities okay let’s do this for each States is a state then we’re going to call State Factory and here I have to provide um State method so that State method is different from that state obviously so that State method gives us possibility to provide the values as we already learned in the factories section so we have to provide custom name for our state and this is going to be State actually we have here State as a key and the value will be cities right so we’re going to take this state name and provide it when creating new state however we need to create related data as well and for this we’re going to use Hees method inside Hees we’re we’re going to use City Factory we need to provide count and we need to create as many cities as many elements we have right here and in this case I will just take the count count of cities variable okay how many cities that specific state has the same amount of cities we’re going to create next we’re going to call sequence and in this case I want to generate array like this for cities okay so if I provide array like this inside the sequence for cities then I’m good so uh we have the count the exact number of the cities and then I just need to provide the sequence in the correct order in this case I’m going to use uh the following way so I’m going to use uh array map function which accepts a call back so I’m going to uh provide Arrow call Arrow function here okay uh that map obviously needs the second argument the C is to iterate so I’m going to iterate over my cities in inside the call bag I’m going to get CT and then I am going to return the following array where the name corresponds to CT so this returns an array all right and that array basically will look like this where each element is also array and it has name and the CT name so this sequence is kind of like a multi-purpose function we can provide here an array like we did um like we did right here or we can even provide multiple Arguments for example if I remove the square brickets right here and we just provided multiple arguments this is going to also work so in our specific example we can leave this array map as it is or we can use three dot notation to destructure this and provide um separate values inside the sequence both is going to work okay we can leave this as an array map and finally on that state Factory we are going to call create awesome so in the following way states and cities will be created now we have to do something similar for makers and its models okay let’s iterate over our makers we have maker and models then on maker Factory we’re going to call state to provide the name for the maker then we’re going to call has that is going to be model Factory we’re going to provide count which will be count of models and then we’re going to provide sequence which will be array map we provide an arrow function we accept model inside this Arrow function we return name corresponds to that model and the second argument of this array map is the array which needs to be iterated and this is going to be models finally we’re going to call create on that um maker Factory and that is it and the last one the most challenging one is the following so we’re going to create users okay cars with images and features first we’re going to create three users then we’re going to create two more users and for each user from the last two users we’re going to create 50 cars with images and features and add these cars to favorite cars of those two users pretty complicated right all right let’s break it down and do it step by step first we’re going to create three users so this is pretty straightforward user Factory count three create okay this is good if if we check user Factory we are going to see that um sorry uh I want to check car factory because we’re going to create Now cars inside car factory the user ID is the random user ID and we need something some users to be presented in the database that’s why first we created three users and now if we treate if we try to create cars the user ID already exists in the database so the following code will pick up a random user from these three users CTI ID also exists in the database we created cities fuel types car types we we created makers and models as well so all of them is created above okay and now we have to create cars alongside with users okay now let’s break break down the second part then create two more users okay let’s start with it user Factory count two okay then what do we need to do and for each user from the last two users create 50 cars okay for each user we have to create 50 cars with images and features and add these cars to favorite cars of those users okay let’s let’s remove this part um for for a moment like create 50 users and add those cars uh sorry create 50 cars and add those cars to favorite cars of these two users so we should do this in the following way the user has each user has 50 cars so we can use car factory we can call count 50 okay but we have to also provide the relation name of uh from user to car and the relation name is favorite cars because we want to add those 50 cars into favorite cars of these two users okay so here we need comma Now we created two users each user will have 50 new cars added into favorite cars that is pretty correct finally we can call create on that okay however we need to also create images and features for those 50 cars so on that car create we are going to call additional has each car from the 50 cars has something else uh they are going to have images and in this case we’re going to use car image factory oops car image factory we’re going to call count we can create as many images because it is not specifi right here how many images uh each car should have we can provide whatever we want I’m going to create five images for each um for each car but I need to also provide position for each um for each image okay so images should have different positions from one to five okay for this I’m going to use sequence okay and I’m going to provide function inside the sequence we are going going to accept an instance of sequence right here and I’m going to return array which will have position some value okay I’m going to move this down so position should be some value so I can use sequence index plus one but the thing is that finally we have to create um 100 cars totally and 500 images so for each two user we are creating 50 cars and for each car we’re going to create five images so totally we’re going to have 500 images and that sequence does not iterate over the over specific car it iterates from 1 to 500 not one to five so if we execute the following code and I’m going to leave this right now because I want to show this to you if you execute right now the sequence will be from 1 to 500 which we can fix later okay but anyway let’s leave the sequence so we have provided car images and additionally we need to also provide features so I’m going to use his magic method has features because every car has relation to Features somewhere and using this magic method like has features we can provide um that each car should have its own features okay awesome now we created uh I think we did everything inside this Cedar and now we just need to try to execute this and see if we have any errors let’s bring up the terminal and I’m going to execute PHP Artisan migrate fres D- seed let’s hit the enter and have a look okay we have very first error and let’s see we have some issue inside car types okay I know the reason the reason is that inside the sequence we have to provide arrays not a single array because we have just one array and inside there then we have nested arrays this this doesn’t work so sequence accepts um elements multiple arrays not single array okay we’re going to remove this array parenthesis right here and we have to fix this in other places like here we’re going to remove this and also if we scroll down below when we create this array map we have to destructure this and provide separate arguments inside the sequence so each paer of this name the associative array will be provided as a SE separate uh parameter of the sequence method and we should do this for makers as well and now we should be good so let’s save this and retry this again okay seeding database it needs couple of time because it is creating something okay we have another error okay we have bed method call to undefine Method car image from car okay we have to provide relation and name as well when we Tre try to create uh images like the car has and right here uh we need to provide image’s name and you know why because if we open car factory the relation to images is called images right here but the actual model is called car image if we call these car images then it would probably work but but we have car image right here we call the relation images and that’s why we have to provide the relation name I’m going to provide images right here we need comma now let’s try this once again PHP Artisan migrate fresh D- seed okay cing completed successfully and now we need to check the database let’s start with the users we totally should have five users and we do have so let’s open States we have the following states for each state we have couple of cities totally there are 50 cities we have cars we should have 100 cars in our database here we go we have 100 cars and all the data is provided very nicely let’s check car images this is something we we need to come back and look at this so we have five images for each car but the position as I mentioned starts from one and goes up to whatever it is 500 okay so this is something we need to come back and fix it let’s go into database Ceder scroll up and find where we provide the position so the sequence starts from one and ends with 500 so because I’m creating five uh uh images for every car this is what I want to do so I’m going to take that sequence index and I’m going to uh take the remainder when dividing this on Five okay and then I’m going to add one so whenever sequence is zero then the following expression will give me zero + one will give me final position one when the sequence increases like when it is one then this gives me two and so on and when the index reaches five then five divided on five the remainder will be zero and this will give me one again so using the following code the position will be alternated uh from like one to five or I could do also in the following way I will just show you the maybe the easier to understand way here we provide sequence and we provide the following let me comment out this part this is extra comma we need comma here okay position one and then we duplicate this several times position two position three four and five so if we format the code now this will do the same thing right here so for first car it is going to be position one second position two and so on and for the next car for the sixth car it is going to start with the position uh one again this is probably easier to understand but the above code this code will do the same thing so I’m going to leave both actually uh we need this comma here okay now let’s save this and let’s execute the migration fresh with D- seed again seeding completed successfully and let’s check now car images table and we see that the position is from 1 to 5 for every car and just like this we defined ideal data for our project and we can already start working on outputting these data on the [Music] website now let’s open Home controller and we’re going to select cars and render those cars on the homepage let’s use the following way to select cars car where I’m going to select the cars which are published so I’m going to provide published it to be less than now I want to select cars which are published in the past okay so then I’m going to sort those cards using order by Method with published add column in descending order latest published car at the top I want to limit the result with 30 and I want to get those cars now let’s pass these cars to the view through associative array great now let’s open homepage page index blade PHP file and here is where we simply iterate from 0 to 12 and we are rendering uh we using this ex car item instead of this for Loop I’m going to use for each we already have cars available in this plate file because we passed it from here okay we use cars as car here we need end for each and we are going to provide car right here so I’m going to provide this in the following way assuming that the component will accept a prop with name car let’s open this component car item component and let’s define inside props a single prop called car now we accept car right here now let’s use this car and um just display the information right here so here we have hardcoded image instead of hardcoded image I’m going to use car primary image image path next here we have the um city of the car so car city is a relation on the car name scroll down below we have here y I’m going to use car y here we have the maker name I’m going to use car maker name and here we have model name car model name let’s move this down like this here we output the price car price here we have the car type car uh car type name let me double check what is the relation um to car type the relation is called car type we could call this type as well but car type is also fine so car car type name and here we have car fuel type name and just like this we defined the car item component exact exactly um as it should be now if I save and if I reload the browser um okay attempt to read property image path on now I have a typo here I can’t access primary now let’s rad the page again and the homepage was rendered and we see latest edit cars we see these are dummy images we see cities right here we see y we see maker model we see price we see car type and we see fuel type as well and all the cars are unique we are displaying 30 cars on the homepage and finally we have to also fix the root to the car show page here we have hardcoded one but we’re going to replace this and provide the either the entire car object or we can provide just ID if we provide the object LEL will resolve this automatically and takes the primary key of that [Music] object now let’s have a look at different ways how we can Cur data for example if we don’t have orm model created for our table we can still cure the data from the Cars table using the following way we’re going to use DB support class for this and DB table we provide the table name cars and the then we can call any CER Builder method such as get to get all cars however if we have car model then we obviously know how to CER the data but there is a specific method to create the CER Builder instance and that method is called qer we can create that qer instance and then on that qer we can use any methods from the qer class such as we order by limit and so on okay to get a list of all cars we can do the following way to get the first car we’re going to use the first method we can also get a single value from the car for example I want to get the highest price I’m going to order by cars with a price descending order and call the method value specifying the column name and this will return a single um integer or string value highest price from the database if you want to get a list of values for a specific column we can use a method called pluck we ordering uh cars by Price descending then calling PLU for Price column gives me a plain least onedimensional plain array of prices from the car table or I can provide a second argument in the plaque which will index those prices by that ID column so the second code will give us an associative area we key will be the car ID if we want to check if a record exists or does not exist in the database we can use methods like exist or does not exist if you want to specify inside select which columns we want to select we can use the select method and provide the column names we can also provide aliases using as keyword like we have done in the first case uh right here or right here if we we can also use additional method called add select to select for example wi code here and price here but we can also add millage for each car and after that we call get and each car will have three columns V code price with the name of car uncore price in the millage if we want to select the distinct records we can use distinct method on the select like if we want to select the distinct maker ID and distinct module ID from Cars if you want to limit and take the off use the offset as well on the car we can use limit and offset methods but there’s Alternatives as well like skip which is equivalent for offset and take which is the same as limit if you want to select how many records exist in the database with some conditions or even without the conditions we can simply use count method we can use this count method directly on the car model which will return how many cars totally exist in the database if you want to select minimum maximum and average prices for example we can use mean Max and AVG methods on the CER Builder providing the column names for example the first code will return the minimum price of published cars inside the cars table the second will return the maximum price of published cars and the third would will return the average price of published cars in the database if you want to group cars we can use Group by Method provide the column using which we want to group for example we can use also this select row method which we’ll go which we will cover in the next lessons as well we’re going to select the car ID and count as image count and group by this car ID this will return car ID and how many images that specific car has and this will return array of cars car image instances and if we just print the first cars from that array we’re going to get something like this it is an instance of car image but it only has two attributes car ID and image count this is exactly what we selected if we access search page on our website we see that it’s still outputs dami data now let’s fix that let’s open car controller search method and let’s Select Cars so let’s use car we I want to always Select Cars which are uh published so publish that is less than now then I’m going to call order by to sort it by published it in descending order and that gives me CER quer Builder instance then on that CER Builder I want to do two things first I want to calculate how many cars there exist with the search criterias like car count equals on the Cy I’m going to call count next is to actually get the cars so cars equal on my cury I want to call limit to select only 30 cars and then I’m going to call get now I have car count and I have cars and I’m going to pass them right here cars and car count great now let’s open car slash search Search Blade PHP and let’s find the corresponding place where we need to Output them let’s scroll down below here we have found random number cars and this is where we need to put found car count cars and if we check in the browser that was the place where the random hardcoded number was outputed if I reload right now we see found 80 cars now let’s scroll down below and find the place um where we have these car items here it is this is the car item and we have this code duplicated main times so I’m going to collapse that actually I’m going to delete now those car items there’s plenty [Music] oops let’s see okay here we go so I deleted now we are going to iterate over received cars as car and we are going to use x car item providing the car right here because the prop name matches the variable name we’re going to provide we can do this in the following way now if I save and reload we see found 80 cars and those are cars selected from the database and those are 30 cars the pagination is dummy at the moment but we’re going to come back to this now let’s see different ways how we can order data using cery Builder we already saw an example of order bu but we haven’t mentioned that we have ability to provide multiple order by methods so we can do this couple of times provide the first order by column and its direction second order by column right here and its direction we can also use predefined latest and oldest methods latest method is going to do the same thing to order records by created that in descending order and the oldest method is going to do this thing to order by created it in ascending order however there is also possibility to provide additional column on latest and oldest methods like in this case we are sorting latest by published at so this is going to to the same as order by publish dat in descending order we can also select any records in random order and the method is called in random order and then we can get cars in random order so that’s a good thing if you want to always display random cars on the homepage you can do it like this also if we want to remove ordering an existing ordering let’s say we have this query Builder which is ordered by published at in descending order and we want to remove this ordering we can call reorder which removes existing ordering and then we can apply a new ordering order by price for example or we can also provide new column in the reorder method like if it is sorted with publish dat we call reorder price it removes publish dat and applies um the price in [Music] ordering when we open the listing of the cars and click any of the cars it is going to open hardcoded content right here and now let’s fix that part for this let’s open show blade PHP file from resources views car folder and we have to adjust this here we need maker so this is going to be car maker name let’s move this down then we need to Output car model name we need to Output car y here then we need to Output the city car city name this is the date when the car was displayed so let’s just output car published at date okay scroll down below now this is the image section so this is the primary image so let’s just output car primary image image PA and down below we have all the remaining images so we need to iterate using for each over car images as image and we need image right here and we have to provide image image path here image image path cool let’s delete all these hardcoded images let’s scroll down below what else do we have so here’s the detailed description we can provide here we need to provide the description of the car car description but let’s assume that this might have um content like HTML type of content so let’s use and output this with entities with unencoded okay and this is also part of description so we are going to remove REM this here we go we have then car specifications and these are car features okay uh we are going to get back to these car features in a moment but let’s scroll down below and find where we output the price and everything else so I think that’s the part here we have make this is car maker name then we have our model name we have car y this is car type so we have car car type name and we have car fuel type name what else do we have so we have the user Avatar who is the owner of the car we also have the username we don’t have actually avatar for the user but we have the username so here we’re going to use car owner and we have the relation to user through owner name car owner name and we can also output how many cars the owner has like car owner cars count it’s pretty handy car owner cars count let’s understand this car PHP it has owner method and through owner it connects to user and then user class has cars which relates how many cars that user has and we can access to that relation and then through that relation uh if we access this as a method then this returns qer Builder and then on that Q Builder we can call count okay great then here we have the phone number and we need to Output it for this I’m going to use St Str um helper class let’s use Str Str and I’m going to use method called mask we’re going to provide car phone and I’m going to provide the symbol which should be used for mask and I’m going to provide also the integer after how many digits uh it should apply this mask so here in this case we’re going to provide minus three which means that first uh the the last three symbols will be masked okay so we’re going to take this and we are going to put this right here as well now I’m going to save this and re reload the browser uh car maker name okay undefine variable okay let make sense let’s open car controller we have not passed that car let’s find show method here we have this car but we have not passed that car to car show blade file so let’s provide it here save reload now we see the name y whatever we see the price I believe this is hardcoded price we can come back to this but we have like the name how many cars that uh has the last three characters is masked we have some detailed description as for the car specifications this is something we have to fix the CSS needs to fix to be fixed as well I recently made some changes in the HTML CSS project inside CSS you probably have the latest version you probably don’t need to do this I’m going to copy that up CSS and put this in my project inside up CSS which comes from the public folder let’s replace everything awesome now reload the browser and we see these car specifications now on the right side we don’t display all the information like we don’t display VIN code we don’t display millage or address let’s open PHP storm go into show blade and here we also have this hardcoded price let’s replace this with car rice and now if we scroll down below we have make model ER let me duplicate this and this should be Vin then we have car type fuel type and we need address this is going to be car address and we probably need millage as well so I’m going to put this after WI okay cool reload the page and now we have a lot of information actually the whole list of information what we need to have last thing what we’re going to do on this page is this car specifications so this is hardcoded at the moment and if we observe that part which is above we’re going to see a lot of duplicated code so this is the lii which has the color red this means that uh it doesn’t have that specific feature and this feature is leather seats okay anyway so we have a lot of Li elements inside these car specifications and this is something I want to fix for each Li I want to create uh separate component so let’s open Terminal I’m going to execute PHP artisan make component car well I’m going to create this as view only component so I’m going to call this in a lower case car specification so this is going to be the component name Das D view PHP artisan make component okay now let’s open car specification blade PHP file let’s open show blade PHP file as well and I’m going to copy this liit tag one of the LI tags let’s take this one and I’m going to put this in the car specification however this one has color green which means that it’s um it is a checkbox we need the second SVG icon as well like this one here and we need to alternate based on the value okay now we have two SVG icons here now let’s accept prop props value and here let’s check check if value is true then we display this SVG the green SVG in lse case we display this red SVG we need end if here I’m going to use default slot okay cool now let’s go right here and we have to adjust this so let’s start from the first one we’re going to use X car specification and we have to provide value the value will be car features abs and we have to provide the actual content like the label as well let’s finish this car specification and the label will be ABS now if we save this reload the page we see an error okay the problem is right here yes car X car specification okay well this should be an array that’s my bet there should be an array now we save it reload it and we see ABS which has minus so this is the car with ID 23 now if we open the car with ID 23 ID equals 23 find that and let’s find its features we want to find features car ID equals 23 ABS is zero if I set the ABS to be one and save that then reload the page we’re going to see now the ABS turns into green and in the following way we are going to follow and implement the other specifications like I’m going to duplicate this many times I can delete all Lis right now don’t need them anymore collapse them to easily delete them okay cool let’s delete them and maybe I need labels corresponding labels okay let’s duplicate this multi times okay and then I’m going to copy labels for all of them using multi cursor I’m hitting alt on my keyboard here and here I just want to copy labels for all of them creas control Bluetooth connectivity remote start GPS navigation system heated seats climate control rear parking sensors and leather seats okay I have a lot of cursors created for every label then I’m going to hit shift on my keyboard and hit end on my keyboard so this selects the whole entire line and all these labels are selected so then I’m going to hit contrl and C just to copy all of them now let’s scroll up move up find that specification area and I’m going to create now again multiple cursor the first cursor goes right here then here so if you want to create previously we had multiple cursors already created like right now I have two cursors if I click somewhere else hitting alt it’s going to create the third cursor but if I click somewhere else without alt it is going to create only one cursor right here in this place so the first cursor here second here with alt then I’m pressing alt okay okay now I’m going to hit shift again and in this case home button and delete everything and hit control and V to just paste that rear parking sensors is the last one but there was something else after it as well so I just created uh not in enough ex car specifications okay I copied like maybe 11 lines but I had 10 cursor points that’s why one was lost maybe one maybe two was lost after rear parking sensors there was something else we need to scroll down and find that it was leather seats okay now let’s delete all these Allis because we copied the ual labels I’m trying to be cautious don’t to delete too many lines okay now I duplicate this and the last one was leather seats okay now we have a lot of X item specifications the only thing we need to adjust is to provide uh the corresponding uh Keys column names right here so let’s expand this and expand the column names and let’s start with the first one which is air conditioning so we can copy the column name and instead of ABS we can paste it right here next we have power windows we can copy the column name and put this right here next we have power door locks we can copy this put right here next we we have abs which is correct next we have cruise control which we can copy and put this right here next we have Bluetooth connectivity copy the column name put this right here we have remote start we have GPS navigation we have heated seats we have climate control oops uh we have climate control here then we have rear parking sensors and finally we have leather seats okay now this looks good um let’s save the file I’m going to open car features and I’m going to quickly test this I’m going to select all the features and I’m going to set zero for all of them now let’s open reload the page see minus in all of them now I’m going to put one in all of them and using PHP sh we can very easily do this you just need to select all the cells and put zero or one there okay then we need to hit this submit button right here so now we I reload and I see checkbox on all of them so our implementation of car specifications works perfectly and we have I believe very ready car details page as well let’s go back and open another car like this one Chevrolet Tahoe 2005 price every information different seller different phone number eight cars detailed description and different specifications if we access SLC car URL we’re going to see this hardcoded my cars page now let’s try to implement this for this let’s open car controller and we’re going to find index method here we are going to select the cars which belong to the currently authenticated user because at the moment we don’t have authentication implemented in our project we’re going to use hardcoded user ID 1 and select the cars for the user ID one so cars equal user let’s find with id1 and that we’re going to import that user up modules user and then I’m going to call cars um Q method on that and I’m going to also call order by I want to sort the cars by uh created at in descending order and finally we’re going to call get so I select the cars and let’s provide the cars right right here now let’s open car index blade PHP and we have to scroll down below where we iterate over our data inside tbody and we have to iterate over given cars is car okay let’s move this end for each below this TR right here and we can delete remaining TRS because those are hardcoded and we’re going to work inside that TR to Output the correct data so here for example we need to Output car primary image image path next we have car y car maker name car model name here we have the date when the car was created or when the car was published we can decide which one we want to display I’m going to display when the car was created car created it however I want to display just the date not the time okay so this will display the daytime uh let’s display this and then I’m going to come back to it and so here we have um whether it is published or not and we can use if car published at exists then we print yes if not we print no this is something which we have to provide car. a edit and the car entire object we can collapse this and this is a link to car images uh well we can skip that right now when we Implement car images page then we can come back to this and this is the button to delete the car and I’m going to come back to this later as well now I save this I reload the page and here we go so we see the cars for the user for the user one so we see um the basic information we see date with time which we need to change and only display uh date without time we have the published flag this one is not published and we have this edit images and delete button as well if we have a look at the HTML CSS project we can see that the edit and images buttons have different colors and they look slightly differently that’s because there is uh these buttons are styled under page M cars so what we need to do is to add page my cars to this page so let’s scroll up and inside X up layout um do we support this page class let’s open up Dash layout or up blade PHP okay we don’t accept page class we accept it probably in the base layout but we don’t accept in this um up plate PHP so let’s take like body class which by default will be null and then let’s provide body class here like this okay now from here we provide body class to be page my uh well we have to remove this column page my cars is it correct I mean the naming page- my cars it looks correct so we save it and reload in our LEL and we see that the buttons got blue and the delete is red and the styles are properly applied next is to fix that date right here and for this we are going to use use carbon package in LL there is by default um it comes with LEL it’s a carbon package working with a date carbon is a very um powerful date manipulation Library okay so we can create an instance of carbon providing this car created at and then on that we can call format I’m going to put this in parenthesis I’m going to going to call format on this or we can create a method in the car model so if we open car. PHP scroll down below we can add new method here get create date we’re going to return new carbon we provide this created it and we’re going to call then format on this providing year month day okay now U and we can specify that this returns string now let’s take this method name and use it right here so on car we’re going to call get create date and let’s check in the browser reload the page and we see just the date here we are using for each but if there are no Cars I want to also display um some information that there are no Cars the user has no cars and so on instead of for each we can use for else then oops like this for else then we have to provide right here empty directive and inside we need TR then we need TD I’m going to provide call span to these five let’s provide also text Center pting uh Dash large and inside here I’m going to write the following text you don’t have cars yet and we’re going to put a link to car create page as well so for else empty and finally we need end for else we save it we reload it we don’t see any changes right now but if we open car controller and change the user uh ID from one into three for example I believe three doesn’t have any cars uh no it has uh let’s change it into four maybe five it looks like all of them have some cars user okay all three all users have cars let’s search for user ID equal five and these are the cars for the user ID five which I’m going to change and assign it into user 4 now fifth user doesn’t have any cars so I reload and I see the following page you didn’t have any cars yet a new car clicking on this should open this a new car [Music] form now let’s Implement watch list page first let’s create blade file HP artisan make view let’s call this watch list but we need to put this inside car folder car. watchlist cool now let’s open car controller and I’m going to add additional function right here called watch list okay okay then I’m going to return a view from here car. watch list I’m going to select the watch list cars right here so cars equals let’s find user with id4 again we are doing this uh with hardcoded approach so to do we come back to this okay so we find the user and then I’m going to call F favorite cars on that user then we provide cars to be the cars now let’s open just created watch list blade file inside car and we have to copy and paste some content from the HTML CSS project here we have watch list HTM HML and we’re going to find this main tag here it is I’m going to copy and here we’re going to use x up layout and put this inside X up layout okay if I save this uh we have to Define the root as well so let’s open web.php duplicate this car search and I’m going to call this car watch list and we should change this into watch list as well and the name will be car watch list as well now let’s open the browser and access car watch list hit the enter and we see my favorite cars right here which again at the moment is hardcoded now let’s open this watch list blade and we have bunch of car items we need to delete pretty much all of them so I’m going to scroll at the very [Music] bottom where it is here it is here it ends okay oops sorry so this is what what I’m doing we have this car items listing and I’m going to leave my cursor right here and then scroll at the very bottom until I find it’s matching close using tag here it is so this is it now I can delete from the top so from here up until here I’m just trying to do this slowly so that you can learn but in practice when you get used to it so you can you you’re going to speed up your working process a lot so for each cars is car and we’re going to use x car item providing car right here now we save we reload and we see the items which are in the watch list so we see that the page does not have uh the heart icon highlighted like it is right here on this HTML CSS project so this is watchlist. HTML so the heart is highlighted here but not here and we have to fix that let’s open HTML CSS project again and we are going to find the heart icon which is highlighted so this is inside this car item let’s scroll down below here we have this SVG uh and I’m going to select this SVG let’s go go into our car item scroll down below find that SVG and I’m going to put the copied SVG here the width is 20 pixel here we have the 16 pixel we can reduce this to 16 pixel okay always now we probably have two icons um one which is not which is highlighted which is fielded and the second which is not field now based on some flag we need to decide which one we should display okay so if we are rendering this car item from the watch list we know that all the cars are inside the watch list so on this props inside this car item let’s add a additional prop um is in watch list let’s call this is in watch list and by default we’re going to provide false it is not in watch list then based on this flag is in watch list we are going to do the following so I’m going to add extra class on this SVG which is not fi SVG so this should be hidden if it is in watch list let’s format this nicely and in the same way the second SVG should to be hidden if it is not in watch list now because all of the items are in watch list if I reload the page uh we don’t provide watch list don’t we or maybe do we have this hidden class let’s open up. CSS and find hidden class and here we go here we see only one icon but that is not the one we want so maybe maybe we should inverse this so hidden uh if this is in watch list and hidden if this is not in watch list now we save and we reload and we see that this is filled however the styes right here is again different so we need to inspect this and have a look so we have this pitting hard icon it has text primary B um BTN heart text primary let’s have a look we have just BTN heart not text primary let’s add the following class as well reload the page and we see this in Orange nice orange color however because we add this text primary it will be in orange color even on the homepage uh right here uh which well this should be this should be in or orange color but not fi so let’s check we have this car item is in watch list this is always false we are going to print what is the value of this is in watch list when rendering on the homepage so it is always false then why do we see this field one we shouldn’t see this field one right so again we did something wrong so the first first one this should be hidden if this is in watch list and this should be hidden if it is not in watch list reload the page that is correct however if we go in the watch list page this is the issue the watch list page we’re going to provide is in watch list and we are going to provide um well we can provide always true at the moment because if we are rendering this from watch list page it will be in the watch list in any case so let’s remove this dump reload the page we see this orange but not fied if we go into car watch list page then we don’t see also it fied let me return this damp again and we see that this is false is in watch list I have a typo is in watch list this is it s was missing right here save reload remove the dump and reload building realtime applications not the real time but the real world applications is challenging you always make some typos you always have some issues but the good thing is that when you finally make it you feel that satisfaction now I want to talk about one very important concept and this is called eager loading now imagine the following case we’re selecting five cars we are iterating over our cars and we are just printing the car city name however this line uh has accesses the relation City and this line makes select for every city so finally the following Cod code will make six queries one select will be to select these those five cars and then there will be five subsequent queries for each car to select its Associated City okay and even right here the first select and the last select uh is the exact same even the ID is 15 that’s because the first car and the last car both are for the same city okay how to fix that problem uh and that problem actually is very common problem this is called n plus one problem cers problem and this problem will get even worse if you try to access multiple relations like we are trying to access U City and we are also trying to access car types now number of curers will be much more it will be actually uh 2 * n+ one so one quer to select cars and then for five cars and then there will be 10 more cies five for each relation and imagine that we’re now selecting 30 cars or 100 cars the number of C is made for cities and car types will be 200 for if we are selecting 100 cars so this this is very common problem and that problem is the might be the number one problem on your website to which degrades the performance um and the load time of the website how to deal with this problem we can provide with method on the qer and we can provide the relation names right here we can provide just a single relation name City or car type but we can provide both so in in this case this line does not make select for every Cy instead there will be totally three selects made the first select will be to Select Cars the next select will be to select cities for all the selected cars in the next select will be to select car types for all the selected car types totally three qies and it really doesn’t matter in this case if we we’re selecting five cars or 400 cars there will be still three curers made on the database this is pretty handy now imagine the case that we are accessing nested relations like we are accessing cities states name in our case without this eager loading it is going to make again a lot of requests so want to Select Cars want to select the city even though we don’t need city um and the next one we don’t need any information from the city but we need just information from state so we are not using information from City but it’s still is going to make um to cities and then States cities states and so on to fix that we can provide nested relations inside with right here with city. State and again we can provide multiple relations in this with method now when we are trying to access CT and State totally there will be three Qs made one for cars second for cities and the third one for States we can do the same thing if we provide such type of nested array inside with like city which is an aray and it has inside their state or car type so this uh selects cars with city and state and car type as well there is possibility to provide this with and like activate this eager loading by default if we provide protected dollar sign with property on the car so here we have those three relations defined inside car protected with like city state city. state car type and fuel type now when we write the following select without with inside car this selects five cars then we try to access city and state but totally this is going to make five queries one query is going to be to access the cars the next query is going to be to access cities based on the relation the third query will be to access States fourth one for car types and the last one will be for fuel types and here are all CES made okay there’s also also possibility to provide additional constraints additional wear Clauses when implementing eer eager loading for example we want to select car with images but right here we are providing also a closure function as a value of this associative array of images okay pay attention on that cury here in this function we are accepting the qer and on that qer we are adding additional re Cloud where the position is one which means that I want to select cars with images but only those images which has position one so finally when we try to access right here on this following line uh images when we dump the images the images array will always be one and it will be an image which has position one and here are the cers made for this first to select cars and the second one is to select car images for the already selected cars but the position needs to be one as [Music] well now we know what is eager loading or and how we activate the eager loading let’s implement this in our project for example on the home controller and on the home page so I’m going to give you this challenge to you you can think a little bit try to implement this and come back back and see my solution but I’m going to also give you hint how to do this if we open Home index blade PHP from here we are actually iterating over cars and we are using this car item so let’s open car item here this is the place we are accessing relations of car like here we are accessing the primary image City and so on you have to identify all the different Rel relation types we are accessing from this car item and then you have to provide those relation names inside with method right here okay enough speaking try to implement this and come back and see my [Music] solution all right here’s my solution let’s provide with the method here we need primary image we need City we need car type we need fuel type we need maker and we need model so these are the relations as I remember we are using inside the car item but I’m going to double check so primary image we are using CT we are using scroll down below we are using the model maker car type and fuel type and that is all now since we Implement those relations now totally the following code will make the code on our page will make um let’s count how many selects it will make and maybe this also try to guess how many selects pause the right now and try to guess how many selects will be made on the homepage okay now let’s count it together the first select will be to Select Cars the next one is to select primary image then the third one is for City fourth one for C type uh fifth one six and seven so totally there will be seven cures made on the homepage and it really does not matter if we’re selecting 30 uh Records right here or even 100 but without this with now I have another challenge to you if I comment out this with can you guess how many selects will be made on the homepage okay let’s count this together as well one select will be made to select cars now when we try to access to this primary image second select will be made third and so on I’m not going to count all of them but the point is that for every car we are going to make select for every relation totally we have 30 cars and how many relations we have 1 2 3 4 5 and six so totally this is going to make 180 selects just to select the relations and plus one to select the cars you see the difference right 181 select versus six select um this is how powerful eager loading is and this is why eager loading uh is the best thing what you can do on your website uh the probably the very first thing what you should check if you have correct eager loading implemented on the website if your website doesn’t work [Music] fast now I have additional challenge to you I want you to implement this eager loading on search page watch list page and my cars page okay I hope you did it now let’s see my solution on the watch list page after whenever I’m trying to access favorite cars so if I try to access with properties this gives me collection but I am going to access as a method which Returns the CER Builder instance and then on that I’m going to call with let’s move these favorite cards down I’m going to call with on this and I need need the exact same relations I defined in the home controller because the car watch list is using car item component and car item component is accessing the same relations which what we have added in the home controller so we’re going to open Home controller and I’m going to copy this with method and put this right here and semicolon at the end now let’s find search method and we’re going to do the exact same thing on search because search is also using the same component car item component now let’s access index page which is my cars page and here we don’t need all the same relations for this let’s open car index blade and identify what relations we are using so we are using primary image so let’s put right here cars with primary image next what do we have we have model we have maker let’s provide maker and model do we have anything else no in the listing we don’t have anything else so these three relations inside car controller index will be totally enough in the W list method I forgot to call get method after providing with without the get obviously we we cannot have any kind of cars so this get should be [Music] here sometimes when we select data we want to join to another tables and filter the data by another table or simply select the data from another table I assume that you are familiar with typical database joins this is how we’re going to implement the same thing in l through eloquent we have right here cars and let’s say that I want to filter those cars with State okay how we’re going to do this on cury I’m going to call join and I want to join to cities right then I’m going to provide the first argument of the join method is the table name I want to join the second argument is the the column name from the related table cs. ID the third argument is going to be the operator using which we’re going to do the comparison equal sign and the last argument is going to be the column name in the current Table like cars CT ID Now using the following way we joined to cities and now let’s say that I want to filter those cars based on the state ID so then I can add extra we Clause right here where cities. state ID equals 1 and in the following way we are going to have filtered data for the state id1 on the search page now let’s open the browser let’s go to search page and now look at this we have totally found seven cars only seven cars and we see only seven records and all of them belong to the same state and this is a probably Los Angeles State because we have um cities um around Los Angeles if I comment out this part reload the page we’re going to see 80 cars and we’re going to see 80 cars in the listing as well so that’s the one use case how you can use join and in which case in why you want to use join the second reason is that you might don’t want to make make an extra quy for example on City even though we have that City inside with a second extra query will be made to select city right so what we can do is the following on cury we can call Select to select everything from Cars plus we are going to select cities. name as cityor name now we select um the select does the select accept multiple arguments we’re going to see then right here inside the cars let’s just dump cars at zero we save reload and the first we have the first car right here and if we expand its attributes we are going to see CT name right here now if we access this is using the car search now if we access car item component uh here we are accessing through relation car city name and this makes the request and right here this also makes request what we can do is remove move this city from here okay and here instead of relation city name we can access ccore name because that is already selected okay however in this specific case I’m going to leave this accessing through relation because that is not um very expensive operation for our website to just make one select for City but but sometimes that separate select might be very expensive Cy that’s why uh if you are still making the join uh why not selecting it so there’s you should always choose between like the readability of your code um and the performance you should take something in between making your code super super optimal while you have like 100 users monthly active users on the website doesn’t make any sense rather it’s it’s better to uh focus on code readability because the relations also is going to work very fast okay let me comment out this part uh you can also apply joins um multiple times on your table for example here we are joining on cities and filtering but we can also apply additional join on let’s say car types where car types ID equals to cars car type ID and let’s say that I want to filter cars which has car types name equal sedan right so we can use this combination as well in this case I assume I doubt there will be any records uh oops where is that yeah there was nothing found because uh the two wears like the cars which are in state one and also uh they are sedan it doesn’t exist but if I change this into two maybe it exists yeah it was found and here we see that um car type ID is one which is San and this is here we see name as well sedan and the question is probably why do we see right here name sedan in state ID as well because when we don’t provide anything with this select by default Lal selects everything so everything from joined tables and that’s why everything from cars from cities and from car types is selected and that’s why we see right here state ID and name however it’s a good practice to provide if we are doing join it’s a good practice to provide everything from Cars table only and nothing else now I reload the page and we don’t see here state ID or name because we are only selecting information from the Cars table okay so this was inner join example however there is also a separate method called Left join left camel case join uh and we also have right join and it works in the exact same way like it works in regular databases in MySQL or in in even SQ light um I’m not going to provide more information about that right now because it’s a pretty straightforward it’s the the syntax is the same the table name First Column equals second column and um the left join Works differently right join Works differently and I assume that you know what’s the difference between inner joint left joint and right join uh if you take this course if you want more advanced joins and more additional we Clauses on the join you can do this in the following way let’s say we’re selecting cars joining into car images and right here in this join we can provide closure as a second argument uh we accept instance of join clause and on the join Clause we can call on our own condition how we connect these two tables together like cars ID equals car images car ID and we can provide extra we right here car images position equals one so we are making the join to car images but only those images which has position one we can also add extra or on like car’s ID equals car images car ID or and second condition whatever you want so this a pretty Advanced uh case uh you won’t find this very often but I just wanted to show to you that in case you need it you you know that that this course has a slide on that information and you can come back and find this [Music] out we already covered the most common wear Clauses in L but there are even more let’s see couple of examples how we can use wear Clauses or what additional wear Clause methods exist in LEL we can apply multiple we Clauses just like we are doing right here this is pre pretty straightforward however every we method accepts three argument by default and the second argument can be the operator and that operator can be any valid operator supported by your database like in our case we are using equal sign greater than or even like where are we providing the string with with parenthesis the we method also accepts an array and in which case we can provide multiple we Clauses as array each of them like array of sub arrays where each sub array is the column name operator and the actual value now let’s see an example of or wear Clauses sometimes we want to select very old cars or very new ones and for this we’re going to use or we like in our case we your is less than 1970 or where the year is greater than 2022 we also have we are not Clauses we are not dedicated method and in this case this is going to Select Cars where millage is not greater than 100,000 obviously we can write is less than or equal to 100,000 with we close but just for your information you should know that there exists we not as well there exists also we any clause which gives you possibility to provide multiple columns and if any of the provided columns satisfy the condition then the car will be in the final result so in our case if address or description contains the text York inside there then the will be selected there also exist wear all CLA in which case all Fields provided in this array needs to contain the word [Music] York now let’s cover a couple of more wear Clauses which are not so often used for example this we between or we between in our case we are selecting cars which has Y in between in 2000 in 2020 we can also provide or where between if we need so there also exists we are not between and or we are not between so in our case we are not selecting cars which are between 2000 and 2020 which means that we’re selecting cars which are outside of 2000 and 2020 years the next one is we we null we are not null or we are null or we are not null if we want to select all the cars which are not published yet this is the code how we can do it car we are null published at get if you want to select the cars which are published then we’re going to use we not null published at and get again we can always use or we are null or we are not null if we need to use or we CLA as well the next one is we are in we are not in or we are in or we are not in for example if you want to select cars which are for maker one or two we are going to use we in maker ID one or two if you want to select the cars where the maker ID is not in one or two we would use we’re not in maker ID one and two we are in we are not in also accepts additional cury for example if you want to select the users which are signed up with Google we would use the following select user we are not n Google ID but this returns a quer we are not calling get method we just return the quer then we could use that quer to provide inside wein method car wein user ID in the given qer finally the generated SQL looks like this select everything from Cars where user ID is in and second select right here so this gives us possibility to provide extra additional subcy inside this we in the same way we can use or we are in or we are not in the next is we date we month we day we year and we time these are pretty straightforward all of them works with dates the first argument is the column name which typically contains datetime values and the second arguments are depending on which method we are using for example in the first case uh this just make sure that the published dat is a specific date like 2024 07 12 the second method where month makes sure that the publish date is a specific month like July we day make sure that publish date is the first day of the month we are year will return cars which was published in the last year in 2023 and the last one we are time simply I think this this is going to be very rarely used but we can select the cars which we published at a specific time hour minute and second the next one is we column or we column if we have like two columns created it and updated that and we want to select those records cars or users or whatever where the created Ed and updated it columns are the same which typically means that the record was not updated after it was created so if you want to select records which were not updated after it was created we can use this Weir column the second example is to select the records we the record was updated since it was created where the updated at is more than created at we can also provide multiple conditions inside we column in the following way array of sub arrays there are also exists we are between columns we are not between columns or we are between columns or we are not between columns we don’t have a specific example in our project so I took this example from Lal official documentations so we select the patients where the patient weight is between minimum allow weight and maximum allow weight or we can take the patients where the patients weight is not in between minimum allow weights or maximum allow weights and finally there is we full text method as well our current database which we are using for this project sqi does not support full text search but if we are using any other database like MySQL postgress and so on it supports full text and if there exists full text index on the database then we can search cars or whatever information in the following way considering that full text index where full text the column name and the search keyword BMW for example now let’s have a look at the following example car we Y is more than 2010 additional Weir price is more than 10,000 or where price is less than 5,000 so imagine that we want to select the cars where the Y is more than 20110 and the price is either greater than 10,000 or less than 5,000 so the generated SQL looks like this and here is a problem if we want to have the price condition grouped together let’s say that the Y condition must always be there and the price condition should be grouped together then this qer has a problem so you should be always careful when using or we in your applications and the recommended practice is to use this logical grouping so in our case we can use another Weir like we have the first Weir to compare the ER but here we have the second Weir which accepts a callback function as well so we provide the Callback function inside this callback function we accept this Q with a builder and then we can add those two conditions where price is more than 10,000 or pric is less than 10,000 and because we have provided closure function and we use that grouping the generated SQL looks like this now as you pay attention we see that the r is more than 2010 and the price condition is grouped inside parenthesis and this is exactly what we wanted now let’s see an example of where exists let’s say we want to select cars that have images and we don’t want to select any car that doesn’t have image so in this case we can provide a method called where exists we can provide the function and closure function that function accepts a query parameter right here so we take that query and on that query we can select something from car images but we are connecting to the outside select so select ID from car images we column car images car ID equals cars. ID so here the equals is not we can obviously provide the second argument to be equals but if we don’t provide second argument equals and if we only provide two arguments right here LEL will automatically assume that the parameter the operator excuse me the operator using which we’re comparing these two columns means equals the nested select right here means to select car images for the parent car so this finally it’s going to create nested select using this we exists or we can do it in the following way as well we can directly provide viy inside we exists car image select ID we column car imagees car ID equals cars ID so this two piece of code is doing the same thing and this is what generated SQL looks like select everything from Cars where exists and the nested select to ID to select ID from car images where car images car ID equals cars [Music] ID now let’s talk about sub CES the Weir method accepts a closure function and that closure function accepts the CER filter we can pass that function to a couple of other methods like or we we’re not um and and couple of others as well but in our case we are selecting sedan cars but we are using this nested select approach so let’s Analyze This nested select first cury select name from car types where column cars car type ID equals car types ID and we’re just selecting one okay so this nested select will be executed for every car and it simply is going to select name of the car types and in the outside this Weir has second argument equal and sedan as well so inside this wear so whatever is written inside this wear will be a value which equals sedan that quer is the same as the following one we have that subquery in its own separate variable car type select we column cars car type ID equals car types ID limit one and we’re providing the subquery inside this where where the subquery equals San and the final generated SQL looks like this select everything from Cars where something is selected here equals San and that something is Select name from car types where cars car type ID equals car types ID line one this limit one is important otherwise the following select will select multiple values and the wear condition will not work because multiple values cannot be compared to a single value here we have another example we’re selecting cars which has price below average price so here inside this we first we have the price Which is less than and the closure function so in previous example first we had the closure function and the subq then we have the operator and the static value here we have it in a reverse order we have static value not the static value but actual column and that column operator and then we have this subquery inside subquery we’re selecting using select row we’re selecting average price from Cars so we’re simply selecting cars which has price below average and the generated SQL looks like this if we want to debug our SQL cies there are couple of functions for that one of them is dump which dumps the cury with its parameters it is going to dump the actual generated SQL as well as the parameters which are bound to this we close in our case we have only one parameter this is 100,000 the second method is DD which dumps the SQL the parameters and it dieses stops the code execution there also exists 2 SQL which dumps the row SQL which has parameters replaced already this does not print separately parameters and separately prepared SQL statement instead it is going to dump a single row SQL parameters already injected inside SQL and the last one is DD row SQL which dumps prints the row SQL and it simply stops the [Music] execution in Lal there are multiple methods to implement pagination the easiest approach involves using paginate method on either the query Builder or on an eloquent cury for example I’m going to delete everything right now and on that cury I’m going to call method called paginate which returns an instance of paginator and I’m going to assign this into cars then when we provide cars and car count right here we can completely remove this car count and we’re going to take care of how car count will be displayed in the search blade in a moment this method the power of this pinate method is that it automatically handles setting the C’s limit and offset according to the page the user is currently viewing by default the C page is identified by the page cury string parameter in the HTTP request Lal detects this value automatically and inserts it into the pagination links generated by the paginator awesome let’s open Search Blade PHP we don’t change the iteration we have these cars as an instance of pator and we leave it like this now let’s search for car count and this place we are going to change we’re going to use cars total method for this and finally let’s render the pagination links on cars I’m going to call method called links so we save it now let’s have a look in the browser we reload the search page and we see found 82 cars which is coming from now paginator total method and if you scroll down below this is the pagination links generated by L this is our hardcoded pagination uh right here it is collapsed uh we’re going to take care of the templating in the next lesson but let’s understand why we see preview and next right here or where are the other links I’m going to inspect this and I’m going to collapse this D and here we have another D which has class hidden by default the default template Lille uses for pagination is taln CSS template and the template has different pagination links on different screen sizes like it has preview and next on small screens and um the full pagination links on large screens and it adds this hidden class on the pagination links on large screen okay so if I remove this hidden class now we see the summary of the pagination as well as the pagination links and again we’re we’re going to work styling of these pagination links in the next lessons now if we Mouse over or if we click any of the links right here we’re going to see in the URL page equals 4 if you scroll down below if we just remove this hidden class once again then we see that now we’re showing 46 to 60 results and the active page is four right here this is what I mentioned LL automatically manages the pagination links based on the Cy parameter and it automatically generates also these links based on the Q parameter and based on the pageat result we can use this next button now we are on page five obviously the summary is hidden but we are vieing different results set and um that is all now I think we can customize the pagination links there are several ways to customize pagination the first way is to provide New View name inside links method right here for example let’s call this pagination the view doesn’t exist that’s why we’re going to get an error the error tells view pagination not found the second way is to not provide pagination here but open up service provider in inside boot Define what should be the default pagination view for this we’re going to use paginator illuminate pagination paginator and on that we’re going to call default view for example pagination again if we save this and if we reload we’re going to still see the same error view pagination not found and the third method is to customize existing TN CSS view now let’s open Terminal and I’m going to execute the following Artisan comment PHP Artisan vendor column publish D- tag equals LEL D pagination we hit the enter now it copied directory from vendor Lal framework illuminate pagination resources views into our resources views vendor pagination okay now let’s have a look inside resources views vendor now we have a pagination folder and there we have bunch of pagination examples for bootstrap 4 five default one this is semantic UI simple buop four simple buop five simple default blate simple tnd blade and tnd blade so the tnd blade is what right now Lal is using by default so we can customize this if I simply remove everything from here and just leave one one one we save this reload the page we are still using the default one so I’m going to comment this out reload the page and if we scroll down below here we see 11 one which is coming from the following tallwind blade PHP so you should choose which approach you want in your desired specific case but right now I’m going to create new view called it pagination and I’m going to use that pagination view instead of modifying the tnd blade PHP and actually we don’t even need that vendor folder right here I just show to you how you can publish it and customize it but you know what I’m going to delete this vendor folder completely let’s uncomment this and set the default view to be pagination and then I’m going to create new view let me create this using Artisan PHP artisan make view agation we hit the enter the view was created actually it created um yeah it created only view yes I thought I created component and I thought that maybe it created the component class as well but no we created just the view so here we have this pagination blade PHP the pagination blade PHP right here accepts an instance of paginator and I am going to Define this right here for my PHP storm so that PHP storm autocompletes all the methods it has slash asterisk two times then I’m going to define the variable paginator is an instance of length a paginator so this is the class uh which instance the paginator is is okay great we can print that right now let’s use Cur braces DD paginator and we’re going to see all the properties of this paginator here we see that so it is an instance of pagination length of we paginator it has its own items let’s expand it it has items it has per page current page path and so on it has options as well and a couple of other things okay now let’s start step by step implementing pagination first let’s open Search Blade and let’s take this nav which is the our pagination template and let’s copy I’m going to copy not cut because I have to modify and then when I Implement everything in the pagination blade then I will delete this now okay so here I have this pagination if I save this right now and reload it we see pagination two time which is fine now let’s start in the following way first we need to check if the paginator has more pages if it doesn’t have more pages we should not even display pagination at all so if it has more pages then we display the pagination okay this is the first step next step is to take care of the links so here we have the this is the first page link this is the previous page link then we have links for each page and then we have next page link and the last page link so the first page link this one and the last page link I’m going to remove okay we’re going to use only preview and next and then the first page link right here will always be displayed and the last page link will also always be displayed that’s why we don’t need a separate like the first page Links at the top and at the beginning okay now what we are doing we need to check let’s use if directive we need to check if paginator is on first page or not if it is on the first page we need to disable the previous page link uh button link whatever okay so if it is on first page then we have to disable this however in else case if it is not on the first page we have to show it let me copy this a and if it is on the first page I am going to remove this hre and I’m going to change this into span now we have span instead of a if it is on the first page link which means that it is disabled however if it is not the first page then right here we have to Output previous page URL now if I save this reload the page we are on the first page and this is actually disabled if I Mouse over we don’t see any horor effect however if I change page into two scroll down below then I Mouse over now it is enabled and it takes me to the first page so that part already works and we can do something similar for the next page as well so right here let’s write if a gator has more pages then we need to display the link and if in else case if it has more pages then we have to display the link if it doesn’t have more pages then we have to display right here span okay let’s format this nicely and I think we are good now let’s reload the page the last page I believe is um how many links do we have okay we can take care of we can check everything at the end I just wanted to check that the last part was working but we can check this everything at the end okay now we need to iterate over the links and render them however there exists a special uh variable already available which is called elements so let’s print elements what is it scroll down below it is an array at the moment it contains only one element inside there and that one element is also array and this is links those are the pagination links so in the nutshell we need to iterate over these pagination links however if we go into another page like page four for example scroll down below okay we have to increase the pagination uh number of pages so instead of 15 right here I’m going to provide five which increases the total number of pages and let me try to access page number seven scroll down below now look at this inside this array elements array we have three elements uh the first one which is array of 10 elements then we have string and then we have second array which has only two elements inside there okay now this is something we need to take care of and we need to handle properly okay let’s go into pagination and let’s start iterating over our elements for each elements as element then we need to check if is string if the element is string it means that it is that three dot here we have this three dot if it is string it is a three Dot and we are going to display it in the following way imagination item let’s remove active class it doesn’t need and right here we’re going to Output the element this is a three dot however if it is not string and if is array elements or element then we have to iterate over element so here I’m using nested Loop for each element is Page and the URL this is how we have those elements right page and URL okay great now I have the page and URL and I’m going to grab this a link and I’m going to put this right here however we also need to check well right here we need to Output p and right here we need to provide URL however we need to also check if the current page is the loop page so that instead of a we’re going to display Span in this case so let’s use the following if if page equals paginator current page here is the current page okay paginator current page will always return what is the current page in the URL query parameter and if it is the same as the page right here in this Loop it means that we are on that page so we’re going to display pan in else case we’re going to display a link and let’s take this and display span right here let’s remove this hre and let’s also add class active okay I think we are done if I scroll down below we can remove this two three four awesome so this is for next this is for current pages and this is for preview I save it I load it and you you see bunch of pages right so we see one two whatever so we have a lot of pages and I believe we can reduce this if we use method on the pagination called on we should provide it here on each side and let’s provide one on each side of the current page on the left and on the right side we want only one page to be displayed so I reload it and now this is how we look it okay so we see the current page is seven um before that we have only six nothing else and on the right side we have only eight if I activate eight I scroll down below then we see nine and seven here and just like this we always see one page before and after then we see three dots and at the end and at the beginning we see uh two Pages now we can open search plate PHP and we can remove this hardcoded now and just like this we have pagination implemented if we want to go to the last page we are going to click um 17 right here then the pagination is gone the pagination is gone because in this pagination blade PHP I used incorrect method has more pages instead of has more pages I should have used has Pages if the paginator has Pages not more pages if I reload right now we see this pagination links the last one is disabled however I noticed something if I Mouse over on this one I see that the link is not correct so let’s open pagination scroll down below and right here we are going to use pator next page URL save reload and this one takes me to the page [Music] 17 now let’s output correct pagination links on my favorite cars page and on my cars page as well let’s open watch list method right here and instead of calling get right here we’re going to call Page inate and let’s provide 15 here so we’re going to display 15 items per page we provide cars let’s open watch list blade PHP here we have this my favorite cars here we iterate over cars and right here we’re going to display page Nation links this is going to be cars links and I’m going to provide also on each side to be one I save it reload it scroll down below okay it is working perfectly so there are totally four pages and that’s why we don’t see more than that but navigating between Pages works perfectly fine great however I also want to display how many cars the user has in its favorite cars section so maybe next to this my favorite cars right here on the right side we can display this pagination summary for this we’re going to do a kind of custom solution here so I’m going to wrap I’m going to introduce a new div let’s give it class CSS class FES uh justify between and items Center okay then we need H2 and then I’m going to check if cars total is more than zero and if in this case we’re going to display a div with class of pagination Das summary I’m going to create paragraph as well and inside the paragraph I’m going to write showing we’re going to use cars first first item item car’s first item then we need two here we need cars last item then we need off and we need cars total results or cars okay we save it we reload the page and here we see showing 31 to 45 of 50 results we know that when we create C data the user has 50 cars in its own watch list in its own favorite cars list that’s why we see totally 50 results if we go on the first page then we see from 1 to 15 of 50 results I believe we don’t need dot at the end but the summary is there which is great so let’s go to search page and I think that we have this pagination set to five and we’re going to increase that so I’m going to search for method search then change this page8 into 15 and then let’s open index and we are going to change this as well if we try to access car right now there are no cars for this specific user user five but let’s use user one reload the page now user one has multiple cars let’s change this g into pinate for 15 now let’s open car index blade PHP scroll down below here we have this nav let’s remove this nav and use cars links and again I’m going to use on each side we need one save and reload scroll down below we see only two links because there are not many cars for that specific user however if we change this page inate from 15 to five we’re going to see much more links right here okay this is great let’s return this back into 15 [Music] leral also supports simple pagination which is simplified version what we already covered for example I’m going to change this pagate into simple paginate save it and if we reload the page we’re going to see just preview and next links we don’t see all the links in the pagination and there are couple of other restrictions regarding the simple pagination simple pagination is more lightweight it um it is less expensive in terms of how many Q are made on the database so if you only need next and preview links then this is what you are going to use also simple Pate doesn’t support total number of Records in your application so we cannot actually use Simple pagate on our watch list because right here we are displaying total number of Records we cannot also use it on search page because we are using 82 or we are using the total number of Records right here okay and on these Pages we need those pagination links so it doesn’t make sense to use the simple paginate in our case but I just wanted to give you information that if you only need next and previous pons and nothing else no total a number of Records no actual links then simple page8 is what you should use if I try to use right now simple paginate on watch list simple paginate we are going to see error let’s go back reload the page and this is the error method total does not exist and this is exactly what I mentioned simple page n doesn’t support that and also the instance um right here the instance of cars is different it is not what we previously covered length paginator it is simple paginator I’m going to Simply undo this but now you know that if you need simple paginate it is there if we are using simple paginate and we also want to customize the pagination buttons these preview and next buttons we can provide again in the same way we can provide view to the links method in the car index here we can provide a new New View file or we can Define uh the default view file for simple pagination and we can do this in the following way paginator default view simple View and provide pagination D simple for example in this case because we are not going to actually customize it I’m not going to create this pagination simple but if you want it you can customize the view in the following way or again you can publish the vendor BL pagination blade files and you can also customize the default simple pagination file from there now I’m going to show you several more cool features regarding pagination first let me reduce these five so that we can have everything easily visible on the page I don’t want too many records next after we call paginate we can call couple of more useful methods such as for example if we want to link each pagination button into a different page we can use method called with path for example if we want to link this to a different page as I mentioned like user SL cars page if we save it reload it then if I Mouse over on this we see that the URL is user cars obviously we don’t have that URL it doesn’t support that URL but uh if you need that it is there and sometimes that P might be very helpful the next one what I’m going to show is to provide additional query parameters such as for example if we have sorting applied on the website and we want to keep that sorting we can provide that sorting uh cury parameter we’re going to learn how to take those cery parameters from requests and reply it right here here but for now let’s just append additional query parameter on the generated links appends associative array sort in price we save it reload it and now if I click on page two we see in the URL sort equals price and then we have page click on page three sort equals price and then we have page three which is pretty cool if we want to save preserve all Q parameters what we currently have in the URL in this case we have to use with quy string so that is going to preserve all the other Q parameters what we have in the URL so reload the page now we have sort query parameter in the URL we navigate between pages and sort will stay there if we add additional query parameter for example name equals Zora hit the enter Then the generated links will also contain name equals zura in the URL that is pretty cool however if I just leave up and sort and comment these with C string and if we have additional CER parameters such as name Zora for example then when we navigate between Pages name zoraa will be lost okay so depending on your use case sometimes you want to preserve all the Q parameters sometimes you only want to provide your own parameter through a pens method and the last method I want to mention is fragment so here I can provide if I have a specific section on my page which has ID cards then I can provide the fragment and generated links will have hasht cars in the URL this is also pretty cool and you can use these methods in combination together like all of them or a couple of them as you want but based on your needs now you know what possibilities there exist in lot of pagination and you can always come back to this video and remember how each of them works if you want to access request data there are two common ways one is to accept request variable in your road call function function or in your controllers method for example in car controller index I’m going to try to accept instance of illuminate HTTP request and LEL will automatically inject that variable because I am accepting it right here and let’s just dump what is that request but the second method to accept the same request variable is through request Global function request like this now if we dump both of them save and reload in the browser we’re going to see the following result so we see request printed right here and the same request printed right here and this request is a very large object containing bunch of properties and even more methods we have information about like cury parameters about uh files cookies headers the request URL method and a lot of other things if we want to to accept the road parameters like we’re accepting right here and we want to also accept request it is common practice to put your query parameters after request or any other variable which will be injected by LEL so here let’s accept request and only after that we should accept car now let’s access the following URL car SL1 and I’m going to also add cury parameters like page equals 1 it doesn’t make any sense providing cury parameters on the um car details page but um I just want to demonstrate you something that’s why that’s let’s put this page equals 1 as well now I’m going to copy this URL and we know this URL how it looks like and the request URL looks like this right now let’s try to access some important information from the request we have this request variable and we can access request path in the following way which will output car /1 we can also access request URL which will give us the entire URL but without Q parameters we can also access request full URL which will provide the entire URL including qer parameters we can also access request method which will in our case gives us get if we have obviously if we submit the form with the post method then the request method will give us Post request class has a lot of methods if you want to test if the request method is get or post we can use method called is Method so this if will be satisfied only if the request method is post we can use the method is XML HTTP request to detect if the request is made using Ajax if you want to test if the specific URL uh satisfies the following pattern like if it starts with admin slash something then we can use method is we can also use root is method which will in this case so the is accepts right here the path and root is accepts the route name so if we have every rad for admin users starting with admin dot then we can check this using rout is if we want to check if the request expects J or not we can use this expects Json method as well now let’s see few more useful methods they are not as commonly used as the above ones which I just mentioned but maybe you need them in certain cases so I’m just going to mention them very quickly full URL with C we already see we already saw what is this full URL but we have full URL with qer which gives us possibility to provide additional qer Pro before retrieving the URL so in our case the URL will look like this so it will have quer parameter sort equals price and it will also have right here page equals 1 I’m going to mention few more methods from request they are not as commonly used as the above ones but maybe you need them in certain cases so I’m just going to me mention them very quickly one of them is fully Ur URL with C we also we already saw what is full URL doing it is returning the entire URL however if you want to return the URL plus add additional query parameters this is exactly what is doing so the output will be that the URL will have page one as well as new query parameter sort equals price we also have similar method called Full URL with without cury let’s say that we want to remove specific cury parameters only one cury parameter or several cury parameters we can do the following in this in which case the URL looks like this the other one I I want to mention is host which will return the host of the URL we also have HTTP host which will return with the port and we also have schema and HTTP host which will return the following response we also have possibility to access specific headers from the request like if I want to get the information about the content type we can do it like this it might output something or it might output null we can uh get the request beer token if we are doing beer authentication in our websites beer token is mostly used when building rest apis so it is not as common for building websites and the last one I want to mention is the IP address so if I save this everything and reload the browser we’re going to see bunch of outputs right here and we see that um the header basically right here from the line 81 is actually null this is null which is the be token but everything else is populated the IP address the host with schema and so on now let’s open Home controller index method and learn how to return responses with different ways and in different formats okay so there are couple of ways to return response and one of them is very primitive we can just return the variable as we want for example we can return hello world as a string from here and if we simply reload the homepage we’re going to see Hello World string right here we also have possibility to return array from here we can put anything in the array the interesting thing is that we can also return collection of models for example if I call car get to return all the cars I reload in the browser we’re going to see Json LL is intelligent enough to detect what we are doing and in this case LL is serializing models orm models car model objects and returning Json if we pretty print this we’re going to see how each model looks like it has all the information that is necessary and that is very useful if we are building apis right we also have possibility to return single object if we call first method right here reload now this is a single car object so that was like implicit returning of response so where we return some object some string some array and Lal converts that into appropriate response however we have dedicated response function as well in this response function we can provide pretty much anything like string array collection object whatever we want let’s provide something like Hello World however this response function has additional features we can provide for example status code like 200 or if we are creating new record and we want to return uh with a different status code like 2011 we can do this from here this is how we can do it now if I reload the page we see Hello World however if we inspect the website and if we check Network and reload once again we’re going to see that the status code is 2011 which typically means that the record is created when building rest apis which is not our case just I wanted to mention how we can return different status codes we can even return 404 reload the page now we see that this is the there is the content but the status code is 404 age not found additionally we can also provide um couple of like um headers on that response for example we can provide like a content type to the application Json uh and we can chain those header um methods like we can do this multiple times this is header one it’s corresponding value one we can have header two and it’s corresponding value two also if you have any questions what is available what methods are available in this response you can always take that response object you can dump this right here which will give you in the browser what type of object response is this is illuminate HTTP response okay and then by the way you can do this on any model in LEL so if you are interested what methods are available there so this is I think very important thing so you can do this in any um Lal class then we open lal’s official documentation lal.com we go in the documentation scroll down below on the left side we click on API documentation and then we can search for that class that class is illuminate HTTP response we can put that class right here it’s going to bring us couple of things like the first one is what we are looking for and right here you’re going to find all the methods like status to get the status code of the response uh content header this is what we right now used we can provide some cookies um get call back throw response micro and there are a couple of other things so you can have a look always at the official documentation what methods are available in your object whether this is response or something else and then you can use those methods we know that we can return array which will be converted into Json however if we want to explicitly specify that we are returning Json on the response we can do the following we can create response and then we can call method called Json and provide data the data can be anything it can be object it can be array it can be collection and let’s put just one two and put the semicolon here and if we reload right now we see here Json if we want to return view but also control the status code of the response as well as what headers we’re going to pass we can do this in the following way we can call response then we can call view provide our view name and then we can provide right here data which will be passed to The View and we can provide then status code whatever we want like uh 44 2011 what whatever okay and then we can provide also additional header or multiple headers we have couple of methods regarding headers like we already cover covered header but we can provide with headers as well which accepts an associative array like this where the key is the header name and the value is going to be the header [Music] value there are several ways to implement redirect in Lal first of all we have to return whatever we are redirecting because redirect constructs response and we have to immediately return that response with the appropriate header so let’s do redirect and we can provide the URL right here for example we want to redirect user to car SLC create we save it and if we reload the homepage we will be redirected into car cre create page now let’s see a different example of redirect I’m just going to call redirect and then I’m going to call root this root accepts a root name so instead of URL we can provide card. create right here and if we try to access homepage again we will be redirected to car create page if we want to redirect user to a UR L which requires parameters we can also provide additional parameters right here for example if we want to redirect user to car show page and we can provide right here ID equals one we save let’s go on the homepage okay uh it is not ID it is called car reload the page and we are redirected to specific car page however we can also provide right here the entire car object on redirect so we can search car first we provide it right here then we try to access the homepage and we will be redirected on the first car page if we want to implement redirect on an external URL then we can call redirect a which means outside of the website https google.com we save it again try to access homepage and we are redirected to google.com now this is the end of this YouTube tutorial if you like the course so far maybe you want to check the entire course on my website the cod.com where you can find much more than what is available on YouTube you can find written lessons quizzes you can find the certificate of the completion the entire deployment section testing section and a lot more thanks for watching and I will see you in the next video

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • PHP Syntax, Variables, Database Insertion, and Login System Tutorial

    PHP Syntax, Variables, Database Insertion, and Login System Tutorial

    The source material offers a tutorial on PHP programming, starting with basic syntax, variables, and data types. It progresses to more advanced topics like superglobals, form handling, and database interaction using prepared statements to prevent SQL injection. The tutorial includes building a calculator and a search system as practical exercises. Arrays, constants, loops, sessions, and error handling are discussed, along with implementing an MVC pattern for better code organization. The material also teaches security practices like sanitizing data and regenerating session IDs. The focus is on creating a login and signup system with error handling and form persistence.

    PHP Study Guide

    Quiz

    1. What is a superglobal in PHP, and why are they useful?

    Superglobals are built-in variables that are always available in all scopes. They provide access to information from various sources like forms, cookies, sessions, and the server environment. They are useful because they allow developers to easily access and manipulate data throughout their PHP applications without explicitly passing them as arguments.

    2. Explain the purpose of the $_FILES superglobal.

    The $_FILES superglobal is used to retrieve information about files uploaded through an HTML form. It provides details like the file size, name, temporary location, and file type, enabling PHP to validate and handle uploaded files effectively. This allows developers to manage file uploads, check file sizes, and verify file extensions.

    3. Describe how cookies work and how the $_COOKIE superglobal is used.

    Cookies are small text files that a server embeds on a user’s computer to store information. The $_COOKIE superglobal is used in PHP to access the values stored in these cookies. Developers can retrieve information about user preferences or track user activity using cookies and the $_COOKIE superglobal.

    4. What are sessions, and how is the $_SESSION superglobal used to manage them?

    Sessions are a way to store information about a user on the server-side across multiple requests. The $_SESSION superglobal is used in PHP to store and retrieve session variables, allowing developers to maintain user-specific data and state during a browsing session. This is important for login and other user management features.

    5. What is the purpose of the concatenation operator (.) in PHP?

    The concatenation operator (.) is used to join two or more strings together in PHP. It combines variables and literal strings to create a single, unified string. Concatenation allows developers to dynamically build strings by combining different pieces of data.

    6. Explain the difference between = (assignment), == (comparison), and === (identical) operators in PHP.

    The = operator is used to assign a value to a variable. The == operator is used to compare two values for equality, without considering their data types. The === operator is used to compare two values for identity, meaning they must be equal in both value and data type.

    7. Describe what operator precedence is and how it affects the evaluation of expressions in PHP.

    Operator precedence determines the order in which operators are evaluated in a PHP expression. Operators with higher precedence are evaluated before those with lower precedence. Parentheses can be used to override the default precedence and control the order of evaluation.

    8. How do you create an if statement in PHP, and what is its purpose?

    An if statement in PHP is created using the if keyword, followed by a condition in parentheses. The code within the if statement’s curly brackets is executed only if the condition is true. if statements allow developers to execute different code blocks based on certain conditions.

    9. Explain the purpose of a for loop and how it is structured in PHP.

    A for loop in PHP is used to execute a block of code repeatedly for a specified number of times. It is structured with three parts inside the parentheses: initialization, condition, and increment/decrement. The initialization sets a starting value, the condition determines when the loop stops, and the increment/decrement changes the loop counter with each iteration.

    10. How do you start a session in PHP, and why is it important to do so?

    A session is started in PHP using the session_start() function. It’s important to start a session at the beginning of any PHP script where you intend to use session variables to store user-specific data and maintain state. By starting the session the server is able to connect all the activity of the client to a specific user ID.

    Essay Questions

    1. Discuss the importance of data validation and sanitization in PHP web applications. Explain how superglobals like $_POST and $_GET are used to retrieve user input, and describe common techniques to protect against security vulnerabilities such as SQL injection and cross-site scripting (XSS).
    2. Explain the different types of operators available in PHP, including arithmetic, assignment, comparison, logical, and string operators. Provide examples of how each type of operator is used in practical PHP code.
    3. Describe the different control structures available in PHP, such as if, else if, else, switch, for, while, and foreach. Explain how each control structure is used to control the flow of execution in a PHP script, and provide examples of real-world scenarios where each control structure would be useful.
    4. Explain the concepts of local, global, and static scope in PHP. Describe how variables are accessed within different scopes, and discuss the implications of using the global keyword.
    5. Describe the process of connecting to a database using PHP Data Objects (PDO). Explain how to prepare and execute SQL statements, bind parameters, and retrieve data from the database. Discuss the importance of using prepared statements to prevent SQL injection attacks.

    Glossary of Key Terms

    • Superglobal: Predefined variables in PHP that are always accessible, regardless of scope.
    • Cookie: A small text file that a web server stores on a user’s computer.
    • Session: A way to store information about a user on the server-side and remember it across multiple pages of a website.
    • Concatenation: The process of joining two or more strings together.
    • Operator Precedence: The order in which operators are evaluated in an expression.
    • Assignment Operator: Used to assign a value to a variable (e.g., =).
    • Comparison Operator: Used to compare two values (e.g., ==, !=, >, <).
    • Identical Operator: Used to compare two values to see if they are the same and are of the same type (e.g., ===, !==).
    • If Statement: A conditional statement that executes a block of code if a specified condition is true.
    • Else If Statement: A conditional statement that extends an if statement to execute a different block of code if the initial condition is false and a new condition is true.
    • Else Statement: A conditional statement that executes a block of code if the if condition is false.
    • For Loop: A control structure that executes a block of code a specific number of times.
    • While Loop: A control structure that repeatedly executes a block of code as long as a specified condition is true.
    • Incrementing: Increasing the value of a variable, often by one (e.g., ++).
    • Decrementing: Decreasing the value of a variable, often by one (e.g., –).
    • Control Structure: A statement that controls the flow of execution in a program.
    • Variable Scope: The region of a program where a variable can be accessed.
    • Local Scope: Variables declared within a function or block of code that are only accessible within that function or block.
    • Global Scope: Variables declared outside of any function or block, accessible throughout the script.
    • Static Scope: A static variable retains its value between function calls.
    • Constant: A value that cannot be changed during the execution of a script.
    • Database: A structured collection of data stored in a computer system.
    • SQL: Structured Query Language, a standard language for managing and manipulating databases.
    • Data Type: The type of data that can be stored in a variable or database column (e.g., integer, string, date).
    • Varchar: A variable-length string data type in databases.
    • Integer: A whole number without any fractional part.
    • Float: A number that contains a decimal point
    • Signed/Unsigned: Specifies whether an integer data type can store negative values (signed) or only positive values (unsigned).
    • Auto-Increment: A feature in databases that automatically assigns a unique, incrementing value to a column, typically used for primary keys.
    • Primary Key: A column in a database table that uniquely identifies each row.
    • Foreign Key: A column in a database table that refers to the primary key of another table, establishing a relationship between the two tables.
    • SQL Injection: A security vulnerability where malicious SQL code is inserted into a database query.
    • Hash: A one-way function that converts data into a fixed-size string of characters, used for security purposes.
    • Salt: A random string added to a password before hashing to increase security.
    • PDO (PHP Data Objects): A PHP extension that provides a consistent interface for accessing different databases.
    • DSN (Data Source Name): A string that contains the information required to connect to a database.
    • CRUD: An acronym referring to the basic database operations: Create, Read, Update, and Delete.
    • Model: A class or component responsible for interacting with the data storage, such as a database.
    • View: The part of an application that is responsible for presenting data to the user.
    • Controller: A class or component that handles user requests and interacts with the model and view to generate a response.

    PHP Fundamentals and Database Interaction Overview

    Okay, I have reviewed the provided text and created a briefing document summarizing the key themes and ideas.

    Briefing Document: PHP Fundamentals and Database Interaction

    Document Purpose: To provide a consolidated overview of PHP concepts covered in the provided source material, focusing on superglobals, operators, control structures, functions, data types for databases, SQL operations, sessions, hashing, and basic MVC principles with error handling.

    I. Superglobals:

    • Definition: Superglobals are built-in variables that are always available in all scopes.
    • Examples:$_FILES: Used to grab information about files uploaded through an HTML form. “Using this super Global here just kind of like allow for us to grab information about files that the User submitted using a HTML form” This is useful for file size checks and extension validation for security.
    • $_COOKIE: Used to store or retrieve information from cookies stored on the user’s computer.
    • $_SESSION: Used to store or retrieve information from session variables, which are stored on the server. Example: “I could for example create a dollar signore session and inside the bracket I’m going to make sure to include a name for this session variable here so I could call this one username”. Sessions are useful for storing user-specific data like usernames.
    • $_ENV: Contains environment variables, which are sensitive data not meant to be accessible to users or other environments. “Environment variables are essentially very sensitive data that you want to have inside the particular environment that the user is working in so you know data that should not be accessible to either the user or other environments”
    • $_SERVER and $_GET are to be discussed in later videos.

    II. Operators:

    • String Operators: Used to concatenate strings. The . operator is used for concatenation: variable C = variable a . ” ” . variable b;.
    • Arithmetic Operators: Basic mathematical operators like +, -, *, /, % (modulo), and ** (exponentiation).
    • Operator precedence can be controlled using parentheses. Example: (1 + 2) * 4.
    • Assignment Operators: Assign values to variables. = assigns a value. +=, -=, *=, /=, etc., are shorthand for performing an operation and assigning the result back to the variable. Example: variable a += 4 is equivalent to variable a = variable a + 4.
    • Comparison Operators: Used to compare values.
    • ==: Checks if two values are equal (without considering data type).
    • ===: Checks if two values are equal and of the same data type.
    • !=: Checks if two values are not equal.
    • !==: Checks if two values are not equal or not of the same data type.
    • <, >, <=, >=: Less than, greater than, less than or equal to, greater than or equal to.
    • Logical Operators: Used to combine multiple conditions.
    • && (AND): Both conditions must be true.
    • || (OR): At least one condition must be true.
    • Alternative symbols for AND and OR: and , or (less common).
    • Incrementing/Decrementing Operators: Increment (++) or decrement (–) a variable’s value. variable a++ increments after the current expression is evaluated, while ++variable a increments before.

    III. Control Structures:

    • Conditional Statements: Used to execute different blocks of code based on conditions.
    • if: Executes a block of code if a condition is true.
    • else if: Checks another condition if the previous if condition is false. “the else if statement basically is just a chain that we chain behind our if statement and says okay so if the first if condition is not met then jump down and check for the next one in the chain list”
    • else: Executes a block of code if none of the previous if or else if conditions are true.
    • Switch Statements: Provides an alternative to multiple if/else if statements, especially when comparing a single variable against multiple possible values.
    • Match (PHP 8): A newer feature similar to switch, providing a more concise syntax for value matching.
    • Loops: Used to repeat a block of code multiple times. “a loop is a way for us to spin out a blocker code multiple times by just writing one block of code”
    • for: Repeats a block of code a specific number of times. Requires initialization, condition, and increment/decrement expressions. “a for Loop is a very basic way for us to spit something out depending on numbers”
    • while: Repeats a block of code as long as a condition is true. “as long as this variable here is equal to true then I want to Loop something out”

    IV. Functions:

    • Definition: Reusable blocks of code. “A function is essentially just a blocker code that performs a specific task and then if you want to perform the same task that function that perform then you simply go and reuse the code”
    • Scope:Local Scope: Variables declared inside a function are only accessible within that function. “as soon as we declare a variable inside a function it is locally scoped within that function so we can only access it within my function”
    • Global Scope: Variables declared outside functions are accessible globally, but require special handling to be used inside functions (e.g., using the global keyword or passing as parameters).
    • Static Variables: Static variables inside functions retain their value between function calls.
    • Parameters and Arguments: Data can be passed into functions as parameters, allowing functions to operate on different data.
    • Return Values: Functions can return values, which can then be used elsewhere in the code.

    V. Constants:

    • Definition: Named values that cannot be changed after they are defined. Defined using the define() function. “When you create a constant that you use capitalized lettering because it shows other programmers that this is a constant so it’s just kind of a visual indicator for other programs to know that this is a constant”
    • Constants are in the global scope.
    • Good practice to define all constants at the top of the script.

    VI. Database Interaction (MySQL):

    • Data Types: Used to define the type of data that can be stored in a database column. “each column inside a table needs to be defined with a data type in order to tell our database what kind of data do we expect to be put inside this column here”
    • INT: Integer numbers. A common device width to define is 11. “a typical thing that we do when it comes to just making websites is we just Define 11 in here as a default”
    • BIGINT: Large integer numbers.
    • FLOAT: Floating-point (decimal) numbers.
    • DOUBLE: High-precision floating-point numbers.
    • VARCHAR(size): Variable-length strings. The size parameter specifies the maximum number of characters.
    • TEXT: Large text strings. ” using text for for example comments and blog post and that kind of thing is kind of what we need to use this data type for”
    • DATE: Dates (YYYY-MM-DD).
    • DATETIME: Dates and times (YYYY-MM-DD HH:MM:SS).
    • Signed and Unsigned: For integer types, SIGNED allows negative values, while UNSIGNED only allows positive values, effectively doubling the maximum positive value that can be stored.
    • SQL Operations:CREATE TABLE: Creates a new table.
    • INSERT INTO: Inserts data into a table.
    • SELECT: Retrieves data from a table.
    • UPDATE: Modifies existing data in a table.
    • DELETE FROM: Deletes data from a table.
    • Primary Key (ID): A unique identifier for each row in a table. “basically whenever we have a table we want to make sure that we can find data inside this table very easily which means that having a ID for all the different rows we have inside the table is going to make it a lot easier to find it”
    • AUTO_INCREMENT: Automatically assigns a unique, incrementing value to the ID column for each new row. “Auto increment which is a type of column that’s going to automatically increment or increase the number one so we can easily find things using ID so that’s just for example to make it easier to find different posts inside our website”
    • Important: Do not manually change primary key IDs after they have been assigned as this will break relationships with data in other tables.
    • Database Connection (PDO): PHP Data Objects (PDO) is a consistent way to access databases. “PHP data objects is a way for us to create a database object when we want to connect to a database so basically we turn the connection into a object that we can use inside our phsp code and just refer to that object whenever we want to connect to a database”
    • Data Source Name (DSN): A string that specifies the database driver, host, and database name.
    • Try/Catch Blocks: Use try/catch blocks to handle database connection errors.
    • Prepared Statements: “prepared statement is going to go in and and just pre compile the query we have so so therefore the code is going to execute a lot faster because we’re basically telling it hey in the future we we need you to run this query but we are just not going to insert the data inside just yet we’re going to do that later which means that it’s going to pre compile everything and have it all prepared and ready when we actually finally do pass in all the bits of data” Helps prevent SQL injection attacks.

    VII. Sessions:

    • Definition: A way to store information about a user across multiple pages. “Sessions are basically information that you store on a user that has to be remembered across multiple pages”
    • session_start(): Starts a session. Must be called at the very beginning of the script. “So right now we don’t have a session going on inside ex example so we could actually go in and copy paste this information paste it over here just to make sure we have a session started on both pages and then with this we’re now going to go back inside the website refresh it”
    • $_SESSION: A superglobal array used to store and retrieve session variables.
    • Session ID Cookie: Stored on the user’s browser to identify the session.

    VIII. Hashing:

    • Definition: One-way algorithm that converts data into a fixed-length string. Used to securely store passwords. “hashing is whenever we perform a oneway hashing algorithm on a plain piece of text for example a password and then we basically convert it into a fixed length string that you can’t really look at and tell what exactly is this supposed to be”
    • Hashing algorithms are designed to be irreversible and computationally expensive.
    • Salt: A random string added to the data before hashing to increase security. “Essentially a salt is a random string of text that is going to be included inside the data that you provide the hashing algorithm so it’s going to mix the salt together with the text that you provided it and then it’s going to Hash it afterward to create a more unique and even harder to crack hashing algorithm to make it even stronger”
    • Pepper: A secret string added to the data before hashing (similar to a salt, but not randomly generated). “And essentially we’re just going in and we’ll combine in these three pieces of data up here so we have the sensitive data that the user gave us inside whatever input we have inside the website uh we do also have a piece of data called a salt and then we also do have our pepper”

    IX. Basic MVC (Model-View-Controller) Principles & Error Handling

    • Structure: The material references separating code into different files (e.g., including a “hash_password.in.php” file in an “includes” folder). It also hints at the idea of a Controller component handling user input and calling on Models (presumably for database interaction).
    • Error Handling: The code demonstrates basic error handling, such as validating user input and using if statements to check for errors. It also demonstrates a basic error handling setup where an empty array is used to store error messages that can then be displayed to the user.

    Key Takeaways:

    • PHP provides a variety of superglobals for accessing different types of data.
    • Understanding operators is essential for manipulating data and creating complex logic.
    • Control structures are critical for controlling the flow of execution in PHP scripts.
    • Functions are essential for code reusability and organization.
    • Securely storing passwords using hashing with salts is a must.
    • Basic MVC ideas such as utilizing controller functions can help to break code up and make it more maintainable.
    • Proper database interaction requires understanding data types and SQL operations.

    This document provides a high-level summary. Deeper dives into each of these topics can be found in the original source material.

    PHP Superglobals, Operators, Control Structures, and Variable Scope

    Superglobals, Forms, and Data Handling

    • What are superglobals in PHP, and why are they important to understand?
    • Superglobals are built-in variables that are always available in all scopes of a PHP script. They provide access to information about the server, the environment, and the user. Understanding them is important because they are essential for handling data submitted through forms ($_POST, $_GET, $_FILES), managing sessions and cookies ($_SESSION, $_COOKIE), accessing server information ($_SERVER), and more. They act as the primary interface between the PHP script and the external world.
    • How can I prevent users from crashing my website by uploading very large files?
    • PHP provides the $_FILES superglobal, which contains information about uploaded files, including their size. You can use this information to validate the file size before saving the file to the server. By checking if the file size exceeds a certain limit, you can prevent excessively large files from being uploaded, thus protecting your website from crashes or performance issues.
    • What are cookies and sessions, and how are they managed in PHP?
    • Cookies are small files that a server embeds on a user’s computer to store information. PHP provides the $_COOKIE superglobal to access and manage cookies. Sessions are a server-side way to store information about a user across multiple requests. PHP uses the $_SESSION superglobal to access and modify session variables. You must call session_start() at the beginning of each script where you want to use sessions. Closing the browser typically ends the session, though this can be configured.
    • How can I use PHP to retrieve data submitted through an HTML form?
    • When a user submits an HTML form, the data is sent to the server using either the GET or POST method. In PHP, you can access this data using the $_GET and $_POST superglobals, respectively. For example, if a form has a field named “username,” you can access the submitted value using $_POST[‘username’]. Always sanitize and validate user input to prevent security vulnerabilities.
    • What are operators in PHP, and what are some common types?
    • Operators are symbols or keywords that perform operations on one or more values. Common types include:
    • String Operators: Used to concatenate strings (e.g., .).
    • Arithmetic Operators: Used for mathematical calculations (e.g., +, -, *, /, %, **).
    • Assignment Operators: Used to assign values to variables (e.g., =, +=, -=, *=, /=).
    • Comparison Operators: Used to compare values (e.g., ==, ===, !=, !==, <, >, <=, >=).
    • Logical Operators: Used to combine or modify boolean expressions (e.g., && (and), || (or), ! (not)).
    • Incrementing/Decrementing Operators: Used to increase or decrease a number (++, –).
    • What are control structures in PHP, and why are they important?
    • Control structures are language constructs that control the flow of execution in a PHP script. They allow you to make decisions, repeat code blocks, and execute different code paths based on conditions. They are fundamental for creating dynamic and interactive websites. Key examples are:
    • If/Else/Elseif statements: Conditional execution of code blocks.
    • Switch statement: Multi-way branching based on a value.
    • Loops: Repeated execution of code blocks (e.g., for, while, foreach).
    • What are the key differences between the local, global, and static variable scopes in PHP?
    • Local Scope: Variables declared within a function have local scope and are only accessible inside that function.
    • Global Scope: Variables declared outside functions have global scope and are accessible throughout the script, except inside functions, unless explicitly accessed using the global keyword or the $GLOBALS superglobal.
    • Static Scope: Static variables declared within a function retain their value between function calls. They are initialized only once and persist across multiple invocations of the function.
    • What are constants in PHP, and how do they differ from variables?
    • Constants are named values that cannot be changed after they are defined. They are defined using the define() function or the const keyword (in PHP 5.6+). Constants are always in the global scope and can be accessed from anywhere in the script, including inside functions. Unlike variables, constants do not require a dollar sign ($) prefix. It is convention to name constants using capitalized letters to distinguish them from variables. Constants are useful for storing values that should not be modified, such as configuration settings or mathematical constants (e.g., PI).

    PHP Syntax Fundamentals

    PHP syntax dictates how to write PHP code without generating errors. Here’s an overview of key aspects:

    • Opening and Closing Tags: PHP code must be enclosed within opening and closing tags, such as <?php and ?>. The PHP parser searches for these tags to identify PHP code within a page. You can embed PHP code directly within HTML using these tags.
    • Semicolons: Each PHP statement should end with a semicolon (;), which signals the end of the statement to the PHP parser. However, the closing PHP tag ?> automatically implies a semicolon, so the last statement before the closing tag doesn’t strictly need one. It is recommended to include semicolons after every statement for consistency and to prevent errors.
    • Pure PHP Files: When a file contains only PHP code, the closing tag can be omitted. This is the recommended practice to avoid potential issues caused by accidental whitespace or new lines after the closing tag.
    • Embedding PHP in HTML: There are two ways to embed PHP inside HTML:
    • You can directly embed PHP code within HTML tags, echoing HTML elements from within PHP code.
    • Alternatively, you can split up a condition using opening and closing PHP tags around the beginning and closing of the statement to allow HTML to be written as HTML.
    • Comments: It is good practice to use comments in PHP code to explain what the code does. Comments are not outputted in the browser.
    • Single-line comments can be created using two forward slashes (//).
    • Multi-line comments can be created by enclosing the comment between /* and */.

    PHP Variables: Declaration, Data Types, and Superglobals

    Variables in PHP are named memory locations that store data. They are essentially labeled boxes that hold data, making it easier to refer to and handle data within code. In PHP, a variable is declared by using a dollar sign ($) followed by the variable name.

    Here’s a detailed overview:

    • Declaring Variables: To declare a variable, a dollar sign ($) is used, followed by the chosen name for the variable. For example, $name declares a variable named “name”.
    • Variable Names:
    • Variable names must start with a letter or an underscore.
    • After the first character, variable names can contain letters, numbers, or underscores.
    • It’s customary to begin variable names with a non-capitalized letter, and subsequent words in the name should start with a capitalized letter (e.g., $fullName).
    • Assigning Data: Variables are assigned data using the assignment operator (=). For example, $name = “Danny Crossing”; assigns the string “Danny Crossing” to the variable $name.
    • Referring to Variables: To access the data stored in a variable, refer to the variable by its name, including the dollar sign. For example, echo $name; would output the value of the $name variable.
    • Variable assignment: It is possible to assign the value of one variable to another. For example, $test = $name; will assign the value of the variable $name to the variable $test.

    Data types that can be stored in variables:

    • Scalar Types: These variables contain only one value.
    • String: Represents a piece of text. For example, $string = “Daniel”;.
    • Integer (int): Represents a whole number. For example, $number = 123;. Note that integers should not be enclosed in double quotes; otherwise, they will be interpreted as strings.
    • Float: Represents a number with decimal points. For example, $float = 256.78;.
    • Boolean (bool): Represents a true or false value. The values can be true or false. In certain contexts, 1 is evaluated as true and 0 as false.
    • Array Type: Arrays store multiple pieces of data within a single variable. For example, $names = array(“Daniel”, “Bella”, “Feta”);.
    • Arrays can be created using the array() construct or with square brackets []. The square bracket syntax requires PHP version 5.4 or higher.
    • Object Type: An object is a data type.
    • Superglobals: Superglobals are built-in variables that are always accessible, regardless of scope. Superglobals are accessed using a dollar sign $ followed by an underscore _ and a capitalized word. Examples include:
    • $_SERVER: Contains information about the server environment.
    • $_GET: Used to collect data from the URL.
    • $_POST: Used to submit data.
    • $_REQUEST: Used to collect data after form submission.
    • $_FILES: Used to retrieve data about files uploaded to the server.
    • $_COOKIE: Used to retrieve values from cookies.
    • $_SESSION: Used to manage user session data.
    • $_ENV: Used to access environment variables.

    PHP Superglobals: Understanding and Usage

    Superglobals are built-in variables in PHP that are always accessible regardless of the scope. Unlike regular variables, which may have limited accessibility based on their scope (e.g., local variables within a function), superglobals can be accessed from anywhere in the code.

    Key aspects of superglobals include:

    • They are predefined variables within the PHP language.
    • They are automatically available without needing to be explicitly declared or defined.
    • They can be accessed from any part of a script, including within functions and classes.
    • Superglobals are referenced by creating the dollar sign $ but then creating a underscore _ followed by a capitalized word.

    Here’s a list of common superglobals in PHP:

    • $_SERVER: This superglobal holds information about the server environment, such as server names, document roots, and request methods. For instance, $_SERVER[‘DOCUMENT_ROOT’] can provide the root directory of the current script.
    • $_GET: Used for collecting data submitted via the URL. Data is appended to the URL as name-value pairs.
    • $_POST: Used for collecting data submitted through HTML forms using the POST method. This method is commonly used for submitting sensitive or large amounts of data.
    • $_FILES: Used for accessing data related to files uploaded to the server. It allows you to retrieve information such as file size, name, and extension.
    • $_COOKIE: Used for retrieving values stored in cookies. Cookies are small files that the server embeds on the user’s computer to store information about their activities.
    • $_SESSION: Used for managing user session data. Sessions allow you to store information about a user that persists across multiple pages of a website.
    • $_ENV: Used to access environment variables. Environment variables are often used to store sensitive data that should not be directly accessible to users.
    • $_REQUEST: Used to collect data after HTML form submission.

    HTML Forms: Data Collection, Submission, and Security

    Here’s information about HTML forms, based on the provided sources:

    • HTML forms are used to collect data from users.
    • Forms can include various input elements like text fields, drop-downs, and buttons.
    • Key attributes of the <form> tag:
    • action: Specifies where the form data should be sent for processing. This is typically a URL or a PHP file.
    • method: Defines the HTTP method used to submit the form data. Common methods are GET and POST.
    • Form Input Attributes:
    • name: A reference name is needed so the data can be grabbed once the data is sent to the next page. When grabbing data using the name attribute, you grab whatever the user input.
    • value: With drop-down menus, the data selected when referencing the name will be the data inside the value attribute.
    • Labels: Use labels to improve form accessibility, especially for users with disabilities.
    • Submitting Data:
    • GET Method: Submits data via the URL, making it visible in the address bar. It is typically used to get data from a database.
    • POST Method: Submits data in the body of the HTTP request, so it is not visible in the URL. It is typically used to submit data to a website or database. It’s also useful for submitting more sensitive data.
    • Superglobals: $_POST is a PHP superglobal used to collect data from forms submitted with the POST method.
    • HTML Special Characters: When having anything shown inside the browser using PHP, escaping it using HTML special characters is important to prevent users from injecting code inside the browser. There are a couple of different ways to sanitize data, depending on the purpose.
    • HTML Entities: HTML entities can be used to sanitize data.
    • Form Validation:
    • Required Attribute: Though it can be added to form inputs, it is not secure to rely on HTML, CSS, or JavaScript for security.
    • PHP for Security: Server-side security (using PHP) is essential for validating and sanitizing user inputs to prevent malicious attacks.
    • Error Handling: When creating any sort of error handlers inside a script, it can be checked if any of the inputs have been left empty when the user submitted the form. You don’t want the user to be able to submit the form if there is no data to submit. It needs to require that they submit all the data.
    • Action Attribute: When submitting a form and sending the data to the same page that the user is on, one way to do it is to open PHP tags inside the action, then include the server super global and target PHP self. It is important to note that this is prone to hacking.
    • File Uploads: The $_FILES superglobal is used when a HTML form allows users to submit files.

    Databases and Queries: A Quick Reference

    Here’s an overview of databases and queries, based on the provided sources:

    • Databases:
    • A database is used to save user information, and is used whenever a website has to remember something.
    • A database is made up of tables where similar information is gathered. Tables give the data structure.
    • Each piece of data corresponds to a column. Each entry (or data) corresponds to a row.
    • Relational Database Management System (RDBMS):
    • There are many different types of database systems, called RDBMS.
    • MySQL is a commonly used database system, especially with PHP. MySQL servers are not the same as MySQL PHP functions.
    • Setting up a Database
    • XAMPP includes both Apache and MySQL servers. The Apache server is the web server where PHP runs. The MySQL server is the actual database server.
    • To manage a database, use a dashboard like PHPMyAdmin.
    • To create a database, select ‘databases’ and type in a name.
    • SQL:
    • SQL (Structured Query Language) is used to manipulate databases. With SQL, you can create tables, insert data, select data, or delete data.
    • To use SQL, make sure the correct database is selected. Then, click the SQL tab.
    • There are typical SQL lines of code that are used repeatedly.
    • It is useful to practice SQL directly inside a database.
    • Data Types:
    • When inserting data, each column inside a table must be defined with a data type. This tells the database what kind of data to expect.
    • Common data types include INT for integers, VARCHAR for character strings, DATE, and DATETIME.
    • INT stores numbers. BIGINT stores larger numbers.
    • VARCHAR stores strings. You need to define a parameter for the length of the string.
    • TEXT stores long text.
    • DATE stores year, month, and day. DATETIME stores date and time.
    • Queries:
    • A query is a request for data from a database.
    • CREATE TABLE: Used to create a new table in the database.
    • INSERT INTO: Used to insert data into a table.
    • SELECT: Used to select data from a table.
    • UPDATE: Used to modify existing data in a table.
    • DELETE FROM: Used to delete data from a table.
    • Prepared Statements:
    • Prepared statements prevent users from writing SQL code directly inside an input.
    • The query (SQL code) is sent to the database first. Then, data submitted by the user is bound and sent to the database afterward. Because the query is separate from the data, SQL code will not impact the query.
    • Prepared statements can use either named parameters or non-named parameters.
    • With non-named parameters, user data is replaced with question marks.
    • With named parameters, each piece of user data is replaced with a name. With name parameters, the order does not matter.
    • Joins:
    • A join is used to select data from two or more tables at the same time.
    • Types of joins include INNER JOIN, LEFT JOIN, and RIGHT JOIN.
    • With INNER JOIN, data is selected from two tables that have matching data.
    • With LEFT JOIN, the table on the left is the primary table. Even if a user does not have a comment, all the users will still be shown.
    • With RIGHT JOIN, the comments on the right side are the focus.
    🔥 PHP Full Course 2025 – Learn PHP from Scratch! 🚀
    PHP Mastery Course: From Basics to Advanced with Practical Projects & Exercises in One Video.

    The Original Text

    so welcome to a new version of my PHP course now in this video we’re going to talk a bit about what exactly PHP is and what you’re going to learn in this course here and why it’s going to be a little bit better structured than the previous one I have on the channel so let’s go and talk a bit about what exactly this course is and who it is made for now here at the beginning it is going to be a beginner friendly course so to speak my main goal is to make sure that people has never done PHP before and might find a little bit intimidating because they’ve never done a programming language before will be able to get into this course here and don’t find it overwhelming so that is going to be my main priority as we going on with these lessons here it is quite normal to find PHP intimidating if this is your first programming language so don’t be scared that this is going to be overwhelming cuz I will try to make it as understandable as possible for people who has never done any sort of programming before with that said of course this course is going to get more and more complicated and more and more advanced as we go on but here in the beginning it is going to be very beginner friendly so with that said let’s go and talk a bit about what exactly PHP is and what you can use it for now PHP stands for hypertex preprocessor actually it stands for PHP hypotext pre-processor it is what you call a recursive acronym when you have the word itself inside its own spelling now PHP is a language that are used mainly for making websites but it can be used for other things as well like for example creating a desktop application if you know how to do it but it is something that is more commonly used for web developments one of the reasons it’s so easy to use for web development is because you can very easily embed it into the HTML when you start creating a website using HTML and CSS and it is also a very easy language to learn compared to many other programming languages out there and one of the things about PHP you may not know is that is actually considered a serers side language meaning that the phsp you’re going to program is going to run on the server of your website but not actually inside the client which is inside the browser so languages such as HTML CSS and JavaScript which actually runs inside the browser these languages run differently than PHP which is actually running on the server instead this means that when you’re writing PHP inside your website you can’t actually see the code inside the browser which you can when it comes to for example HTML CSS and JavaScript so PHP is completely hidden since it runs in the server instead so with all that said let’s go and talk about the elephant in the room is PHP dead because when it comes to websites on the internet right now currently in 2023 we have more than 78% of websites out there that we know of that are using PHP as their backend language this means that PHP is currently massively dominating when it comes to the backend languages that we use for websites out there today but one of the reasons I do often hear that PHP is a dead language and you shouldn’t use it anymore has a lot to do with the fact that PHP is only used mainly for web development whereas other languages such as python is used for all sorts of things including you can also use Python for web development so if you were to take the Python programming language and say okay how many people are using python nowadays versus people who are using phsp then python is going to have much higher numbers however these are actually not the numbers you should look at since we need to look at how many people are using python 4 when it comes to web development versus people who use PHP for web development and when it comes to this PHP is much much much higher numbers than when it comes to python it pretty much BS down to the fact that some people on the internet don’t like PHP because it’s more specifically suited towards web development whereas a language like python can be used for many other things besides web developments so if you’re sitting there you want to learn specifically web development then PHP is by far the language that I would recommend using when it comes to web development of course python is also an amazing language to use for web development if you want to use D Jango as a framework but PHP is just more the more popularly used language when it comes to specifically web development so just to mention a couple of websites that do actually use PHP we do have Facebook which uses a version of phsp we do also have Wikipedia canvas is also a very popular website that uses PHP and then we do also have WordPress which is not really a website but more of a Content management system which is also the most popular content management system out there today so if you plan on using WordPress at some point in the future I do recommend that you learn PHP since it is what they use when it comes to plugins and just the the WordPress CMS system in itself learning PHP is definitely something that I highly recommend if you’re just planning on going into web development as a web developer but now let’s go and talk a bit about Theory versus practice when it comes to implementing PHP inside your website because when it comes to learning any sort of programming language like for example PHP then things will be a little bit slow in the beginning it is just a very typical thing when you learn a new programming language that you have to learn all the theory first and then later on you start getting into some more practical examples so you can actually see oh okay so that’s how we use it inside for example our website I will try to include as many examples as I can as we go throughout this series but it is important to know that there will be a lot of theory here in the beginning so you don’t need to worry too much about it if you’re looking at these lessons at the beginning and thinking to yourself okay so I can’t really see how this code that we’re learning has to be used inside a real website just keep following the lessons at at some point you will get to a point where you get a realization of oh so this is how we need to use everything everything that we learned inside a real website but now let’s go and talk a bit about how I am going to approach this course here it is my experience that people become very easily overwhelmed when it comes to teaching a backend programming language like PHP so it’s important to split things up into multiple lessons to make sure that people can digest it a lot easier that being said when it comes to teaching PHP you can roughly divide PHP into three different categories when it comes to learning PHP as a language you have the actual PHP language which is just learning PHP and how to write it and how to Output things inside your website you know just plain PHP programming and how to actually write things that do something inside your website then after learning PHP you’re going to start learning about databases and how to actually manipulate databases by pulling out data or inserting data inside the database a database is a place where we store information for example if you want your website to remember things about your users and then the last thing you need to learn about is security Now security is a huge when it comes to PHP since you are essentially manipulating data from the user and a lot of that data is going to be sensitive data so it is important to take security very serious when it comes to PHP because it is something that is crucial to learning PHP and you can’t learn PHP and just go into it with the mindset of okay so security is just kind of like like an offside thing security is something you need to do and it is something you need to look into at some point and it is something that we will start looking into a little bit further into the course later near the end I do want to point out here that I do know a lot of people think it’s very important that you teach all security at the beginning when a person starts learning PHP but in my experience a lot of people will get overwhelmed if you teach everything when it comes to security at the same time as you also try to teach a complete beginner the basics of PHP so in order to digest things a lot easier we’re just going to focus on phsp then later on we’re going to start learning how you need to implement security into the PHP you already learned of course there is going to be moments where we can’t avoid talking about security and when those moments come we will of course talk about some security but any security that isn’t directly related to any sort of lesson that we’re learning about is not something we’re going to talk about until later on so with that said let’s talk about some frequently asked questions since I do want to answer some of the questions I have received in the past in my comment section will I include documentation for each lesson yes there will be documentation for each of the lessons that I teach inside the description of the video so if you want to Deep dive a little bit further into the lesson that we’re learning about then you can of course look into that documentation and learn a little bit further about what we’re learning will we do procedural or objectoriented PHP programming now here at the beginning we will focus on doing procedural PHP programming since I do know that it’s easier to get people into PHP when it comes to procedural programming later on in the course we will of course Deep dive a little bit further into objectoriented PHP programming but when it comes to just PHP here at the beginning like I said it’s going to be procedural and just to mention it for any beginners watching this you don’t need to look up object oriented PHP just focus on procedural PHP and learning that and then later on we will get to do objectoriented PHP and talk a bit about what exactly it is will I cover a framework like larell now something people may not know about especially if you are a beginner when it comes to learning any sort of language like HTML CSS JavaScript PHP python whatever you’re trying to learn there will always B Frameworks now Frameworks is a way for us to follow a well framework in order to build things much easier much faster and just kind of like to automate some things for us and a lot of things when it comes to especially PHP and Security will actually be automated when it comes to doing something using larell for building PHP applications however since this is going to be a phsp beginner course and I do think it’s important that people shouldn’t even look at a framework until they learned the basics of PHP we will not cover any sort of Frameworks in this course here at most it is going to be a separate course at some point in the future but for now it is not going to be part of this course here so with that said I hope you enjoyed this little introduction here in the next episode we’ll talk about how to set up PHP and how to install a local server on your computer since we did talk about PHP being a serers side language so we do need to have a server in order to actually write PHP inside a website and again just to mention this for the beginners here you don’t need to freak out when I say you need to install a local server on computer it is something that takes literally a minute to do and it’s not something that’s going to break your computer anything it is something that everyone that does web development at some point will have to do when they start learning how to make websites so with that said I hope you enjoyed this little video and I’ll see you guys in the next [Music] [Music] one so in order to set up a website using PHP we have to install what is called a local server and there’s a lot of different software out there in the internet that you can get in order to install a local server on your computer I do know that some people are a little bit scared when it comes to installing a server on your computer and I just want to point out that there’s nothing to be scared of everything is going to be fine and you’re not going to install any sort of viruses anything setting up a server is something that is actually quite easy to do and anyone that does websites do it quite frequently so it’s not something that new people should be scared of doing it’s something that takes a couple of minutes to do and then you have something running on your computer so when it comes to installing a server there’s many different servers you can choose from you have lamp Vamp examp limp there’s many different kinds of servers I did also hear about something called Ducker from one of my subscribers in the last video so it’s just interesting to see that there’s so many different ways to do it what we’re going to use however is a server called exam and the argument I have for using exam is that it’s easy to set up and it’s the one I’ve been using for many years I’m just really comfortable using xam so going inside your computer you can see that we have this website here that I just found called Apache friends.org I’ll go ahe and leave a link to it so you can actually see it on screen here basically this is just going to be a piece of software that you’re going to download that we’re going to start and then it’s going to run our server on our computer this means that we can actually run a website that is using PHP on our computer without having to upload our website to the Internet so this makes it very easy to just work on our website offline on our computer just like if you were to just make make a HTML website as you can see we have a couple of different versions We can install in here we have for Windows Linux and mac and you can also see what version we’re going to install in this case here this is going to be release 8.2.0 which is the PHP version that we’re going to run on This Server here so once you figured out what operating system you’re sitting on I I bet you probably know already you’re going to go and click the button for that one so I’m going to click windows then it’s going to install the program for you and if it doesn’t you’re just going to go and click up here where it says click here then we’re going to accept the privacy up and then we’re just going to go and download the latest version which is 8.2.0 so we have the latest version of PHP here so I’m going to go and download it now once you have it downloaded you’re just going to go and double click it so we can make sure to install it on our computer and it is important that you take note of where exactly you are installing it since we will have to go in and do a couple of changes to it now if you do get a popup like this don’t worry too much about it since this is only going to be relevant if we were to install this inside our program files inside our main drive so with that I’m just going to click okay and then we’re going to choose where we want to install this program so we’re going to make sure all these are ticked on and then I’m going to click next then I’m going to select where I want to install this now as you can see I have it inside my C drive but not inside my program file so I can just go and install it directly on the C drive so I’m just going to go and do that click next then I’m going to choose a language in this case it’s going to be English and then we can just go ahead and make it set up our program on our computer so it’s just going to unpack and install now if you do insist that you want to install this inside your program files then I do have a Link in the description where you can go in and actually make sure there’s no warnings popping up when you try to run this program inside the program files but like I said if you just install it directly inside the C drive like I did here we’re not going to have any sort of issues now once you have it installed it’s going to ask if you want to start the control panel now if you want to wait with later for now let’s just go ahead and not do that because I do want to show where exactly this is installed so you can just open it up from inside your computer so with that I’m going to click finish and then you’re going to go into a installed xamp which is inside in my case the C drive so I’m going to go into this PC inside my C drive then I’m going to go down to the bottom here and then you can see I have xamp inside the XM folder we’re going to have the actual server files which means that we can scroll down to the bottom and actually run this control panel that we were just asked about so we can just go and click the xamp dash contr control.exe open it up and then you can see we have a little software in here now the important thing for you to know about in here is that we have two services that we need in order to actually get PHP working one is going to be the Apache server which is the one that we need in order to actually run PHP and the second one is the MySQL server which is used in order to get access to our database so what I can do is I can start these two and then you can see we have them running another tip that I have for you is to make sure that you go down and actually dock this at the bottom since this is the program you’re going to have to start every single time you need to start working on your website this means that we need to go down and actually dock it or pin it to your taskbar so you have easy access to it next time with this running we now need to set up our website inside This Server here which is very easy to do so we’re going to go back inside our folder where we have XM installed and then you’re going to go up to the top here and then you’re going to go inside the folder called HT docs now in here you’re going to find a bunch of files and these are just mainly to welcome you into the XM software so if I were to go inside my browser here and inside the URL I’m going to type Local Host and then you can see we get this little website here and this is basically what we see with these files inside the HT docs folder this is basically what this is so we don’t really need to have this so what I can do is I can go back inside our folder and then I just go and delete all the files that we have in here now the important thing for you to know about this folder here is that this is going to be the place where you start creating your websites every time you want to create a new website inside This Server here so what we can do is we can go and create a new root folder so I’m going to right click and say I want to create a new folder I can call this one my website just to give it some kind of name of course you’re more than welcome to call whatever you want it to be but in my case I’m just going to call it my website and now what you’re going to notice is that inside the browser I can go back inside and type Local Host and then you can see we get a list of all the different websites that I have inside this folder here this means that if I were to create a second website go in here create a second one my second website then you can see if I were to refresh in here we now have a new website that we can open up using this server here so if you were to click my website you can now see that we have this website open so going inside your preferred editor my case this is going to be Visual Studio code I’m going to go ahead and create my first file which means that I’m going to save this file inside this folder that I just created a very good advice for you is to go inside and actually dock the HD docs folder on the side over here so have quick access to it so what I can do is I can go ahead and go inside find xamp take my HT docs folder and dock it over here on the side so in this sort of way I have quick access to it whenever I have to open my folders here so I can click it go in here let’s just go and delete that second website since we don’t actually need it I’m going to go inside my root folder and create a index.php now this is the moment where some people are going to get confused if it came directly from my HTML course because when it comes to phsp we want to make sure that instead of creating HTML files we create a PHP file the main difference here is that we actually allow for PHP to be run inside these files here you can still write HTML just like you can before so you don’t need to freak out about your website breaking or anything like that or not being able to write HTML inside these files just because it’s called PHP and the same thing goes if you have an existing website that you want to convert into a PHP website you can just take all the different HTML files that you have and just change the extension from HTML to PHP on those and it’s going to work inside your server and it’s not going to break anything by the way I should say that because some people do worry that it is going to break something so I have to say it with this file here I’m going to save it and then you can see we have this front page here so if I were to go back inside my website I can refresh my website and then you can see we get a completely blank page and that’s because right now we have the index file running inside our server now depending on the editor you’re using because in some cases the editor is just going to work straight away but if you are using visual studio code it may ask you something down here at the bottom it says cannot validate since a PHP installation could not be found this is a very typical thing when you have a new version of Visual Studio code so if you have not set up phsp already inside this software you are going to have to set it up manually inside this text editor here so what you can do if you were quick enough is to make sure you opened up the little link it gave you if not then we’re going to go up into file go down to preferences go inside your settings then you’re going to click on extensions and then you’re going to go down to PHP and from in here you can actually set it to where you want to have the executable path set up inside a Json file so where to click this you can now see that we have this one line called phsp Dov validate do executable path and this is where we need to set in the link for our PHP installation which is again inside the exent folder so if I were to go back inside the XM folder go back you can see we have a folder in here called PHP so I’m going to click it and then you can see we have a php.exe file down here at the bottom this is the one we need to link to inside this executable path inside Visual Studio code so what I can do is I can copy my path here go back inside paste it inside the double quote and then we’re going to write back slash php.exe now if you covered the path directly like I did here you want to make sure these are not back slashes but instead forward slashes otherwise you’re going to get an error message and once you did this you’re just going to go and save the file and then you can close it down and now we have it set up so that we can actually find the PHP version that we’re using once we start creating a PHP website so just to kind of test this out let’s go and start up a regular HTML website now I’m just going to go and zoom in for you so you can actually see what is going on here and what I’m going to do is I’m going to go inside the body tags and create a pair of PHP tags which we use in order to write PHP inside a website so what I can do is I can write angle bracket question mark PHP question mark angle bracket and then anything that goes in between here is going to be considered as PHP so just to follow a very popular tradition here let’s go ahead and go inside and write Echo double quotes Hello World close it off with a semic on save it go inside our website refresh it and then you can see we get hello world so with that we now know that we have a server running so we can actually write PHP code inside our website and have it display inside the browser and with that in the next video we’re going to talk a bit about PHP syntax so we can actually write PHP properly inside our website so hope you enjoyed and I’ll see you in the next video [Music] now before we get started we need to talk a bit about the syntax of writing PP code since syntax is what is going to allow for you to write PHP code without having to create too many errors so in the last episode we talked a bit about opening and closing TX when it came to writing PHP inside a document like for example your index. PHP file and the important thing to know about here is that whenever you create these opening and closing tags your PHP is going to be parsing this page and search for these open open and closing tags until it finds one and then it’s going to see that phsp code inside those tags we can now very easily just take our phsp code and embedded directly inside our HTML like I did on screen here so you can just have the body tags you can have for example a paragraph tag and then right on theath you can just include some PHP code so it is very important that anytime you want to create PHP code you need to have these tags so you need to memorize these tags since we have to use them constantly whenever we want to create any sort of PHP code so when it comes to writing PHP code we do also need to talk about ending of each statement with a semicolon since semicolons is what is going to tell our code that this is a finished statement so as you can see inside my code here I have a very basic pair of PHP text and a echo which we haven’t talked about yet but essentially a echo is something we use in order to Output things inside our browser so if I want to Output some text or a string as we call it then I can Echo a string which is wrapped in double quotes and then end it off with a semicolon to tell it that okay so this is the end of the statement go ahead and Echo this out inside our browser but something you may not know is that the closing PHP tag actually automatically implies a semicolon which means that if I were to take an example like this one where we have two Echoes that Echoes out some code then the last statement doesn’t actually have a semicolon because that is actually implied by the closing PHP tag at the very bottom and I just want to point something out here because even though technically we don’t need to have a semicolon inside the last statement it is something that I do recommend that you do every single time it is also something most people do and it’s just for the simple reason that it doesn’t hurt anything to put that last semicolon and it also teaches you that every single time you create a statement you have to put a semicolon because a lot of times one of the errors that people they type in my comments is when they forgot to put a semicolon or they forgot to close off a parentheses or a curly bracket or something so teaching you the mindset of putting semicolons after each statement is something I highly recommend you do because you have to get into that mindset but now let’s talk about when we have a file that only has PHP inside of it because up until now we talked about this page for example the index a PHP file but in some cases we do also have files that are purely phsp the way we do it when we have this pure phsp file is you want to make sure you have the opening tag at the very top of the page every single time because otherwise your PHP is not going to be working but when it comes to the closing tag we actually want to omit it we don’t want to have a closing tag at the end this is actually the recommended thing to do so just like with the example you see here we have this file that only has a PHP tag at the very top but there’s no closing tag at the bottom it is for the simple reason that in some cases if you were to close off the PHP tag at the very bottom but then accidentally leave a empty line or a space or something then things can go a little bit wrong having talked about that let’s talk about a more advanced example of embedding PHP inside HTML in this example here you can see that I have a pair of body tags so we have some HTML and inside these body tags I have a PHP statement this is called a condition and conditions is something we will talk more about in the future so you don’t really need to know what a condition is right now but essentially I have a condition here where if something is true then run the blocker code inside the curly brackets and in between these curly brackets I did just like before I Echo out or output some text inside the browser or a string as we call it and as you can see I actually included some HTML tags inside that string so we have some html text but with a paragraph tag wrapped around it and this is something you can do whenever you want to create HTML inside a web page you can actually Echo it out using PHP so you can write HTML and content using phsp in this sort of way um but this is not really the most optimal way to do things because you may notice a couple of things here first of all the text is completely orange and that’s the typical color when it comes to writing a string inside phsp and because of that we run into some issues with the HTML not actually having any sort of syntax checking we don’t have any coloring of the HML just like the body tag up and below so writing HML like this inside H string is something that is going to get quite messy and it’s going to get confusing and you don’t really have any automated syntax checking cuz it’s not seen as HTML by your editor is seen as a PHP string so what you can do instead is you can split up your condition using the opening and closing PHP tags around the beginning of the statement and the closing of the statement so on the next slide here you’re going to notice that the if statement is going to get moved up next to the opening PHP tag and then I’m going to close it right after that line and then the curly bracket at the bottom there is going to have a opening and a closing PHP tag as well because by doing that we now allow for HML to be written in between those curly brackets but we can actually write it as HTML and the editor is also going to see it as HTML and actually check it for syntax and that kind of thing and color it so it looks really pretty so doing it that way is really the optimal way to do it I think when it comes to writing HTML the last thing I want to talk a bit about here is writing comments inside your PHP you have seen some of it already but I just want to just sort of like go through it since there’s a little bit more to it whenever you create phsp code write comments because at some point you’re going to forget what the code does and you have to return to it and you have to go through the code and see what it does when you could just have created a comment early on to tell future you what exactly the code does so creating comment is a very important thing a a comment is not going to get outputed inside the browser it is just there for you as the developer to see so we have talked about creating a single line comment here using two forward slashes and because this is a oneline comment we can’t go down to the next line and continue writing then it’s going to see it as not a comment uh but we can create multiple line comments by instead of using two forward slashes we can use a forward slash and a multiplication symbol and then close it off again using multiplication forward slash because in this sort of way we can now create multiple lines in between these two opening and closing tags when it comes to writing a comment and just like that you now know the basics of syntax when it comes to writing PHP there is of course you know more advanced things we could go into but I think this is a good beginning to understanding how to write phsp and not get any sort of basic errors inside your browser whenever you try to create any sort of basic phsp code so with that said I hope you enjoyed this little video and I’ll see you in the next one [Music] so in the last video we talked a bit about PHP syntax and today we’re going to talk a bit about how to create variables and data types now I do think it’s a really good idea that we go inside our edit on this video and just talk a bit about this so we have some practical experience writing PHP code and with that we do need to actually start up our website and I thought why not do that together since that is something we haven’t done yet so what you need to make sure you do every single time time you want to see your website inside the browser is first of all you need to have your editor open which is step one then you need to make sure you’re opening up examp so you want to open up the software make sure you actually start the Apache and MySQL server then you want to go inside your browser and then you want to go into the URL and type Local Host and when you do that you can see all the websites that you have inside your HD docs folder in my case here I do have two websites you should not have two you should only have one so go and pick the one that we created together in the first episode and then you can see we have our website in front of us here and that’s the basic step in order to open up your website when you’re running it inside a server like examp so now we can go back inside our index.php and just to kind of talk briefly about the last episode because I know some people were little bit confused when it came to embedding HTML and PHP together so if I were to go inside I can create a regular HTML paragraph and I can go and create this is a paragraph and just write some text inside this paragraph here now what you can do is you can create the PHP tag so the opening and closing tag so angle brackets question mark PHP and then you can say question mark angle bracket so what I could do is echo which we talked about is how to Output things inside the browser I can say this is also a paragraph and we do need to make sure we remember that semicolon even though because this is the last statement inside this particular PHP tag here we don’t technically need to have this last semicolon but like I said it is best practice to remember to do it every single time because it doesn’t hurt anything to do it so let’s just go and do it every single time and when you do this you can go back inside your website refresh it and then we can see we have two pieces of text we have this is a paragraph and this is also a paragraph So we have two paragraphs inside our website and just to show something a little bit more complicated you can also go inside existing HTML elements and create PHP so I can go in between here and I can open up my PHP tags and then I can write something additionally in here so we would have to again because we need to make sure to Output whatever we’re doing using PHP and I can go ahead and Echo awesome paragraph semicolon save this one go back inside my website and then you can see we included this awesome paragraph in here and this is just to kind of show that we can mix and match PHP and HTML together in any sort of way that we want by embedding it directly inside the HTML but now this is not what I wanted to talk about in this video here I do actually want to talk about variables and data types because we do have variables and data types which we use constantly when it comes to writing phsp code so this is something we have to memorize so let’s go and talk a bit about what exactly a variable is now a variable is when we have a memory location inside our application that stores some sort of data which is a very confusing way for beginners to understand what exactly a variable is because a lot of people don’t understand what is memory location and that kind of thing so instead just for practice here let’s pretend that a variable is a box and that box box has a label so you know when you’re moving into a new house you put you know some writing on the box whether it’s kitchen utensils or uh for the the kids room or something so you know what’s inside the box but then you do also have something inside the Box some actual data so whenever you grab this box by referring to the name of the box then you grab whatever is inside the box as well and that is technically what a variable does so when you reference to a variable you grab the data and it’s just a very easy way for us to refer to data and label it so we know exactly what what the data is now when it comes to PHP uh the way you refer to a variable or the way you declare a variable is by creating a dollar sign so if I were to go inside my PHP tags here I can create a dollar sign which means that now we are declaring a variable and then we can call it something so we can come up with a name for this variable that we think makes sense to the data that is inside the variable so in this case here I could say that this is a name so I could say that this is a name and it’s going to be equal to some kind of data so now we’re initializing this variable by assigning a piece of data to it so in this case here I could say that it is a string which we talked about before called Danny Crossing so now every time I refer to this variable called name I’m going to get a value called Danny Crossing so if I were to go below here and just echo which means that we’re outputting something inside the browser and I can go ahead and Echo out name or the variable called name so we need to remember the dollar sign here if I were to do this go back inside my website you can see that we’re echoing out Denny cing so in this sort of way we can create boxes or labels for pieces of data that we can refer to in order to better handle data inside our code so in this case here we created a variable called name and you can call whatever you want but now we do also have naming conventions when it comes to naming these variables here so in this case you can see we call this one variable name but we can also go in and either start it with a letter or a underscore in order to name this variable now the customary thing is to start with a non-capital Iz letter and then make sure that any other new words inside this variable name starts with a capitalized letter so if I were to write full name instead then we start with a non-c capitalized F and then a capitalized n for name so whenever you have multiple words inside the variable name then you just make sure the first letter of that second word or third word or fourth word is going to be capitalized and again it’s not really a customary thing you have to follow but it’s it’s the way that people do it so I would recommend doing it the same way so people don’t misunderstand what your code does or why you named your variables in this way that other people don’t usually do it and just to mention it when it comes to any other letters that isn’t the first letter inside the variable name then you can also go ahead and create either underscores or you can create numbers so we can say one but make sure you stick within letters underscores or numbers when it comes to the variable name after the first letter inside the variable name so now let’s go and delete what we have here and talk a bit about data types because when it comes to data types inside PHP we have many different data types we’re not going to talk about all of them in this video here since some of them are a little bit more complex than others uh but we will talk about some of the base types that we have inside phsp the first one is going to be what is called Scala types and Scala basically just means that the variable contains one value to it and the first example of that would be we could create a variable that is called something like string and a string we did already talk about what kind of data that is so in this case here we could say uh Daniel so as we know already a string is a piece of text now we do also have numbers so I can go below here and I can create a integer or a int and I’m going to go and name this one a number so we can just write some sort of random number here and this is going to be a value for a integer notice that we’re not using double quotes around the number because if I were to do that then all of a sudden this is going to be a string so it’s not considered a number inside the PHP language anymore it is actually considered to be a piece of text just like a string up here and you can actually tell by the color that it actually changed it to text now we do also have something called a float which is something that we see happen a lot in many other programming languages which is essentially when you have a number that has decimal points so if we to write something like 25678 then this is going to be considered a float because it has decimal points and then we do also have one more scaler type which is called a Boolean now I’m just going to go and write bull even though it is spelled buoen we’re just going to write bull for short and this one is going to be a true or false statement so essentially is something true or is it false and the values for that is going to be false or it is going to be true now it is also important to mention here that if you were to have numbers in here and you were to run this as a Boolean then one is also going to return as true and zero is going to return as false but in most cases we do just use true or false when it comes to this type of data here and just because I talked about it in the last video let’s go and create a comment for this section here so you know exactly what this is so we’re going to create a oneline commment and I’m going to call this one scaler types now the next one we have is actually one that we’re not going to do too much with here in the beginning but we do also have a array type so we can actually go and create a common and call this one array type and essentially a array is when we have a variable that has multiple piece of data inside of it so just like Scala types which means contains one value in the case of an array we have multiple values inside one variable so so could for example create a variable called array and I can name this one equal to multiple pieces of data now we do have two different ways you can create an array one is by writing array parentheses semicolon and then you can add multiple pieces of data in here which could for example be a bunch of string so I can go in here and say we have one string which is called Daniel and then I can create a comma and then add a second string which could be Bella then I can add a third piece of data and I can just keep piling data on inside this array here so we can say feta which is also a string and then we could of course rename the array to something like names if that makes a little bit more sense to what exactly this piece of data has inside of it but essentially this is going to be a bunch of data inside one variable and just to mention it since I did mention there was another way to do this instead of creating array parentheses you can also do a square bracket and then close it off using a square bracket as well just like this now if you just started following this course here you should have a newer version of PHP but if you do run PHP 5.4 or lower then these square brackets are not going to work when it comes to writing a PHP code so if you run a older version of PHP then you do have to do it the way by creating this array around it but just like I said if you’re a little bit confused about why we use arrays inside our code and you may have questions about it don’t worry too much about it because we will get to talk more about arrays in the future for now like I said you’re only going to have to worry about these different scaler types here I do want to mention one more data type though even though it’s not one you should concern yourself with here at the beginning since this is something that’s a little bit further ahead in this course here but we do also have something called an object type so we can say object type and an object type is essentially just when we have a object that is equal to a variable objects is something we create based on classes which is something we again are not talking about right now but when we do instantiate a class we do actually create a variable that is equal to an object based off of that class so could for example say that we have a variable called object and then we set it equal to a new object which is going to be the name of the new object so we could for example say car parentheses and semicolon and this would instantiate a new car object which of course right now can’t find because we don’t have it but once we do have a class called card that we can instantiate then this is not going to throw an error message but like I said we’re not really going to worry too much about arrays and objects right now this early on in this course here so don’t worry if you get confused about because that is perfectly normal even though we’re not really supposed to talk about erasing objects yet I still thought it was important to just kind of like mention them because it is something that is very used inside PHP so knowing about them so you have kind of like a a little bell inside your head when we talk about objects in a future episode and you think to yourself oh wait I heard about that at some point inside this course here and then you might go back to this lesson here and think oh yeah we talked about objects in that early lesson oh now we get to talk about what exactly it is so don’t worry too much about right now it is something that you just need to have kind of like in the back of your head it’s not important right now the only thing you need to worry about right now is that we have these Scala types and when we actually create the variable we declare the variable and then we initialize it by assigning a value to it the reason I mentioned that is because it is possible to go down and create a variable and let’s just go and call it names and not assign anything to it and when you do this depending on the context of when you use this variable it is going to default to a certain value type so if you were to use this one in a string context then it will just go and say oh okay so this is supposed to be a string automatically and then it’s just going to assign a empty string to it and it will actually do something that looks like this so we just have an empty string that doesn’t have any sort of value inside of it and this is what it’s going to default too and the same thing goes for integers floats and booleans and arrays and objects they all default to something so in this case here if I were to go ahead let’s just go and use these up here so as a default a string defaults to nothing so just an empty string with double quote by the way an integer is going to default to zero and the same thing goes for floats they also default to zero and when it comes to booleans they default to faults and just to mention it here when it comes to an array so if we were to create a array because we did talk about them in this video so we do also need to just kind of mention this it is going to default to a empty pair of square brackets and when it comes to an object day default to null which means nothing null is not a concept that we’re going to talk about right now but it just basically means nothing however when it comes to declaring a variable you should always initialize it the reason I say this is because sometimes when we do create variables we don’t know what should be inside the variable just quite yet and in those cases we just declare a variable but we wait with assigning any sort of value to it and when those moments happen you should not do it this way because you do risk getting error mess messages inside your code so make sure that you always assign something to it by initializing the variable so with strings you put empty double quotes with a integer you put a zero the same thing with floats if you put a buo and always set it to false arrays are just going to have these square brackets here and objects are just going to be null so these are going to be the default values you should always put inside a variable if you don’t know what kind of data you should put inside of it just quite yet otherwise your interpreter is just going to throw you a warning in a lot of cases so so just go ahead and make that into a Happ and here at the end before we end up the episode I just want to say that it is perfectly normal to be completely overwhelmed with all this information here because this is a lot of information I’m dumping on people especially if this is your first programming language this is going to be completely new and this is going to be a lot of information I just want to say that is perfectly normal to be overwhelmed and in the future we will get to do many more practical examples where we do actually use variables for something and we use many different data types and it is something that is just going to be a bit more natural when you actually to start seeing how these are used in Practical examples and when you get that little oh okay Epiphany moment where okay so this is how we use these different things we’ve learned up until now then at that point you will remember things a lot easier okay so don’t be worried about if you can’t memorize all these things cuz no one expects you to memorize all these things in one sitting it is something that sticks with you as you start practicing PHP along the way just to give a short example here at the end just so people know exactly how we can use variables inside our code if I were to go back and sign up body tags here and at the very top I’m going to go ahead and declare a variable called name going to set this one equal to a string called Danny Crossing and what we can do here is we can go below and create a paragraph inside HTML then I can just go and say hi my name is and then we’re going to open our PHP tags close it off again comma and I’m learning PHP then what you’re going to do is you’re going to go up and grab your variable name and you’re going to go inside your PHP tags and you’re going to Echo out your variable name semicolon and when you do this and go inside the browser and refresh it you can see that now it says hi my name is Denny cing and I’m learning PHP so in this sort of way we can take data or variables and we can use them inside our code or inside our HTML if you want to do that to Output data in this sort of sense like this is a very basic example but just to kind of show that we can use variables to reference to data that we assigned to variables and just to mention one more thing because something we can also do is we can go down and say I want to create a new variable and I just go and call this one something like test just to give it some kind of name I can assign equal to name so in this case here we have a variable that is assigned equal to a variable and I were to take this name and copy it down instead of the echo you’ll now notice that we still do get hi my name is Danny Crossing and I’m learning PHP and that is because this first variable here has a piece of data assigned to it and then the second variable down here has that same variable which has data inside of it assigned to itself so we can also assign variables equal to variables in this sort of way here and with that we now know a lot about variables so I hope you enjoyed this episode here and I’ll see you in the next [Music] [Music] video so in the last video we talked talk a bit about variables and data types and in this video we’re going to talk a bit about predefined variables or what you also call built-in variables now a predefined variable is a variable that exist inside the PHP language so in comparison to a variable from the last episode where we created it ourselves by saying we have a variable by saying a dollar sign and then we give it some kind of name so we could for example say name set it equal to some kind of value like Daniel and then we have a variable but now this is a userdefined variable which means that we created it ourselves but we do also have variables inside the PHP language and these are called super globals which means that we can access these variables from anywhere inside our code no matter what the scope is inside our code now scope is something we haven’t talked about yet but it is something we’ll get a little bit more into once we start talking about functions in PHP so for now just know that super globals can be accessed from anywhere inside our code now we do have a list of super globals that we can gain access to and each of these do something different when it comes to grabbing these variables so I’m just going to go ahead and list them out here one by one and talk a bit about them and explain what exactly they do and what you can use them for inside your code and just keep in mind once we do this I don’t expect you to memorize all of these in the first go we will actually get to use more of them as we start you know continuing these lessons here so you will get more practical examples to just kind of help you understand how we use these but for now I’m just going to give a short description of what exactly they do and then we’ll talk about more of them in the future episodes now the first you need to know is that whenever we want to define a super Global or a predefined variable is that we reference them by creating the dollar sign but then we create a underscore followed by a capitalized word so for example we could access the server variable and you want to make sure you add these square brackets afterwards and then semicolon so we could for example go inside and say we want to get the documentor root which is going to give us information about the root path of this particular website here so in order to access it inside the browser would do of course need to Output it by echoing it out so if we were to go inside my website refresh it you can now see that we get the C drive xamp HT docks which funny enough is the folder that we talked about in the first episode where we installed xamp so this is the location of the website inside our computer so what I could also do is I can go underneath here and just sort of copy paste this and I could also get some information about the PHP unor self then go inside the browser refresh it and then we can see we get some more information here so now we get the my website which is the name of the root folder that we’re inside of right now and we also get the name of the file that we’re inside of right now and the reason these are written right next to each other is of course because we have them echoed right after each other we could also go down below here and say we want to Echo out a HTML break which is if you know HTML which you should know by now is how to create a new line so want to save this go inside you can now see that these are the two different pieces of information that we get using the server super Global and there’s many pieces of information you can get about the server and there’s a huge list that I will include inside the documentation inside the description of this video here but for now we just going to take a couple of examples here just to kind of show you a little bit about what I can do uh the next one I want to show you is going to be the server name so if I were to go down and copy paste the break I can also go in here and grab the server uncore name if I were to do that you can now see that we get local host and that is of course because we’re working on a local server right now so if if you had your website on a online server that would be the name of that server we can also copy paste one more time and we can do one called request method underscore method and what this will do is tell you how this page was access so in this case here you could for example say that this is using a get method but if you were to access a page using another method like a post method then you can also see that when you output what kind of request method you were using now if you come from the HML CSS course that I have on my channel you may have heard something about get and post methods and that is essentially when you have a form inside a website you know just a regular form you can fill in using HTML and inside the form we have two attributes we have a action and we have a method and inside the method you just simply state if you want to submit the data using a get or a post method and that is essentially the information we’re getting here in a couple of episodes from now we will do a exercise together where we will be using this particular method in order to graph some data so in a couple of episodes from now do take note that we have a dollar signore server request method since we will be using that particular one in a future episode now the next one we’re going to talk about is going to be dollar signore getet which is another Super Global that you may have some bells ringing in your head about because we just talked about get and post methods so essentially when it comes to handling data and submitting data from page to page inside our website we can do so using a get or post method like I said using a HTML form so when we do that we can use a get or post method in order to grab that data from inside the URL which means that I can go in and instead of all this stuff that we just wrote here I could go in and say that we want to grab a piece of data so dollar signore get square brackets semicolon and I want to grab a piece of data that might have a label labeled as name now currently we don’t actually have anything like this inside our website but what you could do is you can go inside your website go go inside the URL and say that we have our current page which is index.php and then you can add a question mark name equal to Danny and because we have this name equal to Danny inside our URL after the question mark we’re now accessing a piece of data inside the URL which could have been submitted by a get method so this is how it would actually look like if you were to submit a piece of data from a form using HTML so if I were to go inside my code and actually Echo this out because like we talked about we do need to Echo in order to output something inside the browser if I were to do this because I have this inside the URL and refresh it you can now see we get Danny and that is because right now all the data inside the URL is going to be accessed as an associative array which means that we have a bunch of data with labels that we can access using this get method here so if I were to go in here so what I could also do is I could add a ENT symbol which is the ant symbol and I could add in a second piece of data which in this case could be I color is equal to Blue so if we were to add in a second piece of data we could also go in and say we want to Echo out a piece of data which is called I color so if we wrote I color saved it refreshed it you can now see we get Denny blue using get methods is something we use quite often inside PHP since we do submit data from page to page constantly whenever we do something using phsp so knowing this is something that is very important for you to memorize however we do also have have a post method and that is going to work a little bit different because a post method will also submit data but a post method is not going to be visible inside the URL just like a get method is so essentially I could still have the same information submitted but we can’t see it inside the UR else so even though we might still have data accessible to us that we submitted to this page we can’t see it inside the browser which is very useful when it comes to submitting more sensitive data so in case someone is standing behind you and looking over your shoulder as you’re submitting data inside a website they can’t see it so it’s going to be more secretive when you submit it there’s of course many different benefits to using a post method over a get method it really depends on what kind of users you’re trying to get here the main rule of thumb is that if you’re trying to get data from a database or just get data that you want to show the user then we use a get method and if you want to submit data to the website or to a database inside the website then we use a post method a very good example of this is if you have a login system and you want to lock in the user when they’re typing in that login information and then submit the data then we don’t want that data to be seen so that has to be submitted using a post method but once they log in and they have this user profile page inside their website that they can visit then all the data inside the profile page could for example be grabed using a get method so again a couple of different ways to use these but now we do also have something called a request method so if we were to go down here and instead say request and do this and actually go back inside the URL and refresh it you can now see that we’re still getting Danny so even though I used a request method instead that still looks for the name label inside the URL we actually still get Danny and this is because a request method is going to be looking for get post and cookies when it comes to looking for data inside this website here the thing about using request though is that even though it is kind of like this super super Global where we can get both get methods and post methods and cookies and we just use one thing to get all three of these is that you don’t really know what you’re grabbing whenever the US to submit something so if I were to for example submit a form but also were to go inside and say that I want to just manually add some data inside the URL then if you don’t set it up properly and validate it properly and sanitize everything once they submit the data then it can kind of go in and do some security damage so the rule of thumb here is whenever you know that you’re just going to be handling post or get data just go ahead and use the get or post method instead so just kind of forget about this one for now just remember that we have a get and a post method and and just don’t look at this one for now the next one I want to talk about is going to be the files super Global so we have one called files now this one is going to be used whenever you want to get data about a file that has been uploaded to your server so in case where you have a HTML form again we’re talking about forms here inside HTML forms we can allow users to submit files when they actually want to submit their form so for example a picture or PDF document or something they want to upload to the website then they can do that using a HTML form and whenever a user does that we need to double check all sorts of things about the file once they actually upload the file to make sure that this file should be uploaded to our website because let’s say for example a user decides to crash our website by uploading a file that may be very very very large in file size then we want to have something to double check the file size of that file that the User submitted and we can do that using our super global call file since we get all sorts of information about the files that the User submitted for example the file size we can also get information about the name of the file uh what kind of extension it has is it a PDF file or is it a file format that we should not allow to be uploaded inside our website so using this super Global here just kind of like allow for us to grab information about files that the User submitted using a HTML form the next one I want to talk about is going to be one called dollar signore cookie now a cookie is essentially a small file that your server embeds on the users computer which means that we have a bunch of information we can store on the users computer and using this super Global here we can actually store or grab information about cookies inside our website and in the same sense we do also have one for a session so I can also grab a session variable so in this case here we could for example grab some information about um let me actually go and demonstrate this one so if we were to go some of PHP tags I could for example create a dollar signore session and inside the bracket I’m going to make sure to include a name for this session variable here so I could call this one username and if I were to go inside and store this username inside the browser using a session this could for example be a username called Crossing then I can access it by simply reference to this particular session variable that I just created called username then if I were to go inside the browser and refresh it even though we don’t have a session running we can actually gain access to this one because it’s inside the same page so right now you can see that we have this cring stored inside a session variable so we can store information about the user inside this session which is on the server side this means that if I were to close down the browser and actually close down the session we are running inside the website it is going to forget about the session variable unless I set it again inside the website which I do actually do right here because it’s not the same page and again we will get to talk much more about session variables and cookies in the future episode for now just know that we have these super Global session and cookie variables that we can use in order to grab data from inside a session or inside a cookie and the last one we have that I just want to mention here which we should definitely not get into right now because this is heavy stuff for a beginner uh but we do also have something called a EnV which is a environment variable that we can gain access to inside our PHP code environment variables are essentially very sensitive data that you want to have inside the particular environment that the user is working in so you know data that should not be accessible to either the user or other environments um but this is not something we’re going to talk about right now this is something we’ll have for a later episode and just so you have all of them right in front of you so you can see how they all look like these are all the super globals that we have inside phsp again it’s very important for you to know that I don’t expect you to memorize all these especially since we haven’t actually used these in any sort of practical examples inside our code so far but the reason I wanted to discuss super globals is because right now we will get to talk a bit about a couple of these in the upcoming lessons so instead of telling you that oh by the we have something called super globals and we’re just going to use two of them right now I thought it was a really good idea just to introduce you to all the super globals that we have so you know that they exist and what they do so in a future episode whenever we visit some sort of lesson that is related to for example sessions inside our tutorial then you know that there’s something called a session super Global because we talked about it so it is important that you know that these exist but I don’t expect you to memorize any of these just quite yet in the next episode we’re going to talk a bit about operators inside pH P which is something that isn’t quite complicated it’s it it’s pretty simple but it is the last lesson that we need in order to do a practical little exercise together where we build a calculator together since this is kind of like a tradition on my channel that we build a calculator using whatever programming language we’re using right now and when we do get to that episode we will talk about the server and the get super Global since we have to use those in order to do our calculator exercise which is why I wanted to talk about these right now since we have to use them so why not introduce them to you this early on and before we end off the episode here I just want to mention that there is another Global that we haven’t talked about just called Global which is a way for us to gain access to variables that we created from any sort of scope inside our code and the reason I didn’t mention it is because we will get to talk more about Scopes once we get to our function episode which is not far from now but once we do get to talk about creating functions we do need to talk about something called the local and the global scope inside our code and that particular super Global is relevant when we come to that particular episode so I will talk about that once we get to that episode there so with that said I hope you enjoyed this video and I’ll see you in the next [Music] [Music] one so now that we know how to create a variable and a super Global we can now talk about how to create a form inside our website and actually submit data that we can grab using PHP and do something with it using HTML forms together with PHP is something we do quite frequently with PHP and it is one of the main things that we actually use PHP for when it comes to handling any sort of data inside a website so if you don’t know how to create a HTML form I do have a very thorough HTML tutorial that does talk about how to create a HTML form that I will link in the description if you have the need for it we have to remember that this is a PHP course so talking about too much HTML and CSS is something that my subscribers actually told me not to do so if you don’t know how to create a HTML form and you want to know the specifics of creating a HTML form then watch that tutorial inside the description with that said I do have a form inside my index. PHP file here so as you can see I have a very basic main tag that has a form inside of it and inside this form I just simply have a input for the first name I have an input for the last name and I do also have a select which is a drop-down that allow you to pick your favorite pet type so just a basic form that allow for you to type some basic data inside the form and then submit it and just because I know some people don’t use labels inside their form do make sure that you use labels whenever you create a form since it allow for people with disabilities to better read your form so this is a important thing I do see some people use paragraph tags instead which I’ve done too in the past so I’m also at fault for doing that um but I’m also seeing people not use any tags whenever they create these labels for their form so just make sure that you use a label element when you want to create a form tag again this is not supposed to be an HTML tutorial and now I’m sitting here teaching HTML when it comes to a form we have talked about inside my HTML course that we do have a action and a method attribute inside the form tag and when it comes to these two different attributes here these are the ones that we use in order to tell our PHP how we want to submit the data and also where we want to submit the data too so in this case here you can see that I did actually tell it that I want to include my data and send sended to a PHP file called form handler. PHP which is inside my includes folder so as you can see inside my root directory I do also have a includes folder that I just simply created by creating a new folder and inside this form handler. PHP I have nothing inside of it so right now we have a clean file you could have called this anything you want so form Handler of test.php just something it doesn’t have to be form Handler it’s just kind of to tell us what exactly this is but in this case here I do have this empty PHP file so just to start with here let’s go ahead and open up our PHP tags and just like we talked about in my syntax video we do not want to include a closing tag because this particular file here is going to be a pure PHP file and when you do that it is best practice not to have a closing tag so now going back to the index of phsp file you can see that we have this post method that I set inside my form now we do have two different ways we can submit this data either using a post or a get method now a get method is going to actually submit the data inside the URL so you can see it whereas the post method is not going to show the data inside the browser so the general rule of thumb here is that whenever you’re submitting data and allowing the user to submit data then you want to use a post method and whenever you want to show something to the user inside a page then you use a get method so just kind of rule of thumb there but you know of course it’s not going to be in 100% of cases but in 98% of cases that is going to be how you’re going to do it and just to kind of show it here because I did talk talk about this in the last episode when we talked about super globals if you want to submit a form and send the data to the same page that you’re inside of there is a way to do it which is to go inside your action open up the PHP tags like so and then you just go in here and you do actually just include the server super Global that we talked about so we’re going to Echo out the server super Global and Target the phsp self so this is one way to do it just to mention it but with that in mind you do also need to do something else here so don’t just post this and use this because this is actually prone to hacking or xss which is called cross- site scripting uh so therefore you should not just post this just like it is right here uh so for now we’re just going to go and send it to a separate document which is how you do it pretty much most at a time I do see a lot of people in my comments they they want to know how to send data to the same page as the form is on which is of course you know in some cases you might find a use for it but in most cases you will be submitting the data to another page so in most cases is this is how you’re going to do it and now that I mention security here for a second because I know some PHP people will maybe point this out um whenever you have any sort of include files that are just pure PHP files you’re supposed to have it inside a private directory inside your server and that’s not how we’ve done it right now everything is public at the moment but we will talk more about Security in a future episode we’ll we talking about private folders and public folders and where to include certain phsp files and where should your HTML files be for now we’re practicing right we’re practicing PSP so this is how we’re going to have the directory right now so that was a lot of information that wasn’t really supposed to be included inside this lesson here but I thought it was important to talk about so I just wanted to mention those things so with that said as we talked about we have a action and a method now when we send this data to the other page we need to be able to grab it somehow and that’s something we need to talk about because inside your HL form all your different data or inputs should have a name attribute because because this is the reference name that we’re going to grab once we send the data to the next page whenever you grab the data using the name attribute you’re going to be grabbing whatever the user input so right now for example inside a text field uh whatever the user typed into the text field is what you’re going to be grabbing on to reference to for example first name but inside a select down here if you have a drop down the data that you’re going to be selecting when you reference to for example in this case here favorite pads is going to be the data that is inside the value attribute so again just a little bit of HTML knowledge there for the the non-html people who should know HTML by now but let’s go and talk about how to actually grab this data inside our form handler. PHP file so once I submit this form inside my website which by the way looks something like this if I fill in information for example Danny Crossing and then I choose a pet so in this case here I do actually have one of each of these types of pets and I don’t want to make any of them cry so I’m just going to select none for now cuz I’m a good dad once once I submit this it is going to send it to whatever I set inside the action attribute so going back inside our document here if I were to go inside the form Handler you can see we have nothing in here which means that if I were to actually submit this data inside the website you can see that we just get a blank page and burning eyes warning here a little bit late but the warning came so right now nothing is happening this is the exact same thing is just an empty page inside HTML or something like that so what we can do is we can go back inside our code and the first thing you want to do is you want to check if the user accessed this particular file in the proper way because it is possible to just go inside the URL inside your website and just go up here and type the address of that particular file that is inside the includes folder which by the way is also why we have private and public folders inside our directory which is something we’ll talk about later because those allow the user to not be able to access the private files just by going inside the URL however we always need to think in security whenever you do PHP always think security so the first thing we’re going to talk about here is going to be how to let the user not access the code if they didn’t access this file using the form that they had to submit the way we’re going to do that is using something called a condition which again we will have a more thorough tutorial on a little bit later but essentially a condition looks like this so we have a if statement that says if something is true then run the code inside these curly brackets that we have here which are these right here so so whatever condition you want to set inside this statement has to go inside the parentheses so if for example true then run this condition here which will always be true because true is true right um so what I can do is I can go inside of here and I can use one of the super globals that we talked about called server which I did mention that we had to memorize because we would be using it in a upcoming lesson which is going to be this one so we have this super Global here and what I want to check for is a request method so requestor method now just to kind of show you here because if I were to take this server super Global and let’s comment this out for now and go up here and use a method called V dump actually this is a buil-in function but if I were to use Vore dump which would actually output some data about this particular super Global inside the browser so we were to do this just to see whatever this is outputting I can go back inside the browser refresh it and then you can see we get string three get which we’re not supposed to be getting oh I forgot to set this one back to post so let’s go and do that for a second inside the form um so go back inside the website refresh it again and now you can see we get well we actually have to resubmit it so we go back again resubmit and now we get post so this basically tells us that we access this particular page using a post method which means that we can go back inside our code and say okay so if the user we just comment this V dump out because we don’t need it anymore if this user access this page using a request method that is equal to post then we allow for the code to be run inside these curly brackets here and this brings me to a good point because some people including myself in the past by the way have been doing this in a different way so instead of checking for a post method we would actually go in and instead check for a is set function which basically goes in and checks if something has been set currently so if were to go back inside my form and inside my button down here I could actually add a name attribute and set this name to submit which means that now if I were to submit this form I also submit a a post super Global that has submit inside of it so I could go back in here and check for a post super global Post and then we can check for brackets go in here and check for a submit so this is also a way to do it but it’s not considered to be the best way to do things so you should be using uh this method down here to do it so every single time you submit data to another page you want to run this condition because that has to be checked for every single time then once you’ve done that you go inside the condition here and then you want to grab the data and we can do that the same way that I just showed using the other if statement so that is by using a post super Global so we can create a variable which we talked about is kind of like a container and we can name it something like first name and I want to set it equal to some sort of data now in this case here I want to grab a post super Global which is the data that we sent to this page here and I can grab it by referencing to the name attribute inside the form so if I go back to the form I can actually go and delete this name attribute down here because we don’t actually need it and I can grab the first piece of data and this one has been set to first name so if I copy that go back inside my PHP and paste that in now I’m grabbing the data from the form however we’re not actually doing this in a very secure way we did talk about cross site scripting so if we were to go back inside my form here just go back again uh if I were to go inside this form you can actually write code into this form here and that is going to allow for users to hack your website or do certain things to your database that might destroy it inject JavaScript in into your website which is not a good thing so you want to make sure that you sanitize your data every single time the rule of thumb here never trust data that is submitted by a user which means that you always need to sanitize data that the user was able to submit so we go back inside our code here and what you want to do is you want to use a built-in function inside phsp which is called HTML special characters so what I can do is I can say HTML special characters and what you want to do is you want to grab grab the data so the post method here and you want to put it inside the parentheses of this particular buil-in function and now there’s a couple of parameters you could put behind this particular function here but for now this is pretty okay so we’re not going to do anything else what this function does is that it takes your data and it converts it into HTML entities which means that we can no longer inject code inside uh the fields that we posted inside our form those are going to get sanitized so we don’t see it as code but we just see it as HTML entities which which means it’s not going to be picked up as code a good example of this just to kind of demonstrate it if it were to go inside my index file I can go right above my form and I can create a HTML Ampersand so if I were to write this HTML entity and save it and go inside my browser you can see it’s going to be picked up as a Ampersand cuz that is the HTML entity for a Ampersand which means that if I were to actually go inside my form and write a Ampersand because it might be part of some code that I’m maliciously trying to inject into this website here to break it um then it’s not going to be seen as this symbol up here but instead it’s going to be seen as this right here which is definitely not some sort of JavaScript code so just to kind of talk a bit about what exactly that function does you know that’s what it does uh so you want to make sure you use this particular function every single time you grab data from a user to make sure they don’t inject any sort of malicious code into a website so we do have two more pieces of data so I want to just copy this down down and I want to change the next one to last name and then I want to make sure that we go inside the post method and we go back and check what is this one called it is called last name so we can go back inside here and copy that in the next one I can call uh pets or something and then we go back we check what did I call this one I called it favorite pet so I can post that in here and it is important to keep in mind here that the naming of the variables doesn’t matter you could call this one test but it wouldn’t be very descriptive so we have to make sure whenever we create a variable that we know what it does by describing what exactly it does so this one would be the first name this would be the last name and this would be whatever pets I submitted so this should technically probably be a little bit more descriptive favorite pet like so now with that said I do also just want to mention this we do also have another function so right now you can see they have HML special characters but we do also have one called HTML entities which almost does the same thing as HTML special characters but instead of just taking special characters and converting into a HTML entity HTML entities takes all applicable characters that you could use for example any sort of other non-code characters and it converts that into HTML entities as well but again in most cases we do just use HML special characters so just keep that in mind for now that we do have this one and I will of course leave documentation to that particular function if you want to check it out inside the description but just know that we will be using HMO Special Care characters in most cases now that we have the data we can start doing something to it so I could go down here and just do some sort of code so I could say I want to Echo out uh a string and I want to Echo out these are the data that the User submitted and then I can go down below and I could also Echo out a break just to get a HTML break so we can actually jump down to next line we could also written a PHP new line which would have been something like this this but let’s just go ahead and do a break uh so what I’ll do here is I’ll jump down to the next line and I want to Echo out a piece of data so in this case I want to grab my first name and I want to Echo that one out then I’m going to be copying these two lines and paste it below last name and then we want to write our favorite pet so just like so we can copy paste copy paste the favorite pet and with that we can now go back inside the browser and refresh the page just to reset everything and then type something else in so I could for example say Danny Crossing and then we could choose a pet let’s just go and choose a dog in this case here cuz Bess is sitting right there I don’t know if you can see him but he is just kind of sitting here at the back he’s a bit tired um but I could choose dog and submit this one and then you can see these are the data that the User submitted Denny cusing Dog so now we grab the data and we could actually Echo it out inside the page just to kind of show what data we grabbed from inside the form now of course in most cases you would not just be echoing out data but instead you would be going in here and actually doing something with the data so for example inserting it inside a database or run a certain function inside your website to to do something with the data but just to kind of show that this is where you would actually start doing things with the data so what you could also do is so we don’t get stuck inside this page because this is just meant for a page where we run phsp code that the user is not supposed to have anything to do with this page is only for us as a developer so what I’ll do is I’ll send the user back to our front page using a header function so I can go in here and say we want to set a location colon and then we want to set the location that we want to send the user to so in this case we want to go back One Directory so I’m going to sayt dot slash and then I want to go inside index.php so with this header function here we now run the code and once we get down to the last bit of code we now send the user back to the front page so if we were to do that go back inside the website let’s just go ahead and refresh it here if I were to submit this data you can now see that oh we went back inside the front page because we just ran the code inside the other page and then we get sent back again to the front page which by the way brings me to just another little security thing um if I were to go back in here we can also run a else statements which basically means that if this condition turns out to be false then instead of just getting stuck inside this page here I want to to send the user back to our front page so if the user got in here in some sort of weird way by not actually posting the form but they just went inside the URL and typed in the address for this page here then they still get sent back to the front page because they access this page illegitimately so including this down here just as a fail save is just kind of like a good thing to do with that said I do want to address one more thing that I often get comments about and I just want to just say this once and for all whenever you create any sort of error hand inside this script here that you created yourself for example if I were to go down here and let’s say I want to check if any of these has been left empty when the User submitted the form so they went inside the website and they did not fill in the first name they did not fill in the last name and then they submitted it then what should happen well of course we don’t want the user to be able to submit the form right cuz there’s no data to submit but we do want to require that they submit all the data and one way you can do that is going inside your phsp code so I can create another condition so I can say we have a if statement and inside this if statement I want to check for a method called empty so basically this one checks if a variable right now contains no data inside of it so if it’s empty essentially so I can take the first name and I can put it inside here and if this one returns true it means that there’s no data inside the variable which means the user did not submit a first name so what I could do is I go in here and I could say I want to exit the script because I don’t want the rest of the script to run I just want everything to stop right here and then I might want to send the user back to the front page so again we copy this header and we send the user back to the front page maybe with an arrow message or something so what people tell me is Daniel you silly little man you can just go inside your HTML form go inside the attribute for example inside this first input here and you can write required if you do that then the user cannot submit this form right I can’t tell you how long I’ve been waiting to gloat about this cuz people they keep telling me inside the comment section even though we have this required attribute you can still submit the form it is very important for me to point out that any sort of front end whether it being HTML CSS or JavaScript is not going to be good security let me demonstrate for you if I were to go inside my form Handler the PHP and just for now so we don’t accidentally exit anything or something like that and I’m just going to go ahead and delete all these header functions here because I I want to stay inside this page if something happens let’s just go and delete everything here uh so we stay inside this page and Echo out all the data once we submit the form so if I were to go inside my website and I refresh the browser right now we have a required attribute inside this form here so if I were to try and submit this without typing anything inside this first one I’m going to get this little error message here so it says please fill out this form right so we can’t possibly submit this right now because it’s telling me when I click it that I need to fill out the form however if you know a little bit about browsers you know that we do also have a depth tool built into every single browser at least every single mutton browser so what I can do is I can rightclick and I can inspect anything inside this website here so when I do that we get this little depth tool that opens up at the bottom here now let me just go and zoom in so you can actually see what is going on here so right now if I duck this one over on the right side so you can actually see uh you’ll notice that inside this dep tool we can see everything about the front end of our website which means that we cannot see any sort of PHP but we can see every single HTML CSS and JavaScript inside this web page here which means that we can actually change it I can go inside my input and as you can see it says required so I can just go ahead and delete that one and if I do that and now go back inside the website so I can close this down I can now submit the form even though I did not input anything inside the first input so it’s very important that you know that any sort of front end HTML CSS JavaScript or at least as long as it’s not backend JavaScript like for example node.js or something but any sort of front-end javascripts is not going to be any sort of security so always use server side security when it comes to security inside your website and a really good server side language to protect your website with is of course phsp because it runs in the server so any sort of time you do anything with phsp inside your website or handle any sort of data from the user inside your website you should always sanitize and run error handlers using PHP in order to check for any sort of thing that the user might do in order to try and hurt your website so that’s very important so with all that said this is the basics when it comes to submitting data using a HTML form and then doing something with the data using PHP so hope you enjoyed this lesson and I’ll see you guys in the next one [Music] today we’re going to talk a bit about operators inside PHP and operators is something we use all the time whenever we do anything inside PHP now essentially a operator is something that helps us with logic connecting data together or math or any sort of thing that has anything to do with operations inside code and when it comes to operators we have many different types and I’m just going to cover the most essential ones that I know we’re going to be using for the next many couple of lessons uh so we’re not going to cover all the operators that exist out there we will talk about the ones that you will be using most of the time operators is also something we’ll have to learn a little bit about in order to actually do our projects in the upcoming videos since we have to do that one calculator uh project that I promised but we can’t do without talking about operators first so we have to talk about how to do various kinds of operations the first kind we’re going to talk about is something called a string operator and a string operator is a way for us to conect connect Different Strings or just different pieces of data together inside one string so to speak so essentially let’s say I have two different variables I have variable a and I have variable B and if I want to connect these two together what we could do is we could create a variable C and say we want to set it equal to hello world but I already have this data somewhere else I already have it inside variable a and variable B so what I could just do instead is I could connect these two together to create one string so what I could do instead is I could actually go inside variable C and instead of just rewriting everything again because we already have the data so there’s no need to rewrite it right so what I can do is I can take variable a and I can say I want to connect these two together by writing a punctuation and then I can include variable B so in this sort of sense we can concatenate two pieces of data together by using this punctuation in order to say well I have this data and I have this data and I want to combine them using this punctuation here I do also want to mention that you should be leaving spaces so don’t do this but instead do this and if I were to actually go and Echo this out so if I go below here and say I want to Echo out variable C what I could do is just kind of take a look at how this looks like cuz it’s not going to look exactly like we think it is if I refresh it you can see we get hello world because we can catenated these two together um but we don’t have a space in between the words so how do we create a spacing between two pieces of data well the way we do that is by going in and say well okay so I I just concatenated two variables but what if I want to concatenate a string together with this so what I could do is I could for example say that I have a string and I want to create a space inside this string and then of course we need to concatenate the string with variable B by creating a punctuation so just like this we now concatenated a string in between these two variables so we created a small space here so yes this is a way to to create spaces between data by just concatenating a empty pair of double quotes uh so what we can do is we can go back in refresh it and then you can see we get that little bit of spacing there and this just kind of like a really neat way to you know connect two pieces of data together so we don’t have to recreate it again so we don’t have to rewrite hello world inside a new variable so we just use old data we have already and just combine it in here and with this we do also have something called arithmetic operators so if we were to go in and paste that in and delete what we have already a arithmetic operator is essentially math it’s just like you learned in elementary school I think you learned this kind of math so essentially like plus minus multiply division uh we do also have some other things like um we do also have something called modulo and exponentiation so we do also have some high school things added in here but what I could do is I go in here and just simply Echo out some data so I could say 1 + 2 and we’re going to Echo this out now this is actually just a arithmetic operator when we add two numbers together like we just did here so in this case here of course if we would to save this and go inside my browser you can see we going to we’re going to get three because 1 + 2 is equal to three and the same sense we can do with all sorts of operators so we can also go in and we can you know minus we can also go in and multiply we can also go in and divide if we want to do that uh but we do also have this called modulo which is essentially when we go in and we want to have the remainder of something specific so in this case here let’s actually go and take 10 and say we want to divide by three or not divide modular by three uh essentially what you’re doing here is you’re dividing 3 into 10 and when you can’t do it any further then you need to see how many numbers are left over in the end 3 6 9 and then we can’t do anymore right but we we got to nine which means in order to get to 10 we have one more left so this would actually equal one if we were to go back inside the browser and refresh it so as you can see we get one and then we of course do also have to the power of which is basically going in and writing two multiplication symbols so if we take 10 to the power of three if we were to go back inside and refresh the browser you can see we get a thand because 10 to the th to the power of three is a th000 so we can do you know basic math calculations here uh but we do also have something called U procedence which is something something that goes in and helps us a little bit when it comes to doing a little bit more complicated math because let’s take an example here I do actually have an example on the side here in this example here you would normally if you know math from back in you know like back in the days when you learned math in school you would know that in this case multiply always comes before plus and minus which means that we have to say 4 * 2 which is 8 + 1 which is 9 so if you were to go ahead and do this go back inside my browser refresh it you can see we get nine however if I want to change the procedence of what gets calculated first inside a arithmetic operator or just a basic uh mathematic equation I can use parentheses order to do so so if we were to go in here and say you know what I want plus to go first so in this case here I write parentheses around one + 2 which means that these two are going to get calculated together first before anything outside the parth gets calculated afterwards so 1 + 2 is 3 and then 3 + 4 is 12 took way too long for me to calculate but this should end up being 12 so if we go back inside the browser and refresh it you can see we get 12 so we do also have something called operator procedence whenever we use parentheses we can do calculations and we can use more than one parentheses so we would to do uh 4 minus 2 then I can also use parentheses around here and then of course uh once we calculate these two together we’re then afterwards going to calculate these two together and then we’re going to multiply at the end there so again you can use this many as you want with that said we do also have something called assignment operators and what we can do here is basically assign things to something else which means that if we were to go in and say uh variable a is equal to two so in this case here I just assigned two to variable a and it is important to note here that we do not say equal to two cuz there is a small difference between saying that it’s equal to something or that we assign something to something it’s not really that important to know but I I just thought I’d mention that it’s not equal to it’s that it gets assigned to because variable a is a space in the memory so if you assign a piece of data to that space in memory then it’s not the same as saying that it’s equal to basically we just assign data to um to variable a that’s that’s what you need to know here with that said this is how we can assign a piece of data to a variable which we have done plenty of times up until now but let’s say I want to do something a little bit different let’s say I do also want to say variable a is going to be equal to itself plus something else what you could do is you could go in and say variable a + 4 and this would actually work out this is variable a which is 2 + 4 and then it gets assigned back to variable a which means that now now variable a is going to be equal to 6 right however this is extra code and this is just not how we want to do things we’re essentially double writing variable a which uh is not really considered best practice so what we can do instead is we can just go ahead and delete and do something like this so we can say plus equal to 4 so whenever we use any sort of arithmetic operator which we talked about which is plus minus multiply divide because we could also do divide if we wanted to do that but whenever we do something like this we’re essentially saying go ahead and take variable a and set it equal to itself plus whatever is after the equal sign so in this case we would also still get six so if we were to go and Echo this out so we’re going to Echo out variable a then you can see we get six inside the browser and the same way like I said we can do with any sort of operators that we learned about previously like minutes ago uh so I could go in and say multiply so in this case here it’s 4 * 2 so I would to go back in you can see that we get eight but now let’s talk about the next operator type which is something called a comparison operator and this is something that you will be using very often whenever it comes to any sort of conditions inside your code uh we have talked a bit about conditions in the past you know when you have a if statement says if this code is true then run whatever code is inside this like the curly brackets below so to give an example here let’s go and delete what we have here and let’s go ahead and create a if statement we haven’t really talked about if statements in depth we will get to do that I believe in the next video but let’s just go and create an if statement essentially when you have an if statement like this with the if keyword whatever is inside the parentheses has to be true in order for the code inside the curly brackets to run but let’s go and create a couple of variables here just to to talk a bit about a comparison operator so let’s say we have variable a and variable a has a piece of data assigned to it which is two and I can also go ahead and say we have something called a variable B which is going to have something like four assigned to it now what I can do is I can go inside my parentheses here and I can say is variable a equal to variable B what you’ll notice is that I’m actually using two equal signs here so I’m not using one because this means that we’re assigning something to variable a so a is going to be equal or be assigned variable B um and that’s not the same thing as doing two equal signs when you do it like this you basically checking if two pieces of data are the same and we’re not really checking for data types here we’re just checking if they’re the same what I mean by that is if I were to actually let’s go and output something so let’s say if this is true then Echo out this statement is true just to Echo something out inside the browser so if we were to do this and go back inside Firefox here refresh it you can see we get nothing so far and that’s because of course these are not equal to each other two is not equal to four but let’s say I went down and changed this to two and went back inside my browser now they’re going to be equal to each other right cuz two is equal to two however if I go back in here and say what if variable B is not a number but let’s say this is a string like it’s still two but now it turned into a string so is this going to be equal to each other what is your guess cuz we’re going to go in and find out now it is still going to be true and that is because we’re not checking for data types in this case however if I go back down to the equal signs and write a third equal sign now we’re checking for if they’re true and if they’re the same data type so we’re taking for two things now so if we go back inside the browser refresh it here you can now see oh it’s not outputting anything and that’s because it’s not true because this right here is a string data type again we can go and remove this just to test this go back inside the browser and now it is going to be true so two equal signs means that we’re comparing two pieces of data and three means they we’re comparing two pieces of data but also if they’re the same data type with that said let’s go and go back to the first one so two equal signs means we’re just checking if they’re equal to each other right what I can also do is I can replace one of the equal signs or the first equal sign I should say with a exclamation mark if I do this then I’m checking if they’re not true so right now because 2 is equal to 2 this condition down here is actually going to turn out false so if I were to save this go back inside the browser you can see that we’re not going to get anything but if I were to go back inside my code and make this four again then they’re not equal to each other which means that this condition is going to be true so if we were to go back in refresh it you can now see that we’re going to get this statement is true and with that we do of course also have three equal signs we replace the first one with a exclamation mark so this is going to check if they’re not the same data type or if they’re not the same number and we can also do other things and just comparing if they’re equal to each other we can also go in and say what if one should be lesser than the other numbers so right now we’re checking is a lesser than b which in this case is going to be true so if we go back in you can see that we actually output this statement is true but if we were to change this one to a five so we have you know is five lesser than four this is going to be false so we were to go back in you can see we don’t output anything and just like you learned in school we can also take for other things so not just lesser them but also greater than or we can also check for lesser than and equal to the other piece of data so in this case here if 4 is equal to four then this is going to be true right cuz it’s lesser than or equal to B so we would to go back in refresh it you can see we get an output and just to show one last thing there is also another way of writing this right here so is not equal to each other we can also write like this which does the exact same thing we’re just checking if they’re not equal to each other and we’re not really caring about data type in most cases just to mention it I do this one it’s just the way that I think is easier for me to make it make sense so this is the one that I use and with these this is a perfect time to talk a bit about something called logical operators because logical operators whenever we go inside a if statement like this one down here let’s say right now I’m checking is a equal to B which in this case is going to be true because 4 is equal to 4 so if we were to go back in and actually refresh you can see that we get this statement is true now let’s say I want to check for more than just one condition what you could do is you could copy paste a condition and put it inside another condition and now all of a sudden we start doing something called nesting nesting is something that most people frown upon because it starts creating very messy code I personally have done it in the past and I I regret doing it because it looks extremely messy but essentially you want to try and avoid having as many conditions inside other conditions as you can like in some cases you can’t avoid it but of course you know if you can then you should try not to and one way we can do that is by going inside the original condition here and say okay so what if I want to check for something else as well let’s say I have another pair of variables and this one is going to be C and this one is going to be D and this one is going to be two and this one is going to be six what I can do is I can go inside my condition here and say I want to check if this condition is true so is a equal to B which right now is true right so we output something inside the browser but I also want to check is c equal to D so what I can do is I can write and is variable C equal to variable D so right now we’re checking for two different things so the first condition has to be true but also because we wrote and the second condition also has to be true so both of these have to be true whenever we use and so would to go and do this go back inside the browser refresh it you can see oh we don’t get any sort of output because one of them is not true but let’s say instead I don’t want to check if they’re both true but I instead just want to check that one of them is true what I can do instead is I can write something called or so if I write or we’re basically saying this has to be true or this has to be true and if one of them is true then I’ll put something inside the browser so in this sort of way you can use logical operators in order to you know perform multiple conditions or multiple pieces of logic inside the same condition and it is possible to chain as many of these behind each other as you want so you can also go ahead and say we want to check for a and and then we can check is variable a equal to variable C then we can also do that and we can change as many of these behind each other as we want I do want to mention something here though which is something you will see in most cases when it comes to people doing programming which is that people don’t really write or or and uh because we do have another way of writing these and even though this may not make sense to a lot of people why we choose to do this instead um that’s just kind of like how people do it instead of writing or what you can instead do is write two pipe symbols and this means the exact same thing as writing or and instead of writing and we can use two ENT symbols and these two mean the exact same thing as or or and now the pipe symbol one is is the reason why I think this is going to be a little bit annoying for most people because the pipe symbol is not really the easiest thing to figure out where is on your keyboard I’m using a ntic keyboard which means my layout is going to be different for Americans or other people around the world but this is called a pipe symbol so pipe as in PIP PE pipe this right here so my best suggestion is to Google this to figure out where it is on your keyboard layout if you want to figure out where it is in my case I have to hold down alt and then the button right behind my backspace button and that is going to create my pipe symbol but now let’s talk about something here because right now I just chained three of these together but how exactly do U operator procedence function when it comes to this just like when we talked about the parentheses around you know when we were doing math uh we could determine what was going to be happening first but in this case here what is happening first are we going to be running these two first because we’re checking that one of these has to be true or we running these two first and then running the other one like what exactly is going on here when we use a Ampersand or a pipe symbol if I were to save this go back inside my browser you’ll notice that we get this statement is true which means that right now if I were to go and check this this statement is true but none of these are going to be true which means that we’re going to take the pipe symbol and this is where the divider is so essentially we’re splitting apart these condition checks and we’re saying Okay so this over here has to be compared first which which means that both of these have to be true but in this case none of them are so this is going to fail right but then we do also have a pipe symbol that says well okay so even if this fails we still also have this other side to check for and if this one is true then we’re still going to print something out inside the browser so in this case here as you can see we printed out this statement is true because the pipe symbol is going to be the divider that checks with these different conditions here so the pipe symbol is going to be the last determiner of what exactly is true inside this condition check here but now we do also have one last one that I want to talk about which is called incrementing and decrementing operators and these are essentially a way for us to do something inside Loops most of the time we can use them outside Loops if you want to um I can actually demonstrate this so if I were to go ahead and say variable a is going to be equal to 1 if I then go below here I can also Echo out variable a just so we can see EX exactly what this looks like inside the browser and then you can see we get one because variable a is equal to one however we do have something called a increment which means that I can go ahead and say variable a and add a Plus+ in front of it which means that we’re adding one to variable a which means that if we were to go inside the browser we now get two so a increment is basically just a way for us to add one to a piece of data and I can also go ahead and do a minus minus and this case we’re going to subtract one so we want to go back inside the browser you can see that we’re going to get zero however we do also have something called variable A++ which is a little bit different because basically the order of when we add one to this variable here is going to be changed so in this case here when we had Plus+ we say that we add one to variable a and then we Echo it out whereas if we were to go ahead and do plus plus after variable a we want to say that we want to Echo out variable a and then we want to add one to it so we would have go and do this what do you think we’re going to get inside the browser we’re going to get one so even though inside our code this is going to be two we don’t actually Echo out two because we’re adding one to it after we output it inside the browser so it would to go below here and actually say Echo and say I want to Echo variable a one more time then the second Echo is actually going to be two and the same thing goes for minus minus of course we can also say minus minus and then we’re going to Output a which is going to be equal to one and then we’re going to subtract one to it which means that the second time we Echo it out it is going to be zero so want to go back inside the browser and do this you can see we get one and zero and why does this matter you might be asking well in some cases when we start talking about loops inside programming and Loops is something that we will get to talk about a little bit in the future but essentially a loop is a way for us to Output the same code multiple times inside the browser as long as a certain condition is still true so let’s say I want to Loop out something until a certain number is lesser than 10 then we’re going to add one to the number that we’re checking for every single Loop and then when we get to 10 then it’s going to stop looping because now the number is not lesser than 10 anymore again this may be a little bit confusing because we haven’t talked about loops yet so don’t worry too much about it if you don’t quite understand what I’m talking about here I just want you to know that we have something called plus plus and minus minus so if you want to add a number or subtract a number you can do it by writing plus plus or minus minus so with that said I hope you enjoyed this lesson here we will get to talk a bit about conditions in the next video which is something we have touched upon in this video here and in some of the previous ones with the if statement you go in you check for a condition and then you output something if that condition is true but there’s a little bit more when it comes to condition so we’ll get to talk about that in the next video so hope you enjoyed and I’ll see you in the next one [Music] today we’re going to learn about something called control structures inside PHP and a control structure is essentially a way for us to navigate the code in different directions so if we want something specific to happen depending on something else then we can leave the code elsewhere and do something else if that makes sense we have many different types of control structures we have conditions which we’re going to talk about today we have switches we have a new thing in PHP 8 called a match we do also have include so we can include other files into our code and then we do also have something called Loops inside our code to Output code multiple times inside our browsers so there’s many different kinds of control structures and we’re going to talk about a few of them today we’re not going to talk about all of them since there is a lot to talk about um but we will get to more of them as we continue this course here but for now we’re going to focus on something called a Edition a switch and we’re going to talk about the new match thing that we just got inside PHP 8 so now we have talked a bit about a if statement before because we have used it a couple of times up until now in the previous video so essentially what you do is inside your PHP code you go inside and create a if statement and inside this if statement we can write a condition inside the parentheses to only run the code inside the curly brackets here if that condition is true so it’s important to point out here that we’re not talking talking about if the result inside the condition returns as true but if the condition is true so if I were to go inside and say that we have a bullan let’s create a variable up here I’m just going to call it Bull and I’m going to set this one equal to true so we’re not actually checking what is assigned to this Boolean up here so if I were to go in and actually copy this and paste it in we’re not actually checking if it is returning as true I mean right now we are so this is actually going to run the code but we can also go in and check if it’s not true this is actually also a operator that we forgot to talk about in the previous video but essentially I’m going in and I’m checking if this statement is not true then I want to run the code inside the curly brackets so we’re not checking if this value up here is true we’re checking if the condition is true okay whatever we’re checking for has to be true I just want to make sure people are not confused about that so with that said uh what we can do is we can actually go in and we can create a variable so I’m going to create a variable called a I’m going to set this this one equal to one and then I’m going to create another variable and I’m going to set this one equal to four so what I can do inside my condition down here is I can go in and use one of the operators that we talked about in the previous episode where we actually compare some of these different data so I can go in and say you know what I want to check for variable a and see if it’s lesser than variable B so in this case I can go in say is variable a less than variable B if so then Echo out first condition is true so in this case if I were to go back inside my browser refresh it you can see we get first condition is true because it is in fact true one is less than four but let’s say I want to check for multiple conditions inside one check here let’s say there’s two things that needs to be true what I could do is I could go inside my if condition here and just copy paste another if condition and then we would say Okay first we check for this thing if that is true then we go inside the statement and then we check for this thing and then we output something else that is one way to do it but we do something what is called nesting which is not really looked upon that fondly when it comes to programming uh since this creates a very weird spaghetti um messy code and that’s not really what we want to do when we’re doing programming we want everything to be very neat and tidy so instead what we can do is we can go outside and we can use one of the operators that we talked about in the previous episode so I can go inside my if condition here and say you know what I also want to check for something else so if a is lesser than b and our Boolean is true then run the code inside the condition here so in this case it is going to run because our Boolean is set true up here and just remember just like before I can also check if my Boolean is false by going in and adding the exclamation mark to say I want to check for the opposite it is also possible to do something else which is to go in here and say is our Boolean equal to false or as it is right now if I want to check if this Boolean is true then we can also just say is it true and then this would also work but it’s just kind of a habit for programmers to you know look a little bit more professional and actually check for a Boolean if it’s true or if it’s equal to false so using the exclamation mark here is something you should get used to I think because it is just a shorter way to write things and it makes you a look a bit more professional now in this case it’s not actually going to run this condition because our Boolean is true and I’m checking if it’s false so let’s say I want to check for another thing if this one fails I want to jump down to another condition and check for a second thing what I can do is I can go down below and I can create something called a else if statement and an else if statement basically is just a chain that we chain behind our if statement and says okay so if the first if condition is not met then jump down and check for the next one in the chain list so what I can do down here I can actually go and say you know what let’s go and check for the same thing but this time I want to check if our Boolean is equal to true so in this case here we would actually output something else now don’t get too confused about my code jumping back up behind each other because you can write it like this or you can write it like this it doesn’t really matter but because of my plugins inside my my little text editor here uh it automatically jumps back when I save so don’t get too confused about that it’s a way for the text editor to tell us that this belongs together this is a chain so therefore it jump spec behind it which I think is a bit weird but that’s just kind of how my plugin works so what I’ll do is I’ll go inside side and I’ll copy paste my echo and I’ll say the second condition is true because this one would actually be true then so we were to save this go inside my browser you can see that now we get our second condition is true and when it comes to a else if statement I just want to point out that you can write it like this in two words or you can combine it into one word and this would do the exact same thing it is kind of a habit for PHP programmers to have it in one word but in pretty much every other language out there we we split it into two words so the way I prefer to do it is using two words as well so now when it comes to adding these extra conditions behind the first if statement whenever we want to add more we just simply go in and add another else if statement so we can just continue just pasting and pasting as many as we want to create this huge chain where we check for a new thing and the important thing to note here is that whenever you hit a certain condition and it returns as true so let’s say this second condition up here is actually true then all the other conditions below are not going to run so it’s going to stop right there and it’s just going to Output whatever is inside this condition and it’s going to stop everything else from being checked so in this case here where every single one of the conditions are pasted below are actually true it is only going to Output one thing inside the browser because like I said it’s just going to stop the rest from running but now let’s say we want to have a fail save what if all of these fails to get run inside the browser because all the conditions are actually false what we can do is we can add a default Behavior so if a to go below here I can add a else statement without parenthesis and then I can write some code inside of here so we can copy paste paste the echo in and say none of the conditions were true so we can actually do this last effort here in order to say that something has to be output even if none of these are actually returning as true so let’s go inside all of the elive statements and just add a exclamation mark just to kind of say that you know what all of these are going to you know essentially be false so we’re going to save this go inside the browser refresh it and then you can see none of the conditions were true right now it says None of the condition were true which is not right it’s not plural there we go but you kind of get the idea here so what I’ll do is I’ll actually go ahead and decrease these cuz these are a lot of else if statements I’m just going to go and do this let’s just go and change this one so it doesn’t you know fail so we have the second one is actually succeeding so again if I were to save this go inside the browser we now get the second condition is true so with this we now talked about these if else if else statements however we do also have something called a switch inside PHP now a switch is a little bit different I do tend to see a lot of people are confused about when you use a switch compared to using IF else if else statements because they kind of do a little bit of the same thing on the Surfers uh but let’s go and create a switch and then we’ll talk about uh how they’re different and when you should use one or the other so in this case here I’ll create a switch which is using the switch keyword parenthesis and curly brackets now inside the parentheses we want to include whatever data we want to check for so in this case here let’s just go ahead and check for variable a so I’ll paste it inside the condition here and inside the actual switch curly brackets we’re going to write a bunch of cases which is kind of the same thing as taking for all these if else if else statements down here so I’m going to go and write a case and then I’m going to say what should the value be of variable a and if that is the value then we’ll run this block of code here so I’m going to write the case keyword and then right after we have to tell it what we’re checking for so if variable a is equal to something specific then run the code inside this case here so in this case I’ll check if a is equal to one it’s important to note we’re not writing case one so like this is the first case and then the second one has to be case number two and and so on we’re checking for the actual value inside this case here so if this were to be a string let’s say we had Daniel in here then I could ALS be checking for a string called Daniel in this case here so what I’ll do is I’ll just go back so we had the number here and inside the case number one let’s go ahead and create a colon and then say whatever code is in here we’re going to run if a is equal to 1 so I could for example Echo out um the first case is correct and you can write as much code as you want in here so we can also write more code down here below if you want to do that and just keep writing code um um but the important thing is that once you’re done writing the code that you need to actually get run if that case is equal to one is that you can go down below and add a break to tell it that now we’re done this is the break point of the first case so all the code in between the break and the case up there so everything in between here is going to get run if this is equal to one and we can of course add more of these so we can just go below here and say you know we have a second case and now I want to check if the number is three for example then we can go inside and say this second case is correct and just like with else if statements down here we just keep pasting more cases behind it and check for different values right after the case keyword here until we get something that is correct but let’s say we run into a scenario where none of these are correct just like we did below here let’s say we you know we don’t have this lse statement uh but none of these conditions are true but we want to run some default code if none of them are actually correct what I can also do inside the switch statement is I can go down and I can write default and then I can include some code below here so we can actually Echo out something else so we can actually say none of the conditions were true we just copy paste it up here and this will be what gets echoed out if none of the cases above are actually going to return as true and now some of you may be asking okay so when do we use a switch compared to using a you know bunch of if statements because they’re pretty much doing the same thing right the difference here is that inside a switch statement we’re checking for the value of a certain you know piece of data so in this case here variable a whereas inside a if condition we can actually check for multiple things so we’re checking is a lesser than b and is Boolean equal to fult so we can change it and then even in the next else if statement we can check for something completely different whereas inside a switch statement we’re checking for one thing in all the different cases down here so if you want to check for one specific value and then depending on that value you want to run a different set of code then you can use a switch statement but if you want to run different types of conditions that checks with different things then you can use a if else if else statement and just to show you what exactly is going on here because right now let’s say I want to go in here and I want to check for the number two and then I want to also write another case here and I want to check for the number three what we can do let’s say third just to have everything being correct what I can do is I can actually recreate this condition down here to show you exactly what is going on with the switch up here so if you were to go down here you could say is variable a equal to one that is essentially the exact same thing as this first case up here so if I were to go down to the elsf statement I can now check is variable a equal to 2 then I can add another one behind it so we can actually check for the next one which is is variable a equal to three so just to kind of show this is what the switch is doing it it’s comparing the same data to different sets of results let’s go ahead and comment out the switch and also the if conditions down here and let’s go above the switch and create create a match now A match is a little bit different from a switch because inside a switch here we just basically have a block of code that deviates into different directions depending on a certain results so if variable a is equal to something specific then we run a different piece of code however when it comes to a match we actually have a variable so we can call this one results and then we set it equal to our match keyword parentheses and curly brackets now because this one is a little bit different than a switch state or a if else if else condition we do want to add a semicolon at the end here because this is the exact same thing as creating a variable to we call this one result and then we set it equal to some piece of data and then in this case here we would actually add a semicolon behind it so this should have a semicolon behind it too because it’s the exact same thing as going in here and then creating curly brackets because we still need to have that semicolon so with that semicolon what we can do is we can go in and say you know we’re going to check for a certain thing so if variable a is equal to something specific then we want to return a value into our variable result depending on variable a so I can go in here and I can say you know what if variable a is equal to one then we can go ahead and assign a value which is going to be variable a is equal to 1 and in this case here we’re not actually going to add a semicolon we’re actually going to add a comma because we’re creating a small list of items here uh so what I can do is I can copy paste this below and then I can say if the data is equal to two then I can assign the data called variable a is equal to 2 so in this sort of way we’re just adding a different piece of data to a variable depending on what the result is now it is important to note here as well that the last condition you’re checking for in here should have a comma behind it this is how it’s supposed to be done so you do want to make sure that is that comma behind every single condition so don’t go down here and add a third condition and then delete the comma because this is the last statement uh just go ahead and make sure you have a comma behind all of them I do also want to mention here that you can check for multiple pieces of data inside the same condition here so you can actually go in and say okay so if variable a is equal to 1 or it is equal to three or it is equal to 5 then I want to insert variable a is equal to 1 inside variable result so using a comma when we want to tell it what we’re checking for here then we can separate different conditions and then output the same data inside variable results so just to Output this inside the browser let’s go and go below here and Echo out variable result because in order to actually get something inside the browser we do need to Echo it so doing this and going back inside the browser you can now see that we get variable a is equal to one another thing that’s important to note here is that we’re doing a more strict comparison type when we do any sort of comparisons inside this match statement here what I mean by that is we’re actually taking for types as well so if I were to to check for variable a being 1 3 or five but variable a is equal to a string that is equal to one then this is not going to return the actual data in here so if we were to save this and go inside the browser you can see we get a error message that says uncut unhandled match error which is the default error message you’re going to get if none of the actual checks in there is returned as any sort of data and just to mention it here for the people who do need to see it it’s the same thing as going inside a condition and then checking for variable a being equal to one but we use two equal signs so this is a very loose comparison so if variable a is equal to one or a string called one then it doesn’t matter but if we use three equal signs then it’s going to be a strict comparison type which means we also need this to be the same data type but now you can also do a default output inside a met statement so if you want to do the same thing as inside the switch down here where we have a default or with the else statement inside the if conditions down here then we can do the same thing when it comes to a met statement by simply going in and writing default and then point to some kind of value so we can go ah and say want to point to a string and say none were a match so now we have something default in case none of these are actually true so right now because variable a is equal to a string which is call one then none of these are actually going to be true but we’re still going to get an output inside the browser because we have a default return and again now the big question is when do we use a match versus a switch versus a if condition it really depends on what exactly the purpose is of your code so if right here you want to have a piece of data assigned to a variable but you want to have a different result based on something else inside your code then you can do that very easily using a match statement so instead of having to do a switch statement down here where we assign a piece of data to a variable we created up here which is going to be a lot more code than simply doing this then you can use a match instead but if you just want your code to Branch out depending on One Piece data then you can do that using a switch statement just based on the value of one variable inside your code but if you want to do different kinds of checks where you want to switch it up every single condition you’re doing inside this chain then you can use a if else if else statement down here in order to do different kinds of checks inside your code so it’s just kind of nice to have different types of tools inside PHP to do different things that is somewhat the same thing you want to do but slightly different and of course just like with all the other episodes this is quite a lot of information so we will get to do more practical examples with this in the future and with that said I do also want to mention here that in the next video we’re going to learn how to build a calculator together using PHP so we’re going to have an actual calculator inside our website you know using HTML and CSS we can type numbers into it then you can submit it and then you can get some sort of calculation out of it so we’re actually going to build something using what we learned up until now which is going to be quite exciting cuz now we can see how we can use PHP to actually do things inside a website up until until now youve just kind of been Gathering puzzle pieces but you haven’t actually learned how to put them all together to build something so that is going to be quite exciting uh so with that said I hope you enjoyed this video and I’ll see you in the next [Music] [Music] one so now we finally came to the point where we have to start learning how to create something using PHP since we’ve learned a lot of things about until now but we haven’t really learned how to put all those things together and actually create something using PHP the exercise we’re going to be doing today is to build a calculator inside the browser so we can actually go in and type into numbers and then we can perform some kind of operation on those numbers so we can multiply plus minus divide those kind of things uh so we can actually do something so as you can see in front of me here I have a basic index to PHP file that doesn’t really do that much it’s just kind of like a basic setup so we have something inside the browser I do have have two different style sheets inside my project here I do have a reset. CSS and I do also have a main. CSS file Now using these two different stylesheets is not something that should be new to anyone in here because a reset stylesheet is something you should know about already and using a regular style sheet for styling HTML things inside the browser is also something you should know by now if you don’t know how to do CSS there is of course a HTML and CSS tutorial on my channel but you shouldn’t need it at this point but it’s there if you do need it I do want to point something out about the CSS though because I have been told by my subscribers over and over again not to include CSS inside my videos because they’re just taking up space so if you want access to my personal files for these lessons here for example for these CSS files then I do have them available to all the different YouTube members and patrons so you can just go ahead and click the link in the description if you want to become part of that with that said I should also say something else which I shouldn’t really have to say but I I still got to say it because I keep keep getting questions about it CSS has no effects on your PSP code you can make the calculator in however way you want using CSS and it’s going to work the exact same way as my calculator with my CSS in here if you get any sort of errors in this video it is not because of the CSS okay just so it’s said so with that out of the way let’s go ahe and talk a bit about how to actually create a calculator so right now we have this basic front page and what we want to do in here at least what I want to do with this exercise is I want to build a calculator and have it run inside the same page because typically the way we do things is that whenever we want to have any sort of input from a user we use a HTML form so we can actually create that now to begin with so if I go inside my body tag here I’m going to create a form just a basic form it doesn’t have to be fancy and inside this form you need to have a action attribute and we do also need to have a method since we do need to submit this data and tell it how we want to submit this data should it be a get method or a post method now a get method will actually show the data inside the URL when we send this data because when we send data using forms we use the URL in order to do so but using a post method would actually hide the data so we can’t see it inside the URL and for this exercise here we’re going to go and use a get method just to begin with here because I do want to demonstrate something once we get a little bit further so if I were to go in and actually say I want to use a get method which means we can see the data inside the URL and then go inside the action here now when I submit this form I want to stay on the same page because typically when we submit the data we send the data to another PHP file and then we have that file handle the data and do things to it and then we go back to the front page with some kind of results however in this video I want to just stay on the same page I want to calculate things inside this same page and just show the data inside the same page here so the way we’re going to do that is we can either leave this action empty or we can go in and include something called a server super Global that points to the same page that we’re on right now one of the benefits to doing it this way is if I were to go in and say I want to open up my phsp tags because we do need to add phsp in order to add a server super Global is I can go in here and I can say I want to reference to Dollar signore server and then inside the brackets I want to reference to PHP self and of course a semicolon so when when we do this it is going to send the data to the same page that we’re on right now so we can do something with the data inside this page here now it is important to note that whenever you want to have anything shown inside the browser using PHP you want to make sure you escape it using HTML special characters otherwise you can have users that inject code inside your browser which is not very good always think security when it comes to PSP so inside of here we’re going to go to Echo and we’re going to Echo out HTML special characters or just CS with an S behind it parenthesis and then I want to grab the server super Global and paste it inside the parentheses and I don’t want to paste in the semicolon it has to be outside the the parentheses so we have it like this right here uh so doing this is going to escape our server super Global so users can’t accidentally accidentally people will UNP purpose try to hurt your website using this particular action here if you don’t sanitize the output of your code there’s a couple of different ways you can sanitize data and it really depends on what purpose it has are you trying to Output HTML into the website so we actually show something inside the website or are you trying to sanitize data submitted by the user then we use something else so there is a couple of different ways we sanitize data using PHP and in this case here because we’re writing HTML that is being output inside the browser we have to use HTML special characters now let’s go ahead and make sure that we have everything just jumping down on a new line because because I want to make sure you can see everything so I don’t have to scroll sideways like this constantly so I’m just going to make sure to wrap everything and I’m going to go and grab the form closing tag and I’m going to move it down and inside the form closing tag we’re going to go and include a input because I want to make sure that the user can actually type in a number that they want to calculate inside this calculator here so this is going to be a number type I’m going to include a name attribute and this one is going to be set to num one and then I do also want to include a placeholder just so the user knows exactly what to type in so we’re going to say we have a placeholder and this one could be number one or just something something that you think makes sense so they know what to type in inside this input the next thing I want to include is not the second number but I want to include the operator so in this case here I could add a select which is a way for us to create a drop down inside a form so I can call this one operator and then I can go inside and delete this ID now just to mention it since this might be something people are not aware of but the name attribute inside all these different input so inside the select we have down here and inside the input we have up here are going to be the name that we have to reference in order to grab this data from the URL after we submit this data here so just so you know exactly why we have the name input In Here Also I did not include a label for all these different inputs technically if you want this to be readable and you know allow screen readers to perfectly understand what this form is you know in order to make usability as good as it can you should add labels in here I talk about that inside my HTML form episode inside my HTML course but in this episode we’re just going to do some basic PHP calculator we’re not going to worry too much about HTML conventions and stuff like that we’re just going to build something using PHP so inside of here inside the select I’m going to add a option and inside this option I’m going to go and give it a value which is going to be add so we can just say we want to add something here so inside the option for the symol we’re going to see inside the browser I’m going to add a plus just so we know that this is plus adding so to speak so what I can do is I can copy paste this down and say I want to add a minus and we can call this one subtract we could also have called the above one addition because that is probably how you should say it then I’ll copy paste it below and I’ll go in and say I want to multiply and we can also say multiply inside our value multiply then I’m going to paste it down and I want to say I want to divide in this case here so divide and we’re going to add a division symbol and then for the last one down here we do also need to make sure the user can type in a second number so we’re just going to copy paste our input from up here so I’m just going to paste it in and I want to rename everything so we have name set to number two and also I want to set the placeholder to number two so now we have everything in terms of input so we just need to add a button in order to be able to submit this inside the browser so I’m going to add a button and just simply going to call this one calculate so now we have everything that we need in order to have a form that can actually submit data so if we were to go inside the browser just so we can see exactly what we have you can now see that I can type in a number so I can type two and then I can say what kind of operation do I want to perform so in this case I could say do I want to plus minus multiply divide so I could say minus and then we can say number one so this would actually end up being one once we calculate but in this case here it’s not going to do anything because we don’t actually have any PHP code that does anything inside this thing so that’s going to be the next thing we’re going to worry about like I said in this video here we’re just going to focus on doing everything inside the same page here so below my form I’m going to go and open up my phsp tags because I want to just add in the PHP here and in between these PHP tags the first thing we need to do is we need to actually check did the user actually submit the form data correctly because we don’t want to run any phsp code if the user did not submit the form data correctly so what I’ll do is I’ll include a if condition go in here and say inside the parentheses I want to check for something very specific so in this case I want to check for a super Global called dollar signore server and I want to check for a certain request method so I can say I want to check for a request uncore method which is going to be set equal to a certain method so in this case I want to check for a get method now we will run into a small issue here but just for now let’s just leave this as it is because as a default whenever you load up a page inside the browser it will be as a default set to a get method so this will run the code no matter what which is not what we want we only want to run the code if we actually submitted the form so technically we do need to go in and actually set this to a post method and then up here we do also need to make sure when we submit the data we submit it as a post method so go ahead and change these but don’t refresh the browser because I had a point in including a get method and that is simply that if we were to go inside the URL inside the browser you can actually see because I did actually try to click calculate one time before we changed all of this so using a get method you can see we get all this data inside the URL so we get number one is equal to two and operator is equal to subtract and number two is equal to one so we do get a bunch of data inside the URL and this is my point about how we submit data pass it into the URL so we can grab it again and then do something with it however when we use a post method we actually don’t see the data inside the URL even though we do submit it so if I were to go back in here and actually resubmit everything so we want to make sure we save everything inside the index file go back inside and refresh the browser now if we were to go in and type one and let’s just say 1+ one calculate you can now see that we don’t have any sort of data inside the URL we only have index.php but there’s nothing behind it so the data is still there we just don’t see it so the next thing we need to do inside the PHP code after checking for a post submit is that we need to go in and actually grab the data so we can use it for something inside our code so the way we do that is by going in and say you want to create a variable I’m just going to call this one number one going to set it equal to Dollar signore poost brackets and then I want to grab the name of the input that we included inside the HTML form so in this case here the first number was called num one because if it were to go up here you can actually see that’s what we included inside the name attribute so going back down we can include the num one so we actually grab it however even though this is bare minimum for grabbing data from inside a post or a get method so if it had to be a get method we would actually do this instead however this is not seen as being secure let’s pretend that right now inside your website a user goes inside this form and decide to start typing JavaScript code or SQL for injecting into a database or something then all of a sudden we have a hacker under loose that can destroy our website and database and all that stuff inject malicious code into your site and we don’t want that to happen you should always sanitize data whenever you have any sort of data submitted by the user and this is very important to do you should never trust the users whenever you have anything the user can type something into because they will try to break a website we do have a couple of different ways we can sanitize data either using a filter uncore VAR or a filter uncore input and in this case we’re just going to go and use input since that is specifically meant for either post get or cookies uh whenever it comes to sanitizing data from those particular sources so instead of grabbing the data like this instead I’m going to use filter underscore input parenthesis and then inside the parentheses we need to include some data so in this case I need to tell it what kind of data are we trying to sanitize here in this case here we’re trying to sanitize a post method so I’m going to say we have a input uncore post then I need to feed it the actual name of the post method that I’m trying to sanitize so in this case here it is called num one we do need to make sure this is inside a string by the way and then we need to tell it how we want to sanitize it like what kind of method do we want to sanitize it with in this case here I want to make sure we sanitize a float because when you go inside this calculator here you can go in and type a float number so you can write a decimal point uh so what I’ll do is I’ll go in here and tell it that we have a filter underscore sanitize you can actually see we get a bunch of options popping up here the one I’m looking for is sanitize _ float so that’s the one I’m going to paste in here so just to show it here if I were to zoom out it is going to look like this on one line okay it might be a little bit small for you to see but this is how it’s going to look like so the next thing I’m going to do is I’m going to grab the second number so I’m going to copy everything here and paste it below and the first thing I’m going to do is change the variable name so now we’re grabbing the second number and then I want to go and grab the number that had a num two set to the name attribute inside the form now when it comes to the next one here which is the operator we do actually need to do things slightly different because if I were to go in here and actually say I want to grab the operator so we can say we have a operator name that we want to grab if I were to go in and actually say I want to sanitize a string because this is actually a string data type that we’re submitting with the plus minus multiply divide icons here uh it is actually giving us a small error message it is saying that filter sanitized string is depreciated which means that it is no longer recommended that you use it inside your code and this is actually something new that came with PHP 8 because if you were to go inside the documentation inside php’s website you can actually see that they don’t recommend that you use this anymore because there’s a little bit confusion about exactly what you’re trying to do with this method here so instead they do actually recommend that you used HTML special characters instead of using this particular filter input here so if I were to go in I can actually go and just delete everything and say I have this HTML special characters and then I want to go in and actually just grab the post super Global and reference to the operator name and simply do this of course we do also need to change the variable name so we want to make sure we say Operator just to make sure this is also uh changed I know this looks quite confusing in like multiple lines like this but if I were to zoom out you can see this is like how it would look like when when it’s not looking messy and confusing so now that we grabb the data and sanitized it the next thing we need to do is we need to run something called error handlers because error handlers is a way for us to go in and actually try to prevent the user from doing things they’re not supposed to let’s say for example I go inside the browser here and leave one of these inputs empty so I go down and I leave the first one empty and I try to submit this then you can see oh it got submitted but we don’t want that to happen because then that means that things are going to go wrong there’s nothing to calculate in here so what we need to do here is make sure that the user has to type something in into both of these inputs here and I can already feel people typing comments now because some people will tell me that Daniel you can just go inside the form inputs and add the required attribute then people cannot submit the form so let’s go and do that let’s go inside the first input here and let’s add a required attribute at the end here and let’s go and do that for the second one as well so we’re going to go down to number two and we’ll also going to paste it in down there so now technically we cannot go inside this form and submit it without typing something right so if we were to go inside the browser refresh it just go ahead and say yes to continue the submission and if I were to try and submit this without typing anything oh we get this little popup it says please fill out this field and clearly no matter how many times I click it it is not going to submit so this is security right we are now preventing people from submitting I clearly have a point here in case you couldn’t tell um so if I were to go inside the browser and you just know a little bit about browsers what you can do is you can right click inside the input inspect go inside this little developer tool go in and actually delete the required attributes so I can actually go and delete this one and I can also go in and delete the second one so I’m just going to click enter close it down and now I can actually submit it so this is not going to be a valid way of trying to not submit the form without filling in inputs always use PHP for security don’t do any sort of security with front-end languages like HTML CSS or JavaScript in the case of JavaScript you can do it if you’re using it as a server side language but don’t do it if it’s a front-end language okay always do security using a server language so what I’m going to do is I’m going to go back down to my code and I want to start including some error handlers we can actually write a comment here just so we know exactly what we’re doing so I’m going to go and type error handlers so I know exactly what this code does we can also copy this comment here go above and say grab data so we know exactly what this does here so let’s go and add from inputs just to be precise now when it comes to error handlers we can pretty much come up with as many things as we want so for example I could say I want to check for empty inputs because that should not be allowed I could also check for a maximum number of decimal points or if they didn’t type in a number but instead typed in a letter on the keyboard so we can check for many different things the first thing we’re going to do inside this ER Handler here create a Boolean because I want to actually have a Boolean that tells me is there any errors happening inside my error handlers here so what I can do is I can say we have a Boolean called errors and I’m going to set this one equal to false because right now there’s no errors happening inside this code here so for now it is just going to stay as false but if we were to go down and say you know what let’s go and check if the user left any inputs empty what I can do is I can run a if condition and in inside this condition here I can say I’m going to use a function built into PHP called empty and basically what this one does is that allow for me to paste in a variable so for example number one and it is going to tell me whether or not this variable has no data inside of it so right now if the user did actually submit something inside number one so they type something inside the first input here then it will actually have data inside of it but if they left it empty then it’s not going to have any sort of data so if this one is empty or because we learned about this operator in the previous episode if number two is also empty or because we have a third thing from the user which is our operator so I also want to check if the operator is empty then run some error code inside the curly brackets the first thing I want to do is I want to Output a message inside the browser so I want to actually paste in this little piece of text that I have here so just a basic Echo where we Echo out a string which is going to be a piece of text called fill in all fields and then I simply wrapped some paragraph tags around it the paragraph tags are only there because I wanted to style my error message inside the browser so it actually turned red so people could actually see it but you can style this in however way you want to inser your CSS file after doing this I want to go down to next line and I want to make sure that we now set our errors equal to true because now we do actually have an error so this should be true and this is basically all we have to do right here so what I can do now is I can check for a second error message the second one we’re going to check for here is going to be whether or not the number submitted is actually a number or is it a letter because if someone were to go in here right now you can oh I actually managed to again this kind of proves that even though you go inside your form up here and you say that oh it has to be a number sometimes it doesn’t quite work because I can’t type letters in here but clearly I just did so it didn’t quite catch it when I clicked on my keyboard also you can right click inspect go in autofill it with a you know a value or something again don’t use HTML for security okay it’s not going to be enough I have absolutely no idea why actually type something in here but it proves my point so I’m kind of happy it happened so what I’ll do is I’ll go down and I want to create another if condition so I want to say I have a if condition and inside this condition I want to check for something called is numeric so I can actually go and run a build-in function called is numeric and then I’m just going to go and paste in our number one then I want to include a or and then I also want to check for number two remember we’re only checking numbers right now so we don’t need to have the operator included in here but something else we do also need to pay attention to here is that right now I’m checking are these numbers and if so then run a error message and that’s not really what we’re trying to check for here we want to check if the these are not numbers right so either I can go in and say is this equal to false then do something or we can do it the professional way and go in and just write a exclamation mark in front of is numeric because this is checking is this false and the same thing of course we need to do to the second one over here so right now if these are not numbers then run a error message inside this condition here so I’ll just go and copy paste what we have up here and I’ll change the message so instead of fill in all Fields I’ll instead say only write numbers and paste that in instead at this point here you can include as many error handles as you want to have inside your code I’m just going to go and leave this for now otherwise this is going to be a very long episode so let’s just go and include these two error handlers here and say that’s that’s okay for now so after checking for errors I want to go down and I’m going to create another comment and I want to say calculate the numbers if no errors then what I want to do is I want to run a if condition and I want to go in and say if there were no errors then run this calculation inside the curly brackets so the way we do that is Again by checking if errors up here is equal to false because if it’s equal to false then it means we had no errors because we didn’t change it further down so now we actually want to run the calculation so if errors is equal to false by adding the exclamation mark in front of it after doing this we want to go inside the curly brackets and we want to actually check what kind of operation we need to do here did the user want to plus or minus or multiply or divide we don’t really know so we need to run a switch statement in order to determine what exactly they submitted so going in here we can create a switch say we want to add a pair of parentheses curly brackets and inside the switch condition I’m going to go and say we want to include the operator because the operator is going to decide what exactly we’re doing with these numbers here so I’m going to paste it in because that is the one I’m looking for and inside we’re going to go and include a couple of different cases so I want to say case number one is going to be if we have a string that is equal to add then we add a colon and then we add a break just for now then in between these two we want to actually add in what is supposed to happen so in this case we want to actually add the two numbers together so what I’ll do is I’ll say that we have a variable called value that we’re creating right now and I want to set this one equal to variable number one plus variable number two semicolon and this right here is going to be the first calculation that we do inside this switch statement so now we just copy paste it because we have a couple more we have three more we need to paste in so we’ll paste in like so and then we’re just going to go and change the cases so right now we have subtract and then we also have multiply and we have divide and just to mention it here these strings here are what we typed in inside the options inside the form so if we were to go up inside the form you can see that these are the ones that we included in here so that’s the one that we actually refer to inside these cases down here now we do also need to make sure we change the operation so this is going to be minus this is going to be multiply and the last one is going to be divide and we do also want to add in a default because if something happens and something goes wrong and we don’t actually have any sort of data inside the operator or something something it could happen something might happen Okay so you have to think about everything here what could go wrong at some point so let’s go and include a default which is going to be an echo and this Echo is simply going to Echo out a error message so I’m just going to copy paste what we have up here paste it in and then I’m just going to say something went wrong something went horribly wrong just to be a little bit dramatic here so now the last thing we need to do in order for this to technically work is to go after the switch statement and actually output the calculation that we just calculated here so what I’ll do is I’ll go below here and say we want to Echo and I want to Echo out a string which is going to be a paragraph because I want to actually have this styled inside my browser so I’m going to close off the paragraph as well then I also want to go in and add a class because I do actually want to style my text inside the browser so I’m going to say I have a class and now something is going to happen and you may have noticed this on the previous Echoes up here because if I were to go in because typically when we have a class that equal to something we need to have double Cotes right how however if I were to do that we’re actually canceling out the surrounding string double quote so we can’t really do that if we were to try and write something in here you can see oh that is not working out it’s actually giving me an error message so something we need to talk about here is the use of single quotes because you can either use a single or a double code for for example creating a string so I can actually go and do this instead so we just use a single quote or we can use a double quote and the same thing goes for HTML you can either use double quotes or you can use single quotes and by using single quotes and mixing it together with double quotes we don’t cancel out the string so to speak so I can actually go inside my class and I can say I have a class name set to celc dash results and in this simple sense we now have something that works okay so we’re not canceling out anything here so inside the I want to Output result is equal to space then I do actually want to add in my value which is right now up here so we have a value variable so what I’m going to do is I’m going to concatenate things so we could actually just so it’s a little bit easier for you to understand go in here and delete the last ending paragraph tag and after the double quote I’m going to concatenate my variable and then again I want to concatenate a string because we need to close off the paragraph so I’ll go ahead and say we have a closing paragraph graph and do something like this so now at this point here this is technically going to work however there is going to be something slightly off about this code here let’s say this switch statement here gets run and the default case down here is the one that is actually being used because something goes wrong and we don’t actually run any of these cases up here what is going to happen is we’re going to get an error message because variable value is never created we don’t actually create it inside the default value down here so we don’t actually have it when we reference to it inside the echo down here so it’s going to Output a error message so what I’m going to do is I’m going to go right before the switch statement and I’m going to declare the variable so we have it no matter what so we don’t get an error message inside the browser and now typically we would be able to just go and declare the variable like I just did here so we just have a variable but we don’t actually assign any sort of data to it however in some cases that is actually going to throw a error message for some people it is not actually going to work it’s going to have a reference error or something so what we want to make sure we do here is we want to actually assign something to it as a default which is going to be zero the reason I’m adding zero is because this is going to be a number or a float that has to be assigned to this value here so this is going to be a float data type that is assigned to Value once we actually start doing those calculations down there we did talk about this in the previous episode where we talked about data types so we create variables that don’t actually have any sort of data assigned to it and the fact that this is not something we should do inside PHP because in some cases it is actually going to throw an error message so we do need to make sure we assign a default value to a variable inside PHP again we can keep adding to this project here but for now this is going to be okay so we just want to declare the variable before the switch and everything should be okay so having saved this let’s actually go and test this out inside the browser so if I were to go inside my browser and type in number one actually we need to refresh everything first so that is important don’t worry about those error messages those are only there because I went into the developer tool previously and deleted the required attribute so don’t worry about those right now all the changes we made to the code will take effect now as we click the next time on the calculate button okay so don’t worry about those error messages right now so going inside I can go in and say 2 + 2 is going to be equal to 4 so it’s working yay but now if I were to go inside the form and try to submit it without having any sort of data typed into let’s say the first one up here then we’re going to get a well first of all please fill out this field but if we were to go in and actually remove the required attributes you can see we’re going to get our error messages so in this kind of way we can create a cool calculator inside our website using all sorts of PHP code that we’ve learned up until now so I can actually go in let’s go and test out multipli so we can say 10 * 2 is going to be 20 so we can do a bunch of different calculations and just kind of like experiment with it and and try out what we just created together here so with that this is how we can build a calculator using PHP I hope you enjoyed this lesson here because this is a stepping stone to learning PHP this is the moment where people are going to go and say oh that’s pretty awesome now we have hope that we can actually learn PHP and do something inside websites with it hey so this is a pretty big moment I think when it comes to learning PHP so with that said I hope you enjoyed and I’ll see you guys in the next video [Music] so back in our data types episode we talked a bit about arrays but we haven’t actually talk specifically about how we can create arrays and change them and what we use them for and how to create different arrays with different types of keys inside of them so there’s a little bit we need to talk about when it comes to array since an array is used very often inside PHP the previous episode where we talked about how to create a calculator where we did a small example together uh could have been done a little bit easier if we did use an array in order to Output error messages inside the browser so arrays is something we have to talk about now an array is a type of data structure that allow for us to store multiple values inside one variable so we can have one variable that is equal to many different types of data so we can easier manage many pieces of data at the same time so let’s be a little bit boring here and create a list of fruits because that is going to be a very good way to kind of show you the example of what I mean when I talk about storing many pieces of dat inside one variable because if I were to go down here and actually create a fruit variable and call it fruit one I can set it equal to a apple now the problem here is that if I want to have another piece of fruit and store that equal to another variable then I would have to go down and copy this down and say we have something called fruit two and set it equal to a pair and doing this is not really a good idea because all of a sudden we have all these different variables that could just have been combined into into one variable and then stor it in there so we could just access that one variable to grab all the different fruits inside my code so let’s say instead of doing all of this I’m going to go and delete back and I say I want to have a fruits variable now I’m going to turn this one into an array and there’s two different ways we can do that either I can go in and say we have an array data type parenthesis and then inside the parentheses I can go in and say I want to add a apple a banana yes that’s how I say banana I think you say banana like that might sound a little bit more correct so I’m going to go and add in a third piece of fruit which is going to be a cherry and now we have all three pieces of data inside one variable here inside an array now there is another way to write this though which is a little bit shorter and in my opinion just a little bit easier to work with so if I were to go down here and copy it I can actually go in and instead of writing array I can wrap this around a pair of square brackets so I can go in here and add these square brackets and just like this we now also have an array and just to make things a little bit easier for you what you can also do if you wanted to is you can actually add this down to multiple lines just to make it a little bit easier for yourself it’s really a personal preference if you want to go inside your code and have everything separated on a separate line or if you want to have one big line with everything inside of it I do also want to mention one more thing here when it comes to this particular way of writing things because you can also add a comma at the end here or inside the other one up here we can add a comma which is called a trailing comma this is something that we weren’t allowed to do before PHP 8 but now the PHP 8 is out we can actually do this if you at some point expect to add more pieces of data behind it so this is not really something where you have to like make sure there’s no come at the end because oh no then it’s going to break things but we can actually leave in a comma if you want to personally I don’t like to add a comma at the end because that’s how I’ve always done it because that’s how we were supposed to do it but just to tell you that you don’t break anything if you have that last comma so now let’s go and delete the top array up here and just worry about having one array inside our code and talk a bit about how we can access this data here when we create an array we have something called a key which is a way for us to access a certain data inside an array as a default the array indexes are actually going to be a integer which means that we can go in and just use a number in order to access a certain piece of data inside the array so what I can do is I can go below here and say I want to Echo out my array called fruits square brackets semicolon and then inside the square brackets I just simply refer to the index that I want to access what I mean by index is that we go inside the array and the first piece of data is going to have an index as zero so we can actually write that over here just so it makes sense for you the second piece of data is going to have an index as one and the third one is going to have an index S2 I do often experience that people have a hard time wrapping their head around starting at zero when they have to to count something when it comes to programming we always start at zero so the first piece of data is not going to be one but it’s going to be zero so let’s say I want to access banana then I would actually go inside the brackets down here and say I want to Echo out fruits with the index of one so where to do that go inside my browser and as you can see I tried to dim it down a little bit so it wasn’t completely white and burned your eyes out um but if we were to refresh the browser you can see we get banana so in this kind of way we can Echo our data from inside an array using a index number now let’s say I also want to go down and actually add another piece of data to this array here what I can do is I can refer to my array so I can go ahead and grab the name of it and anytime we refer to an array we always need to make sure we add the brackets behind it because this means that this variable is an array and I want to assign something to it so we can set it equal to let’s say orange because that is another type of fruit if I were to do this it is going to take the orange and move it behind the array so now we have apple banana cherry and orange behind it and that of course would have an index as three so if we were to go below here and say instead of echoing out down here we’re going to go below and Echo out a index of three and if we were to do that go inside the browser you can now see we get orange and in the same sense we can also go in and say we want to change a certain part of the array so let’s say instead of banana banana banana we can go in and say that okay so we don’t just want to assign the array to something new but I want to go in and replace the index number one with orange so now we’re actually replacing banana with orange so if we were to go down here and say I want to Echo out the index one save this go inside the browser you can now see we’re going to get orange so now we no longer have banana inside the array at least when it comes to below this line of code here in between here by the way we still have banana as being index number one but as soon as we add in this line here anything below is not going to have banana inside the array but now we do also have a way to delete data from inside the array so if I want to remove a piece of data I can go in and use a buil-in function inside PHP which is something we will talk about in a upcoming lesson because build-in functions is something we use all the time we did also use a bunch of build-in functions in the previous video where we talked about how to create a calculator uh but we haven’t talked about buildin functions yet but we will get to it so what I’ll do is I’ll use a build-in function called unset and I’m going to say I want to grab my fruits array and then I want to say I want to remove the index number one so in this case here we still haven’t replaced banana because we took out that line of code so now we no longer have banana inside the array so if I were to actually try to Echo this out inside the browser using the echo down here you can see that we’re going to get a error message because oh undefined array key one because we have no data inside of it but now you could argue that using unset here is not really going to be deleting an index from inside the array because technically we might want to have the Cherry being moved back on index because right now we have an index as zero and as two and index number one has nothing inside of it so if I just want to completely take out banana instead of just deleting it or unsetting it we can actually go in and use another build-in function called array uncore splice which is another function we have that we can use where we go in and give it a couple of parameters so in this case here I’m going to tell it which array are we talking about and in this case we’re talking about fruits then the second parameter is going to be where do we want to start deleting from so again we count using indexes so if I were to go in and say okay so we start at index number zero so I have to refer to index number zero and then from zero and then one forward I want to delete inside this array so we’re going to delete one length ahead which means we’re going to take out banana and doing this and then going inside the browser refreshing you can now see that index number two is going to be Cherry it is important to point out here that we do also use array splice to insert other arrays or other pieces of data in between certain array elements but I’ll talk about that a little bit later at the end of this video here so now that we know a little bit about arrays let’s go and talk about keys because right now we’ve used numbers which might not make a lot of sense if you want to have a specific label for each index inside the array so what I can do is I can go and delete what we have here and instead let’s go and create a array called tasks as in like house chores or something so what I’ll do is I’ll set this one equal to an array and let’s go and move this down to separate lines cuz that is going to look a little bit easier for the eyes here so in this case here let’s go and say I want to add a name so I want to say that Daniel has a certain house chore inside this house here what I can also do is I can add in a second person so we could also say we have freedom I can also add in a third person Bess and I can also go in and add a fourth person so in this case here let’s say Bella so in this particular array here I have a bunch of house chores and each person has a name inside this array because they have to do a certain house chore but how can I assign a certain key not as a number but as a string to each person so I know which person is doing what inside this house so what I can do is I can go inside and create what is called a associative array which is when you have an array that has a bunch of strings as Keys instead of numbers this means that I can go in here and say that I have a chore which is called laundry and I can assign Daniel to this particular key so by creating a string and then pointing to a value we can do it in this sort of way in order to create a different types of key so we can actually go ahead and just copy this down and I’m going to go and change the name for each one of these so the first one is going to be laundry the second one is going to be trash and we do also have a chore called vacuum so we can say vacuum and the last one is going to be dishes so what I can do now is I can actually go down below and Echo out a piece of data from inside this array but instead of using numbers I can go in and say we have an array called tasks and I want to reference to a certain key and let’s say in this case I want to figure out who’s doing laundry inside this house here so I can go ahead and say I want to refer to the laundry which means it’s going to Echo out who’s doing the laundry inside this array so I can go back inside the browser refresh it and you can see we get Daniel so this order of way we can create a associative array and actually have a label for each of the data inside the array so now we talked about how to Output one piece of data from inside all of these arrays but let’s say I just for developer purpose want to know exactly what is inside the entire array just to see if something went wrong inside the website you know just to kind of like double check what exactly is inside a specific array what I can do instead of echo is I can actually go and use something called printor R parentheses simp colon that I can paste in the name of the array that I want to actually print out inside the browser so in this sort of way I can go and save this go inside my browser and then you can see we get a complete list of all the data inside this array and right now because this is a associative array you can actually see we get the key then we set it equal to a value then we get the next key and then we set it equal to another value but had this been a index array using numbers then of course this would have been zero pointing to Daniel and then one one pointing to feta and so on and let’s talk about a few other built-in array functions that we can use now there is a lot of them we can use but I just want to show you some of the more basic ones now we do also have something called count which means that we can actually figure out how many pieces of data is inside an array so we’re going to use count parenthesis and then we’re going to go and paste in the array so I can go in and paste it in and then you can see when I go inside the browser that it’s going to tell me you have four pieces of data inside this array here one users of this particular function could be if we were to grab data from inside a database because when we grab data from a database it gets returned as an array so we can actually use this function here to count if we actually had any sort of data return from the database so that’s one particular usage of using count inside PHP but we do also have other pieces of functions we could use for example if I wanted to sort an array I can do so in a ascending order which means that if I were to take this task array up here and put it inside the parentheses I am now sorting it ascendingly which means that we’re going to take letters like a first and then it’s going to be b c d e and so on which means that it’s going to go in and sort these alphabetically if any of these values had been numbers then of course one would come first or actually zero would come first and then 1 2 3 and so on so we were to do this and go down and say print R to get this array you can see that we’re going to get the array but it’s going to be in a different order now so if we were to save this go inside the browser refresh it you can now see that b is going to come first and then Bella Daniel and then feta and it’s actually going to give it to me as a indexed array not as a associative array then we do also have one called array push and for that one we do actually need to use a nonassociative array so if would have commented this one out and paste in the previous one we did called fruits I can go in and say I want to take my fruits and I want to use a array push and say I want to grab this fruits array put it inside the array push function which means that we’re now pushing a piece of data at the end of the array which means that I can go in add the array that I want to add some data to and then tell it what kind of data I want to add so in this case here I can say mango and of course a semicolon at the end here and then I can actually go and print it out so we can take the fruits array go inside the print R and go inside the browser and then refresh it and then you can see we have mango pushed in at the end here of course this is very similar to just going in and just like we talked about at the very beginning just going in and grabbing the array so we’re going to say fruits we have an array and then I said equal to a new piece of data so this would actually do the same thing in this case here and the reason that’s relevant is because if I were to do the same thing to a associative array so if I were to comment out my fruits array here and instead let’s say we’re talking about the task array up here which is a associative array which means that we have these different indexes which are actually strings if I want to add another piece of data at the end here I can’t use array push because that only works for indexed arrays so would actually have have to go in and use my last method down here so I’m going to go and say I have my array tasks and then inside the brackets I’m going to go and add in a new string which is going to be the key so I can say we have something like dusting which is going to be assigned to a person called Tera so this is how you would push in a new piece of data at the end of a associative array so if I were to actually go down and print out this array here so we can actually just delete what we have up here and say we want to print out tasks inside the browser you can now see that we’re going to get Terra at the end here for the dusting assignments and the last build-in function I want to mention here is one that we have talked about already so if we were to go in and delete everything except for my fruits array because that’s the one we’re going to use in this example here and let’s go ahead and write down the array undor splice that we already used previously so we’re going to say splice and parentheses and semicolon so like we talked about if I wanted to delete a certain piece of data inside this array and I wanted all the other indexes to move back one slot what I could do is I go in and say okay which array are we talking about we’re talking about the fruits array right so I put that in here and then I say from where do you want to delete from so I could say for example I want to delete from index number one and then I want to delete one ahead of it so right now we would actually take out the cherry and then replace it with something else but let’s say I don’t want to delete something but I just want to insert some data in between this array somewhere what I can do is I can say I don’t want to delete anything by writing zero and and then I’m going to go and add the name of another piece of data at the end here so I can say I want to add in a string and I’m just going to go and add in mango just to have it here so if I were to actually print all this inside the browser you can notice that we now have mango in between banana and Cherry so I paste it in actually I’m mistaken here because I’m not actually going to insert it in between banana and Cherry we’re actually inserting it after Apple so in between apple and banana and the reason for that is that we did actually say to start at index number one which is here so all this data is going to get pushed over to leave space for the new data so that’s what we’re doing here uh so if I want to put it in between banana and Cherry we have to write two because we’re now going in saying 0 1 2 and this is where we want to insert the data which means all this data here has to move over in order to make room for it so if we were to save this go inside the browser and refresh it you can see that we now have apple banana mango and Cherry but this is not just when it comes to one piece of data so what I could do do is I could insert an entire array inside another array so I can actually go ahead and say you know what we have another array up here I’m going to go and call this one test or something just rename it something so I’m going to set it equal to a array and I’m going to go and insert some more pieces of data in here so could actually say we have mango and I do also have strawberry and then instead of saying I want to insert mango inside these when I splice them I can actually refer to this array up here and just say I want want to grab this array I want to go into slot number two I don’t want to delete anything from inside the array but I do want to merge test into that array so if we were to save this go inside the browser you can now see that we have many pieces of indexes inside this array here so in this kind of way we can create arrays and manipulate them and change data and replace data and just do all sorts of things when it comes to arrays because arrays is something you will be using quite a lot inside PHP code for all sorts of purposes so learning how to do arrays is something that is very important to do now there is one last thing we could talk about here which is a little bit more complicated than just talking about arrays which is something called multi-dimensional arrays and essentially this means that we have an array that has arrays inside of it so now we’re going Inception here there’s an array inside an array so let’s say I have an array called fruits and I’m just going to go and move everything down to the next line just so we have it a little bit easier to see and let’s say instead of calling this one fruits I’m going to call this one food and then I want to have different food types inside this array here and instead of Apple we can actually go inside and say we have another another array by using the array keyword and then go in and say we might have something like so I can say we have a apple and we also have a mango and in this sort of way we now replace one of the indexes inside the food array with another array which means that if I want to refer to for example apple or mango I need to go down below and I want want to Echo out the food array and say I want to grab a certain index and in this case here I want to grab the index number zero because that is the first slot inside this array so we’re going to say zero but then I need to tell what the index is of the array inside index number zero so I need to go after add in a second pair of brackets and go in and say I want to grab the first index which is index number zero and Echo that one out which is going to be apple I hope that makes sense okay so we’re we’re going to go inside the browser and as you can see we’re going to get apple because we’re grabbing the uh first array inside this array which has Apple a mango inside of it so if I wanted to grab mango I could also go in and say I want to grab the uh first index which is going to be the second piece of data inside this array here so we to do that we now get mango and if we wanted to grab banana then we just going to say we want to grab the first index and don’t add in the second pair of brackets so we can go in and then get banana but now what about associative arrays cuz we can also do that if we wanted to so let’s go and go back to our Apple examples now it’s just a very basic array uh let’s say I want to add in a food group and I want to say this one is going to be fruits and I want to point to a array which has a bunch of data inside of it so I could say fruits is going to be apple I do also want to add in banana and then I want to add in a cherry and then instead of having more fruit down here below we can also go in and just just copy this paste it in below and say we might want to have meat and then we can have something like chicken we can also have fish and then maybe something like sheep just so we have a little bit of data inside of here or just have two pieces of data you can also do that if you want to you don’t have to have three every single time and let’s go and add in a third group of food so in this case if we could for example say vegetables vbl I think that’s how you say it in English you write it out veg but you say it vexes okay I do know the difference uh so what I can do is I can go in here and I can for example say cucumber and let’s go and add in a carrot so in this sort of way we now have a bunch of arrays inside an array so we have a top category called food and then inside of here I can now refer to a type of food so if I want to grab something within the vegetables I can go and add that in then afterwards add another pair of brackets and say I want to Output index number zero which is going to be cucumber so going inside the browser we can now refresh and then you can see we get cucumber and of course you can also go inside this array here and add this as an associative array so if you don’t want cucumber but you want to have something pointing to cucumber you can also do that so you have a associative array within an associative array um but just to tell you that this is how you would normally go around doing this if you want to have an array inside an array and this is something we call a multi-dimensional array so with that said we now talked about arrays in pretty detail I think for now so with that said I hope you enjoyed this episode and I’ll see you guys in the next [Music] [Music] video so up until now in these many lessons we’ve had we’ve talked a bit about build-in functions inside PSP which are functions that exist inside the PSP language that we can use in order to do many different operations inside our code and there are so many functions out there that we can’t do one episode and talk about all of them since it’s going to be a very long episode if we had to do that and honestly I don’t know all the functions because there’s so many of them but what we can do is we can talk about some of the more popular ones that you might want to use at some point inside your code for various things so in this episode we’re going to talk about some of the functions that are built into phsp that we can use for different things so inside my document here I’m going to scroll down so we have our little PHP section and the first functions I want to talk about are some that are related when it comes to using strings inside your PHP code so let’s go and create a string here so we can actually do something with it so I’m going to create a variable I’m just going to call it string so we have some kind of name for it and then I’m going to say hello world it is important to mention here that whenever we create a function or reference to a function inside our code we do so by referring to the name of the function followed by a pair of parentheses because the parentheses are going to be used to call upon that function so we can do something with it so what I can do here is I can say we want to Echo something out and I can call upon a function called string length which is written by saying St Len and that stands for string length and what we can use this for is to call upon a function in order to tell us how long a certain string is so if we were to actually save this by pasting in the string inside the parenthesis refresh the browse so you can see we get 12 and the reason we get 12 is of course because we have 12 different letters or empty spaces inside our string so if we also count the empty space in there we do have 12 different characters we do also have a function that can go in and actually tell us the position of a certain string inside this string here so what I can do is I can say something like string position and string position is going to require two different things first we want to have the actual string that we want to get the position from so in this case here our variable string then I want to say comma which is a separator to add a second parameter inside this function here and then I can tell it what I want to see the position of inside the string so in this case I could say okay so what is the position of O inside this function here so in this case I’m can go down and say I want to get o save it go inside refresh and then we can see we get four and the reason we get four is because we always start at zero when we count inside programming so 0 1 2 3 4 which is going to be the O so now we got the position of O inside this string and it’s not just when it comes to a single letter we can actually check for more than just one letter so I can go in here and say I want to check for wo so in this case that would be this location right here so I can refresh and then we can see we get six now we do also have a function to replace a string inside another string so what I can do is I can say something like Str strore replace and by doing so I can also go in and say what do I want to replace inside this string here so I’m just going go to delete everything we have except for string so the first parameter is going to be what do we want to replace so in this case it is going to be world and I want to replace it with something else and in this case we can just say Daniel so we say hello Daniel inside this sentence so if we were to save this go back inside the browser you can see we get hello Daniel because I replace world with Daniel then we can also go in and use another function in order to to convert all the different letters to lower case so if I were to go in and say I want to string to lower then I can save it go inside refresh and then we can see everything is lowercase no longer have these uppercase letters inside this sentence everything has been converted to lowercase and the same thing we can do it the other way so we can say string to Upper which would of course do the opposite so were to go in you can see everything is uppercase and if I want to be a little bit more complex here what we can also do is we can do something called substring which is something something that I do occasionally use so if were to go in here so I can say we have a sub string by saying subst and what I can do in here is I can go in and say that I want to grab a certain part of the string here so the first parameter is going to be the actual string so in this case that this is going to be hello world then I’m going to say comma and then I want to say where do I want the offset to be so where do we want to start from and in this case here I could say we want to start from the index of two so if were to go inside my string and count this is going to be zero one two which means to be started here and then I want to have a length set to two so from here and then two forward which means that if I were to save this you can see that we get LL and we can actually do something quite smart here because if you want to do something in a very long string and you want to start from a couple of letters into the string but also end it a couple of letters at the end of the string instead of having this long string and then saying okay so you know 22 characters later I want you to like stop grabing the string instead what I can do is I can say minus 2 which means that it’s not going to start counting the index from the start but from the beginning so in this case here it is 01 2 which means we start at L and then minus 2 is going to be 012 which is the other L over here so as you can see we get low worldl cuz right now that is what we’re grabbing and with this we do also have a another one called explode which sounds very dramatic but essentially what this one does since we now have already talked about arrays in the last episode this is one we can actually talk about uh it takes a string and it says okay so where do you want to take apart this string and then all the different parts you take apart are going to be placed inside an array because we might have multiple pieces of Parts when we explode this string what I want to do is first of all remove the parameters inside of here except for the string and I want to go in and say that the first parameter because this has to be the first one is going to be what do I want to be the divider whenever I explode the string so let’s say I want to take any sort of spaces inside a string and divide the entire string depending on the spaces what I can do is I can say we have a string and that is just going to be a space which means that now it is going to take all the spaces inside the string and cut it like a scissor which means that now we have hello and world two separate strings and it’s going to place these inside an array now in this case here of course we can’t Echo it because that would actually create a error we can actually check this out because this is actually going to be a array so instead what we can do is use another build-in method called print R which is going to be printing out um I believe it stands for print readable if I remember correctly so essentially it’s going to print out data in a readable format so we can actually read it which in this case because of an array uh we might want to read what is inside the array so what I can do is I can just include it inside my print R and refresh it and then we can see we to get hello world so if I were to go in here and just say that we have more than one space so I can just separate the word a couple of times you can see that we get a even longer array because we have more divisions or explosions inside this array here so now having talked a bit about string functions we do also have some related to math inside our PHP code because in a lot of cases we might want to do math at some point uh so having some math functions is something that is really useful uh so let’s go and delete our function down here and also change our string because right now we don’t need to have a string uh but we do need to have some numbers so we can actually perform math inside this little example here so what I’ll do is I’ll create a variable and call it number and then I’ll go in and instead of a string I want to say something like minus 5.5 just so we have an example to use the first one I want to show you is a function called apps which stands for uh absolute I believe you can actually go in here and check it out because there is a really smart function inside our editor where we go in and hover our cursor on top of a function and then it gives us a little description here and as you can see it says absolute value uh so we can get the absolute value of a certain number so if we were to go in here and paste it in so in this case when we have minus 5.5 it is going to get the absolute value which basically means that it’s going to get uh the value no matter if it’s minus or positive it’s just going to get the actual value so if we were to save this go inside you can see you get 5.5 especially inside my gamep courses on the channel we use apps a lot to get you know the absolute value instead of having to deal with negatives and positives and stuff like that so it’s just a really neat function to have we can also round this up so we can use a function called round and this is basically going to do what you think it’s going to do it is going to round this up to the nearest uh whole number so when I refresh it you can see we get minus 6 then we also have something called p w which is going to be the power of or exponential expression so in this case here we can’t really use number because that is not really how this works but what I can do is I can feed it to number so I can say two comma 3 so again this would be exponential Expressions which means that we have to say 2 * 2 which is 4 and then 4 * 2 which is 8 in this case here so if we were to save this refresh it you can see we get eight then we can also do the square root of something so we can say sqr t which means that we’re going to get the square root of one certain number so let’s say two in this case and then you can see we get 1.4 it might have been a little bit easier if we did something like 16 just to like show this in a little bit more normal way so 16 the square root of that is going to be four but now another one that I have as a favorite is one called random so we can actually go and say R A and D which is going to give us a random number between two numbers so I can go in here and say I want a random number between one and 100 and in this case here we’re going to go in when I refresh it oh okay so in this case it’s going to be 51 if I refresh again oh it’s going to be 49 now it’s going to be three now it’s going to be 6 now it’s going to be 10 so it’s just going to keep feeding us a random number each time I refresh the browser I’ve seen people use this one especially when it comes to reloading images inside the website as they’re developing a website because your browser do have something called a cache that is going to store certain data so it’s easier and faster to load your website the next time you refresh it so when you’re sitting there develop and constantly maybe swapping out a certain image and it’s not really changing when you refresh the browser because oh it stored the cash of your last image so it’s not showing the new version then you can use this one and put behind the image name in order to get a new image but again that’s more of a developer trick you can use but it’s not really something you should use for releasing a website since there’s a a reason why a browser stores a cash of your images that’s because it’s easier to load next time right so now this was a couple different math functions we could use but what about arrays cuz we learned about arrays in the previous episode uh we do have quite a few different array uh functions I did cover some of them in the last episode but we do also have many others I could show you so let’s just go and create a array called array and inside of here we can fill it in with fruits just like we did in the last episode so we can say apple we can also say we have something like banana and we do also have orange and then we can just manipulate this array using many different functions the first one is going to be one called count which is actually one that we use quite often when we pull data from a database I do think I showed that one in the previous episode but let’s just go and talk about it here so if I were to say Echo and say I want to Echo out a count function that has the array inside of it we can actually see how many pieces of data are inside this array here so we do that you can see we get three because we have three pieces of data so let’s say we have an example where I pull data from a database and I need to check did we actually get anything from the database because if I didn’t then there’s no need to run a bunch of PHP code because we didn’t get anything from the database so this is going to be a very useful one that you will get to do a little bit of when we actually start talking about databases inside my episodes here uh so this one is worth remembering but now we do also have one here where we can go in and say is something an actual array so we can say is array so isore array and this one is going to give us a true or false statement so in this case it’s going to be false so it’s going to be true and like we talked about when it came to our data type episode a zero means false and a one means true so in this case it did actually return as true because this is in fact an array and we did also talk about a few other ones in the last episode that we can just briefly uh just mention in this one so if I were to go in here and say we have something called array undor push we can now push in data inside our array at the end of the array so I can go in and say we have this array here and I want to add a piece of data which is going to be a a kywi just to add something else to it so if I were to actually print R this one because in this case it would do actually need to print R in order to see all the data and of course I want to have this after we array push so I’m just going to move it down to the next line here save it go inside and then you can see we get kyv inside our array at the end there but now one we didn’t talk about in the last episode is how to remove data from inside the array so what I can also do is I can go below here and say that I want to do something called array pop so array po o and inside this one we just need to have one parameter since we’re only removing the last array index if we were to save this one and actually Echo it out or print R it out inside the browser then you can see we get the same array but now kyv has actually been removed at the end here so we no longer have it again and we can also go in and use another function where we actually reverse the entire array so if we were to go in here and say we have this array here but this time I want to array uncore reverse the array so parenthesis and then I’m going to insert the array inside the parentheses here then you can see we get everything but it’s reversed so we get orange first banana and then Apple and now in the last episode we did talk about something called array undor splice which means that we’re splicing two arrays together and merging them into each other uh but we also do have something called array uncore merge but merge is a little bit different because it’s going to take the data and put it at the end of the first array whereas splice is going to allow for you to put it anywhere in between any of the the existing data inside the first array so if we were to go in here we can also do array uncore merge so we’re going to say merge and then I want to have another array up here so I can just copy paste this down call this one array one this one array two and let’s go and change some of the data inside of the second array so again we could just use kyv and say we want to merge these two together so we were to do this I can say that I want to have the first array which is array one and the second array which is going to be array two too and when we do this I can go back in print it out inside the browser and then you can see we get kyv which has been placed at the end of the other array so all the data inside the second array here is just going to get added to the first array up there because we merg them together at the end of the first array so just a few more array functions you could know about after we talked about in the last episode but we do also have something else because inside phsp in some cases we do also deal with dates and time and when it comes to these we do need to know how to get the date and time because for example again if we talk about databases in a lot of cases you might want to know exactly what the time is when you upload certain data to a database so you might want to have a datetime format that you need to use in order to get the date time so let’s go and start by echoing out a certain date so what I can say is we have a date function and inside this date function I want to tell it the format that I want to Echo out the date and I will include a link in the description for all these different formats if you want to see them uh but essentially if you want to get the full year you can go inside and use a capitalized y then you can separate it with a dash and then we want to get the month the day and then we can also get the time which is going to be the hours colon then we want to get the minutes and also the seconds so in this case if we were to go inside the browser you can see we get the uh full date with the year month day and the current time inside our little uh function here but now we do also have something else we can use so if we were to go down here and say I want to Echo out the time so we’re going to say time parenthesis then you can see we’re going to get this weird long number inside the browser here so you can see we get this random string and you might be thinking hm so what does that do well let’s try and refresh the browser again and see what happens oh it updated okay so if I click this every second you can see it’s updating by one number every second that I click because this is the seconds since a certain date in history I can’t remember the exact date but what we can do is we can go and hover our Mouse CR on top of the function oh and it actually provides a link to the pspnet website so I’m going and open this one and then you can see we get this little link here what explains that it is since January 1st 1970 that we do get the amount of seconds since then and the reason this is something we can use is because you might want to get a certain time difference between now and now so we can actually subtract these two different numbers and get the amount of seconds and this by the way is called a Unix Tim stamp which we can also use for the next function where we actually go in and we want to know what is the Unix timestamp for a certain date at some point so what I can do is I can actually create a string so we can just go and call this one variable date and then I can set it equal to a random date at some point again using the same format that we talked about before for which was uh the date time format so I can go in paste in a random date from my notes here and then I can go in and say that I want to get the string to time Str str2 time and then I can paste in the date and see what is the Unix timestamp for this particular date here and in this case here it’s not going to update every single time I click it because we’re getting a fixed date or fixed time of seconds from 1970 the 1st of January until this particular date that I have pasted in here which is 2023 uh the 11th of April which is today and we have many other different types of date functions you could use inside your PHP code and the same thing goes for the strings and math and we also have something when it comes to like files inside your uh your PHP or files inside your website you can delete files or do something else to it using functions and I will leave a link to many different functions you could be using that you might want to check out and I will have that inside the description of this video here so if you want to check out something on your own then you’re more than welcome to do so but for now these are some of the different functions you can use in order to change things inside your phsp code so with that said I hope you enjoyed this little episode on built-in functions in next one we’re going to talk a bit about userdefined functions which is a lot more fun because now we actually get to create our own functions which means that we can start creating a function called something specific followed by a pair of parentheses and then we can decide that we want to add parameters to this function to change how the functions work and stuff like that and functions is something that we use a lot inside our code pretty much constantly anytime you create anything using phsp uh it’s going to have functions inside of it so functions it’s important and that’s what we’re going to learn the next episode so with that said I hope you enjoyed this one and I’ll see you guys next time [Music] today we’re going to learn about something called userdefined functions inside PHP and this is the moment where we start moving into a little bit more of an interesting point inside our PHP lessons because userdefined functions is where we can start creating our own functions inside PHP in case there is some kind of function we need that isn’t built into the PHP language user defined functions is something use constantly inside our code and I do mean constantly because we use functions in order to not have to rewrite code as well over and over again because if I need a certain piece of code to do something and then later inside my application I need to do the same thing instead of having to recreate the same code in two different places we can use this userdefined function just to reference to it so we run the same code but the code is just sitting in one place somewhere I do also want to point out here because I do remember back when I was learning PHP like 12 years ago when I took my bachelor’s degree in web development that the teacher would ask me inside the exam so what do we use a userdefined function for and I would say well we use it to do things inside our code but the answer my teacher was looking for was okay so we need to use a user defined function for one particular thing so if you want to create a bunch of code your function should not have a ton of code inside of it doing a lot of different things it should have one particular purpose in mind so don’t use a function to store like an entire script inside of it it’s just meant to do one particular thing we’ll get to do a little bit more examples so you can see what I mean so you know not creating a lot of code um so what I want to do here to begin with is let’s go ahead and just create a function just to see how do we create a function and how do we name it and how do we add parameters to it and and write code inside of it uh so what I’ll do inside my little PHP script here is I’ll go in and I’ll use the function keyword which means that now we’re creating a function and I want to go in and give it some kind of name and you can name this function function whatever you like we can come up with any kind of name that we think is appropriate for this function but there’s of course some naming conventions just like with variables and that kind of thing so the way we usually do it when we start a function is we start with a non- capitalized letter for the name so if let’s say I want to say say hello then you can do something like this where every word after the first word is going to start with a capitalized letter or if you want to do it you can also go in and say you want to use a underscore instead now my personal prefer is to do a capitalized letter because that’s how I see most people do it but it’s really up to you like there’s different naming conventions you can use here after creating the name we need to actually tell it that this is a function by adding the parentheses and these are the same parentheses you see when we create a builtin function so if we were to go up here and say something like string length then you can see that we can go in and actually get the length of a certain string so if it were to say Daniel and Echo this out inside the browser we would get the number of letters which would P six in this case here inside the browser and this is what we need to use the parentheses for because we can decide how many parameters we want to pass into our particular function down here because this is our function we can do whatever we want with this function here so I can decide how much do I want to pass into my function now you can also just decide not to pass anything inside your function so let’s go ahead and go inside the curly brackets here which is going to be where all the code is going to get run that you want to run inside your function so I’m going to go down here and say say I want to Echo a string and I just want to Echo out hello world so by creating this we now have a function inside our code that we can call upon so we’re not actually running this code yet we only run it once we call upon it so if we were to go inside my browser just to prove my point if I were to refresh you can see there’s nothing inside the browser but if I were to go down here and actually run my code by running the function I can go in and say we have a function called say hello hellow parenthesis semicolon and then I can simply run this function by Saving refreshing the browser and then you can see we get hello world and now we did use Echo inside the function here which is something you can do but it is a very typical thing inside a function to not Echo out a value but instead return a value uh so what I can do is I can go in and say return and when I refresh the browser you can see we don’t actually get anything inside the browser but instead I would have to go down and actually Echo our function so if we were to go in now you can see we get hello world and one of the reasons for this is I can actually go in and create a variable and I’m just going to call it test and I’m going to set it equal to my function and because I’m returning a value and not echoing a value I am now actually going in and assigning hello world to my variable test because this is the data that my function returns so now if I were to go below here and say I want to Echo out variable test then you can see inside my browser we get hello world but now we did talk about passing in parameters because we can do that and we can decide if we want to do it because it’s our function The World Is Ours we can do what we like uh so what I can do is I can go in and say okay let’s go ahead and pass in a piece of data now I’m just going to use a placeholder for this data so I’m going to create a variable and I’m just going to give it some kind of name so this could be name for example which now mean that when you call upon this function down here actually see we get a error message it now demand that you pass in one parameter in order for this function to actually work so if we were to go down here you can see that if I were to go in and say okay I’m just going to pass in a string and this is going to be Daniel we’re now passing in a piece of data that is going to be assigned to this variable placeholder up here so we can now use it inside our function so if I were to go down here and say that I want to concatenate so I’m just going to go ahead and say we want to concatenate our variable here just going to grab variable name which is the placeholder or the reference that we need to use inside this function save this one you can now see that if I were to go inside an echo the function down here you can see we get hello Daniel and you can pass in as many parameters as you want so you can go in here and say you want to add another name so this could be last name uh we can also pass in variable pet so we can you know get the pet that we might have inside our household or something uh so we can pass in many different parameters and you can also see they don’t actually light up they’re kind of like Gray out inside our editor which means we’re not actually using this parameter inside our function and just to mention it here because you don’t actually have to use these variables inside your uh little function down here but you do need to pass in the actual parameters inside when you call upon the function I do have two more things I want to show with this example here so let’s go and go back and just have variable name inside our function so what we can do is we can also assign a placeholder and by placeholder I do mean a default value so let say I go down here and I decide not to pass anything inside my my function down here and it’s now giving me a error message H is there a way for us to run this function without having to pass in a parameter and it just assigns a default value if you decide not to yes there are so what we can do is we can go in and inside the parameter inside our function up here I can go and assign my variable name to Daniel actually let’s go and call it something else so we get something else inside the browser here so let’s say Bess so now if I decide to call upon this function down here without actually passing in a parameter you can now see that it’s going to assign Bessa as a default value for this particular parameter here however if I go down inside my function and say you know what let’s let’s have it be Daniel and I save it refresh you can now see that oh okay so there is a value passed into this function here so we’re not going to use the default value that I assigned inside this function here the second thing that I want to show you is also in terms of something called type declaration which is also something we received in PHP 7 something I do believe type declaration is something we have in most other programming languages but for some reason because PHP is a very Loosely typed language we don’t have it and you don’t have to have it inside PHP but what you can do is you can go inside your parameter up here and say okay I do demand that whenever a user or whenever a programmer call upon this function here it has to be a string that is passed into this function here so what I can do is I can say I want to have this being a string data type so whenever we pass anything in here it has to be a string so right now if I were to save this it is not going to give me any sort of error messages because it is a string but if I were to go down here and say I’m passing in a number instead I’m now going to get a error message actually it’s not going to give us any sort of error message because right now we don’t actually have strict types enabled inside our code so that is something we need to do first uh so if you want to have these type declarations you do need to make sure that the very first thing inside your script here is going to be a strict type declaration so we’re going to go to the top of our file I’m going to open up my PHP tags and I’m just going to go ahead and close it again and the first thing inside my PHP code is going to be a declare strict types equal to one which means it’s going to be true so if we were to save this and then go down you can actually see oh now we do actually get a error message because o this is supposed to be a string but we found a int number and if we were to refresh inside the browser you can see oh okay so type error which means that we don’t insert the correct type inside our function here so type declaration is something that can help you make sure that the right data is being inserted inside the right functions so this is something I do recommend using because this is something that I’m used to from other programming languages but again if you want to you don’t have to do any sort of type declaration inside your Cod you can just delete this liner code here and delete the type decoration like you don’t have to have it it’s very very much possible to do without but I do recommend doing it because it is a habit I have from previous code that I have written in other programming languages out there and there is a reason for why we have it it is to make sure that we have one less error that we might accidentally do inside our code so it’s just kind of like a neat little thing we got added to PHP so with my strict type decoration I can now go in and pass in a string and then you can see oh now it works so and again we can use functions for many different types of things we can also go inside and say this is going to be named calculator because we did create a calculator in our exercise in the last exercise so what I can do is I can go in and say I want to pass in a integer and I want to call this One n one and then I can say I want to pass in a second integer and this is going to be number two and again I’m just going to declare these strict type declarations here because I do think it’s a good idea then I can go inside my code down here and say I want to run a calculation so variable result is going to be equal to variable num one plus variable num two again this is a very simple calculator here it it only knows how to add apparently but I’m just trying to prove a point here so what I can do is I can return a value so I’m going to return variable result so now when I go in I can actually call upon this function here and I do need to pass in the right data so I can go in and say that I want to pass in a number so this going to be two and five so we were to do this refresh then you can see we get seven I do also want to mention here that we do have something called scope inside programming in all programming languages out there and a scope is essentially where you can access certain variables so right now inside this function here this variable called variable result is a local scoped variable which means that we can only access this variable from within this function here one thing that I remember confused me when I started learning programming like many years ago is whenever I went up here outside the function and I would create a variable so let’s say I just create a variable called test and I’m going to set it equal to Daniel now if I were to go inside this function down here can I take variable test go down and just let’s say use it inside this function here so if I were to say I want to return variable test oh we get a error message okay so we can’t do this because it is a undefined variable because it doesn’t exist inside the scope of this function here but what I can do inside this function here is I can actually go and take my variable test and say that I want to grab a global variable within the global scope of my code so I can go in anywhere inside the code here and say I want to grab a global variable or at least declare that this is a global variable that I want to have access to and I can say I want to grab by variable test and because I reference to a global variable in this sort of way we can now use it inside our return down here so I can actually go in refresh and then we can see we get Daniel again I feel like I’m piling information on top of people here but it is just important to know that we have something called scope and we will have a episode I think we should do that in the next episode talk a bit about uh Scopes inside our PHP code because that will be a little bit more relevant to talking about global Scopes and local Scopes and that kind of thing so for now don’t worry too much about Scopes let’s just go ahead and worry about creating functions inside our code like so so you know how to create a function that has a particular piece of code that has a particular purpose in mind uh which you can then use inside your PHP application I do know this is a lot of information I piled on top of people in this video here but it is important to know what a function is because you will be using it constantly inside your code so with that said this is how you create a function if you’re still a bit confused about it I do recommend rewatching the video uh because you do need to know how to create a function okay so with that said in the next video we’re going to talk a bit about Scopes inside PHP and and with that said I about to say it again I hope you enjoyed the video and I will see you guys next [Music] [Music] time today we’re going to learn a little bit about Scopes inside PHP since we talked a bit about userdefined functions in the previous episode and talking about Scopes is going to help you understand how we can access different types of variables and functions and classes and so on so we’re going to talk a bit about Scopes today Scopes Scopes I’m pretty sure I’m saying it too fast Scopes so essentially what a scope is is how or when you can access a certain variable or function or something inside your script this means that right now if I were to have this page that has nothing inside of it and I were to create a variable so I can go in here and I can say I have a variable I’m going to call this one something like test then I need to know exactly when I can access this variable inside my code and we do have four different types of Scopes inside PHP we have something called a global scope which is where my variable right now actually is which means that we can access this variable from anywhere inside of our scripts we do also have something called a local scope which is when we’re talking about inside a function so whenever you define find a variable inside a function you can’t actually use that variable outside the function because it’s locally accessible from within that particular function we do also have something called a class scope and classes is something that we are not really getting into right now classes is kind of something you learn about after you learn the basics of phsp since objectoriented phsp programming is something that you should learn uh but here at the beginning it’s not really something you need to worry too much about but I will give a short example in this video here just to kind of give you an idea about what exactly a class scope is since we’re talking about Scopes so we might as well talk about all of them uh we do also have something called a static scope which is essentially when we have something that is statically declared inside our code uh we need to talk a bit about what exactly that is and how and when you can actually access a statically uh declared variable inside your your code uh so that’s something we’re going to talk about as well so now let’s start by talking about a global scope so as you can see right now we have this script um which we I have introduced The Script already uh but we do have this variable that I just created called test which is said equal to Daniel and if I want to gain access to this variable I can just simply go down and I can say Echo and then Echo out variable test and if I were to do that go inside my browser you can see that we’re actually going to get a spit out inside my browser because this is a global variable and I can just sort of access it from anywhere inside my script so as soon as we declare something outside a function outside a class it is inside the global scope of our script so we can can access it but now we do also have a local scope which we talked about in the previous video where we talked about userdefined function since whenever we create a function inside PHP we do have some code inside the function and we need to know exactly when can we use that code and and how can we use it inside our our script in here so now if I were to paste in a small example that I have here of a function you can see that this particular function here is called my function and we right now inside the function have a variable called local variable and it said equal to hello world now this particular variable I can gain access to within this particular function here so if I were to actually go in and and Echo it out or return it we can also do that because that is probably the better thing to do if we were to go inside and actually return this value go down below and call upon my function here you will see that we actually spit out our return inside our browser so if we were to do this refresh you can see we get hello world but now what if I want to G access to the variable inside the function so if I were to go in and say I want to copy this variable and I want to Echo it out down here because I mean I did declare a variable right but it’s inside the function so we were to do that refresh the browser you can see oh undefined variable which means that there is no variable existing that we can gain access to called local VAR so as soon as we declare a variable inside a function it is locally scoped within that function so we can only access it within my function and the same goes kind of the other way around because if I were to go above this function here and create a new variable so I’m going to say we have a variable I’m going to call this one test again and I’m just going to set it equal to a string So Daniel and if I were to try and access this variable within this function if I were to go in here and say we want to return variable test and actually spit out the function down here then you can see that we’re going to get another error meth because again undefined variable variable test because it is inside the global scope but not within the local scope of this particular function but Daniel didn’t you say that the global scope can be accessed from anywhere inside the script yes as long as it’s not inside a particular scope of for example a function or inside a class then we can gain access to it from within anywhere else inside our script so anywhere else below here if I were to go down here write some code that is not inside a function then I can of course gain access to variable test but as soon as I start creating a function like I did here it is going to only take into account the local scope of this particular function unless I pass in the data into the function and we talked about that in the last video too we can do that by simply copying our variable and say that I have a parameter inside my function here so I can pass in a parameter and then I can go down and for example spit out variable test down here because now I passed it into the function and also we do need to make sure we go down and actually pass it inside the function itself when we actually call upon the function because we have to pass in some data so we were to do this go inside refresh the browser you can now see that we’re passing in data and we can now see it inside the browser but now I did kind of lie to you just now because I did say that you could not gain access to a global variable inside a local function but it is actually possible for us to do so it’s just not really a habit that you should get into doing unless you have a very good reason to uh because the reason we passing data into to the parameter of a function just like we did here is because we want the function to work depending on outside data so if I go in and say well if we have this Global variable then all of a sudden the function becomes kind of like not as reusable in the wrong setting so let’s say we don’t have this Global variable and I say I want to grab it then all of a sudden we start getting some weird funkiness going on so what I can do if I wanted to is I could actually go in and just say we’re not going to pass in this variable which of course is going to give us an nrow message just like before because right now we cannot find variable test but what I can do is I can actually go inside a function and say I want to declare a global variable which right now is called variable test and now because I declared that I want to grab one of the global variables inside the global scope I can now use it inside my function so want to save this go inside you can now see that we get Daniel but we do also have a second way we could do this if you don’t want to declare a global variable first and just directly gain access to it so there’s another shortcut to do this which is also you can just go down and say we want to use one of the super globals we talked about in the previous episode so I can go in and say I want to grab a super Global called globals and I want to pass in variable tests inside my Global’s super Global so in this sort of way we’re grabbing a global scope variable called test using this super Global here called globals there was a lot of tongue twisters in a row so if we were to do something like this go inside the browser you can see we get the same result so it’s basically just another way of doing the same thing as declaring a global variable at the beginning of the function but like I said don’t do this unless you have a very specific reason to do so because passing in parameters is really the way you need to do it in 99% of cases whenever you do variables like this or or functions so now you know how to gain access to a global variable but just know to use it sparingly and for a good reason so now that we talked about a local scope of a function let’s talk about something called athetic scope and athetic scope is something you get whenever you create a static variable inside a function for example you do also have it inside classes but let’s go ahead and take a function as an example here so if we were to go ahead and paste in my little example code here you can see that inside my function we now have a variable that has been declared as a static variable and all I’m doing let’s actually go and just do this to begin with here all I’m doing is I’m going in and saying okay so static variable is equal to zero and then I want to add one to it and then I want to to Echo out the result or in this case here just return the result and then Echo it out down here inside my function so if I were to do this what you should get is one because when I run this function with taking zero and adding one to it and then returning it so we would to go inside my brows so you can see we get one but now what happens if I do this a second time if I were to go down here and say I want to Echo this out again but what is the second Echo going to be is it going to be one or is it going to be two because remember we’re adding one inside function so if we to go inside my browser refresh it you can see we get another one and the reason for this is that a function is meant to be a blocker code that has code inside of it that you can just gain access to over and over again inside your code so you can reuse the same code again and again and again and because of this they should not be influenced by each other so if I use my function in one place then it shouldn’t change the same function when I use it in another location otherwise it kind of defeats the purpose of my function so whenever I use the same function again and again we should get the same result every single time however let’s say I go inside my function here and I declare a static variable so if I use the static keyword instead this particular variable is going to be shared by all the functions inside my code or inside my script anytime I use this particular function here so if I were to go in here and say that my static variable is equal to zero and I add one to it it means that now for all all the other functions in the future this particular variable is not going to reset itself it is going to stay as one so when I use the function the next time the next time the number is going to get spit out it is going to become two and again if I were to use this function a third time it is going to be three because it keeps adding one to it and because this is a static variable it is going to be shared among all these different functions down here now the last scope that we need to talk about is something called a class scope and this may be a little bit premature because we haven’t actually talked about classes and properties and methods yet and objects and and all these things but it is something that exists when it comes to scope so I’m just going to mention it so you know a little bit about what I’m talking about here so inside PHP we have something called a class which is basically like saying we have a template that has a bunch of variables and functions inside of it I’m doing this because they’re not actually called variables and functions uh but so you know exactly what I’m talking about they kind of work the same way as variables and functions but within a class so as you can see here I have a class called my class and inside the class I have a variable and I also have a function which is actually called a property and a method and these variables and functions are only accessible from within this particular class here now I’m just going to stop myself here because I started talking about how to create Optics and different things off this class and this is not supposed to be a class episode It’s supposed to be about Scopes um so all you need to take from this is that when we have a class like this all the different properties and methods within this class let’s actually go and delete this static keyword here because that is actually useless right now um if I were to do this all these properties and methods can only be accessed directly inside this class here so if I were to go outside this class I can’t access these unless I make them static and the reason you will make them static is for like entire different reasons like there is actually a reason you might want to do that um but just for like regular usage you don’t usually do that so this is what we call a class scope so now we talked about global Scopes we talked about local Scopes and we talked about static Scopes and we talked about class Scopes uh don’t worry we will get to talk more about classes at some point in the future but for now let’s just go ahead and stick to procedural PHP and then once we have learned all the basics then we’ll get into like classes and off Tech oriented PHP and stuff like that so for for now that is basically what scope is when it comes to PHP so hope you enjoyed this lesson and I’ll see you guys next [Music] time today I’m going to teach you about something called a constant inside PHP and a constant is basically a way for us to create data that cannot be changed at any point inside our code which which is very useful for a lot of reasons for example if you have some data that is very important to a lot of your code and it has to stay the same then declaring it as a constant makes sure that if you were to accidentally change it at some point you get an error message instead of all your code that starts breaking and and showing the wrong thing because that one piece of data has now been changed and everything else is now wrong so creating constants is something that can help us create data that should always always stay the same if I were to create a variable for example here so if I were to go and say we have a variable called name and setad it equal to a string called Daniel you can now see that if I were to Echo this out and say I want to Echo out variable name this is going to give us Daniel because that’s what we wrote but what I can also do is I can take my variable name go down below and I can change it to something like Bassa and if I do something like this it is just simply going to change the variable in to B now which is okay because this is just a variable however if I were to do the same thing using a constant this is actually going to throw me an error message so if we were to go up here we can declare a constant by saying we want to Define parentheses semicolon go inside the parentheses and give it a name so to begin with here we can call it something like Pi because Pi should never change because it is always going to be 3.14 so let’s say I’m doing a bunch of calcul ations and I need to use Pi in order to do this and I wrote it as 3.14 if Pi were to change then all my calculations are going to go wrong so I want to make sure that we always get this particular value even if I were to accidentally change it at some point in the future which I should not be able to do but hey mistakes happen but we just want to do as much as we can to avoid those kind of mistakes so what I can do here is I can go down and say I want to Echo out not variable name but just Pi if would to saved this go inside the browser you can see we get 3.14 and you may have noticed something here because I did actually create a variable name using all caps so right now it is pi using capitalized letters this is not something you have to do I could also go in here and say Pi with a non- capitalized lettering so if we were to do that and actually spit it out inside the browser you can see we still get 3.14 however it is a convention inside any sort of programming language that when you create a constant that you use capitalized lettering because it shows other programmers that this is a constant so it’s just kind of a visual indicator for other programs to know that this is a constant so now if we were to spit this out inside the browser but I were to go down and say I want to change Pi into 4.14 so let’s say I want to do this but hey whoops I made an accident I accidentally changed something that I shouldn’t change if I were to do this you can now see that we get a error message because we’re not supposed to redefine a variable called Pi elsewhere inside our code and this is just a very useful way to make sure that if I were to accidentally change something that we get a error message instead of all the code starting you know to go wrong and of course this can be any sort of data type so it doesn’t just have to be a float number like it is right here I could also go in and say this is going to be name and then I can create a string and say this is Daniel and if we were to actually spit that out you can see we get Daniel inside the browser we can of course also create all the other types of data we can create a true or false statement so I could say isore admin you know is the person and administrator then I can go in and say this is a true and of course I can go in and actually spit it out so we can see it it is also important to note here that a constant is inside the global scope whenever you define it which means that if I were to create a function down here so if I say have a function just going to go and call it something like test just to give it some kind of name if I were to go inside the function I can actually Echo this particular Conant directly inside the browser because we can just gain access to it so even though we in the last episode talked about variables not being able to get passed into functions unless we actually declared that they were a global variable we should access or pass them in through the parameters or something like that uh we can actually do that using constants so if we we to actually go in here and say I want to Echo up Pi then I can actually do that so if we to go below here and actually say I want to run my function here called test and then you can see that we get 3.14 inside the browser of course we’re going to get 13 now because we also echoed out is atmin over here so we delete that you can now see we get 3.14 the last thing I want to mention here is whenever you define a constant is to make sure to always do it at the top of your script it’s just kind of a habit that we have that whenever we want to create a con they should be all listed at the top of the code so even though it’s not necessary I could take the constants and actually move them below all my code if I wanted to do that it is kind of a habit or a good practice for programmers to make sure that it’s all at the top of the code so we can easily find them and this is basically what a constant is so having talked about that we now start reaching a point where we need to start talking about how to actually do things with databases when it comes to PHP because PHP is is kind of like one side of the coin and the other side of the coin is handling data from within a database so we need to start talking about how to you know actually go inside a database and create data and how can we then grab the data using PHP and show it inside a website so having talked about constants I hope you enjoyed this lesson and I’ll see you guys in the next video [Music] today I’m going to teach you about something called a loop inside PHP which is actually going to be our last episode before we start talking about databases together with PHP so that is going to be very exciting cuz it’s kind of like the point where we can start building some very cool things inside phsp so with that said let’s talk about the different types of Loops that we have inside PSP now if you have learned something like JavaScript beforehand this is going to be very familiar to you because a loop is pretty much the same thing in most programming languages so there’s there’s like slight differences maybe but they are going to be pretty much the same thing so when it comes to a loop we use them inside our code to spin out a blocker code multiple times by just writing one block of code so we can spit it out maybe like 10 times or you know maybe we pull some data out from a database and we want to make sure that we spit all the data out inside our website rather than just one piece of data so we can keep spitting out data depending on how many iterations would tell it to actually run inside our code basically just something that repeats again and again and again and again until we tell it to stop that’s basically what a loop is so when it comes to a loop we have the first one which is called a for Loop and a for Loop is a very basic way for us to spit something out depending on numbers so what I can do is I can actually go inside my for Loop here and inside the parameters we need to include three different parameters the first one is going to be a starting point so I’m going to create a variable we can call this one whatever we want but it is kind of like a tradition to call it I for iteration because one iteration is one Loop and then we can do like three iterations which is three Loops so you know we have something called a iteration to begin with here we’re just going to go and set I equal to zero and then I’m going to end this off with a semicolon and add in the second parameter or the second state inside this uh parameter here and that is going to be when do we want this Loop to stop running so at some point this has to stop otherwise we create something very bad which is something called a infinite Loop which is a loop that is going to run endlessly inside your website and eventually crash your browser so we don’t want that to happen that is a very bad thing um so we want to make sure the loop has a stopping point so what I can do is I can goad and say that I want variable I to stop once it hits a certain point and this can be you know when variable I is equal to a certain number which is for example 10 we can also do less than an equal or greater than an equal let me just go ahead and rephrase that we’re running this loop as long as this statement is true that’s what we’re doing okay so we have to go in and say as long as uh variable I is lesser than or equal to 10 then we want this uh four Loop to keep looping that’s that’s what we’re saying here so what I can do is I can go inside and add a third parameter which is going to be how much do we want variable I to increase or decrease every single Loop when we Loop this out and what I can do here is I can go ahead and use a increment or a decrement which is something we talked about in our operations episode uh basically we can go in and say we have a variable for example variable I and I want to add one to it by writing plus plus so the first time we Loop this variable I is going to be equal to zero but once we get done with this blocker code it is going to change it to one and then the next time it’s going to be two and then it’s going to be three and four until we get to a point where this statement here is no longer true and then it’s just going to stop running so what we can do is we can go inside here and we can just go ahead and Echo out something so we can say Echo um this is iteration number and then we can go and add a concatination and say this is iteration uh variable I and let’s also go Ahad and add a break to this because because we do want to have multiple lines just so we can see it properly inside the browser here so what I’ll do is I’ll just add a HTML break and with this I can go inside my browser and as you can see we get this is iteration number zero and number one number two and so forth until we get to iteration number 10 now in this case here we are spitting out 11 numbers because we’re also spitting out the first one which is you know when the number is zero and there’s a couple of ways you can do this if you want this for example to Loop out 10 times then we could go ahead and say this should be uh maybe equal to you know 9 or we can also go ahead and say that we should start at one uh if I do this for example if I were to go inside the browser you can see that we start at one and then we count to 10 uh we can also go ahead and set this back to zero and say it’s just going to be lesser than 10 and this case it’s going to go and stop at nine so there’s many different ways you can split this out 10 times uh this is basically just to show you that you can go inside your parameters if I can find my mouse there we go you can go inside your parameter here and you can change these numbers however many ways you want to so this is a basic way to create a for Loop inside your code and again you can write whatever code you want to in between these uh curly brackets here so you can you know spit out any sort of code that you want and there’s many different uses for a for Loop for example if you have a string that has a certain number of characters inside of it and then you want to spit out uh a loop for each character so you can count how many characters inside a string and then you can do that based on that basically anything you can think of that has something to do with numbers is something you can use in this case here you could also go in and actually replace this you could say instead of being lesser than 10 uh if I were to have another variable up here I can just call this one test I can set this one equal to five and I can actually go ahead and replace variable test with my number 10 and in this case this would also work so in this case we’re spinning out five times so you can replace these in here with variables if you wanted to you know if that’s the thing that you want to do it’s just kind of to show you that there’s kind of like a a free Ro uh to do whatever you want with this kind of loop here but now we do also have a second type of loop which is called a while loop so what I can do is I can just comment this out just so I can demonstrate what a while loop is and the way this works is instead of using numbers I can actually go inside and create any sort of condition that you might want to use from for example Le a if statement so you know when we use a if statement you can also go and compare things you know do something specific uh we can also create a Boolean so if I create a variable here I just call it Boolean I’m going to set this one equal to true what I can do is I can go inside and say as long as this variable here is equal to true then I want to Loop something out and now of course in this example here we are creating what is called a infinite Loop just like we did previously so it is a very good idea that this should at some point make our variable Boolean into fals otherwise this is not going to be very good for our website cuz it’s going to crash everything uh so what you could do is you go in here and say let’s just go and make variable Boolean equal to false in this sort of sense here uh so this basically means that the first time it’s actually going to just Loop out one time and then it’s going to stop looping again because the first loop it’s going to change our variable into false uh which means that this is not going to Echo out anything else so in this case we’re just going to Echo out our Boolean just so we have something to actually spit out inside the website so we can test that this is working uh so if I were to do this go inside my website you can see we get true or one in this case which is the the number version of being true zero would have been false in this case here so we are spinning something out uh what we can also do is we can actually create something very similar to what we had up here so I can take my variable test and I can go down and say I want to say we have a variable called test and as long as variable test is lesser than 10 then I want to spit out this Loop here so what I can do is I can go inside and I can actually say that variable test is going to add one every single Loop and then I can simply Echo out something so we can actually see something going on inside the browser here which could for example be variable test just so we can follow what exactly it’s do doing and then I can go ahead and refresh the browser and as you can see we get numbers so it is looping through five times because we had our variable test starting at 5 and then we just add one each time until we get to lesser than 10 uh so it is doing something here so anything that you might want to think of that you could for example use inside an if statement when it comes to checking for these type of conditions is something you can use inside a while loop whereas for example our full loop up here is more about when it comes to like numbers so two different ways to Loop things out you can just kind of like use the one that you might find appropriate for a certain situation to spit out a bunch of data a certain number of times uh but what we can also do is I can also go ahead and do something called a do while loop because right now if I were to go ahead and say that for example variable test is equal to 10 which means that immediately the first time this is actually going to be false because this is not going to run a single time so so if we were to actually save this go inside and refresh it you can see we get nothing inside the browser hm and that is because we started out with a false statement so it’s not even going to Loop out one thing inside our code but what we can do if I can find my mouse here for some reason is really difficult in this background color here uh what I can do is I can go inside and create something called a do while loop and the way that works is I can actually replace the while statement and the parenthesis with a do keyword word and then afterwards down here I can actually include my while statement so I can go ahead and say semicolon and what this is going to do is that it’s going to Loop this code in the same sort of sense as before but it will always Loop this out at least one time no matter if this is going to be true or false the first time uh so no matter what happens this is always going to spit out something one time so in this example here even though variable test is going to actually be a false statement inside the while loop it is still going to Echo out variable test one time so if we to do this go back inside refresh you can see we get 10 now let’s take a second example here because we do have the last type of loop that we have inside PHP so right now we talked about full loop while loop and dual while loop but we do also have something called a for each Loop and in order to demonstrate this one I will create a array which right now has three pieces of data so we have apple banana and orange and what I want to do here is I want to Loop one time per data inside the array so let’s say I want to spit out all this data inside my browser what I could do if I wanted to and do it manually is I could go inside and say well you know what I’m going to go and Echo out my variable fruits and I want to grab the first index so I’m just going to go and grab index number zero and then I’m going to go and copy this down you know two more times because we have two other pieces of data so I can also grab number one and number two and if we were to do this and go inside my browser you can see we get all three but you may start to see the disadvantage here because now we actually first of all we need to know how many pieces of data is inside this array CU we need to know in order to manually type them out here um but also we have to literally manually type them out which is not really a good thing uh so what we can do instead is we can actually make our code automatically just know how many pieces of data inside this array and then spit them out and I just want to point out here that a lot of people will look at these Loops here and think that oh okay so the you know the while loop might be the one I have to use the most cuz that one is pretty cool but this for each Loop here that’s about arrays and we haven’t done much in Array so far so we’re not going to use this one that much right however when it comes to learning about databases and actually grabbing data from a database and outputting it inside our website you do need to know how to create a for each because that’s the one we use in order to do this um so a for each Loop is quite important so what I can do here is I can actually create one so we’re going to use it for each keyword parentheses and curly brackets and then inside the parentheses we need to first of all add in the array that I want to actually grab the data from and what I want to do is I want to use another keyword called as and then I want to give it a placeholder that I can refer to inside the actual brackets down there or inside the curly brackets uh that is going to to use in order to grab the data from inside the array so in this case here because I want to just grab one piece of fruit I could actually say that the placeholder is going to be fruit you know a singular fruit so what I can do here is I can save this and then I can go inside deep brackets down here the curly brackets I keep saying brackets for some reason um but I can go inside the curly brackets and I can Echo something out so I could say this is a which is not going to make a lot of sense in this case because apple is supposed to be an Apple I do know a little bit of English grammar but you know we’re just doing a small example here so it’s okay but what I can do is I can say this is a then add in the fruit variable because that is going to be the placeholder and then I want to just close it off here actually let’s go ahead and move everything down to the next line just so we have a little bit of you know neatness going on in here so we’re going to add a break and just like so it is going to go through each of these data and spit it out inside the browser so if we would to save this go back in you can now see we get this is a Apple this is a banana and this is a orange but now what about a associative array because this is a indexed array and we did talk about arrays in a previous episode basically we have something called a indexed array which is where we go in and if you want to spit something out when it comes to an array is you refer to the index of the array so in this case if we want to grab Apple then we refer to index number zero if you want to grab banana we refer to index number one uh but what about a associative array so what I have here is another example of a associative array where basically we go in and we say that the key is going to be apple and the value is going to be the color of the fruit so we can keep doing that banana is going to be yellow uh and orange is going to be orange because you know it’s the same name so what I could do here is I could actually just go inside my browser now refresh everything but if I were to do that it is actually going to be echoing out the values uh because when we use the S keyword inside of for each Loop down here it is actually going to refer to the values inside this array so right now the values are actually going to be the colors that we added in here so if I want to go inside my browser refresh you can see we get the colors in here but what if I want to also get the key because that is also something we can do in order to spit this out inside the website so the way we can do this I can just simply go ahe and copy paste this little arrow up here because we do it the exact same way and go after my fruit and say I want to point to another placeholder which in this case it could actually be the color so if we were to go back down inside my echo I can say this is a fruit that has a color of and then I can go ahead and add in another concatenation so just going to go and add in our color uh value here so I’m just going to paste it in and if I were to go back inside the browser you can now see that we get this is a Apple that has a color of red so we’re also getting the key in this case here and this is a small introduction to how to you know Loop something out inside the browser depending on how much data you might have inside a array or you want to Loop something based on how many numbers there are or based on a condition like for example with an if statement uh so we have four different types of Loops that we can use depending on the situation that we might want to find one of them useful so in this case here we have something to work with so with that in the next video we’re going to start talking about databases which is going to be very exciting I know it doesn’t sound exciting cuz database like it kind of sounds a bit dry um but when we start using databases with a website using phsp that is the moment where we really start to see something happening with PHP inside our website so that is going to be very fun to do uh so with that said I hope you enjoyed this lesson and I’ll see you guys next time [Music] So today we’re going to do something very exciting because we’re going to start talking about databases and how to handle data inside a website because when you start doing that that’s the moment where you really start to make a website more Dynamic rather than making a static website which is something that basically means that you have a website that doesn’t really change depending on which user is watching the website so when you have a dynamic website all of a sudden you can start changing content or if you were to hand off a website to a client they can start changing content themselves if you want them to be able to do that that is actually something that I don’t think a lot of people realize that when you start learning how to make websites and you want to become a web developer and you think to yourself okay so I’m going to start making websites for people but when you hand over a website and they have to make a change to let’s say a title or paragraph or maybe they want a image updated or something then all of a sudden they have to contact you because you can’t give them a website and then teach them eight to Mons so they can change things themselves um so that doesn’t really make a lot of sense right so you have to be able to make a website that is dynamic where can allow people to change content themselves without having to know HTML or css in order to do so for example if you want to create a blog inside a website and you want the client to be able to you know upload a new blog post by thems without having to contact you every single time that is going to be an example of something we can start doing when it comes to learning phsp together with a database so with that said let’s go and talk about how to set up a database and what exactly it is databases sound so dry when you say it out loud like that uh it’s not it’s quite fun once you get into it and when you really start seeing content change it’s gets a lot of fun okay so the first thing you want to do is you want to make sure that when you go inside your xamp that we installed in the second episode I do believe that you do have both the Apache and the MySQL server running because the first server here which is the Pache server is going to be the web server where we have PHP running the second one is going to be the actual database server so this one has to be running in order for us to access our database with the xamp that we installed uh because you do have a database installed as well other than just PHP and a server so this is something that you do have already uh we don’t have to do anything special in order to set up a database we just have to open it basically just a small quick tip for you because I don’t think I mentioned this in the first episode where we installed xamp uh you can actually go inside the config menu here and you can actually make it so that the software Auto starts these servers when you open up the program so you can just tick this off right here and then you can click save now if it gives you a error message it is because you need to run this uh software here as administrator so the basic way to do that would be to go inside your exam installation go down find your examp uh Dash control right click properties and then B basically just go in here inside the compatibility and set this one to run this program as administrator if you do that then it’s going to allow you to to set these up as auto start uh without giving an error message so with that done let’s go and talk a bit about something called a relational database management system rdbms for short you don’t have to memorize that it’s just so you know okay so we have many different types of database systems out there which is what we call a rdbms um and the one we’re using is the one called MySQL which is also the most popularly used one when it comes to databases with websites especially if you’re using PHP but there are many different types of database systems out there and that you know some people watching these tutorials may be using something else but if you installed exam you will be using MySQL for this tutorial here most of the time if you do actually have an online server from a hosting company you will also be using MySQL just to mention it so it is the most commonly used one which is also why we’re going to be using that one for these lessons here and just to debunk something here because I know I will get some comments asking about this because it is something I’ve seen on previous videos MySQL servers are not the same thing as MySQL PHP functions okay so before people start typing in comments that MySQL is outdated and it’s unsafe to use then it’s not the same thing as PHP my SQL functions okay it’s two completely separate things so we don’t need to worry about using a mySQL database okay that is something that is very commonly used and it’s not unsafe uh in any sort of way um so what I’ll do is I’ll go Ahad and open up my uh browser and inside my browser I can go up and type Local Host just like we do when we actually want to enter a website but instead of saying forward slash the name of the website in this case I’m going to write PHP my admin and if I type that and click enter you’ll see that we enter our database system so PHP my admin is going to be the dashboard that you’re going to use in order to manage your database and you can actually see that we have many different types of databases on the side here uh you’re not going to worry about these ones that you have over here you may not have PHP tutorial because I actually created that myself at some point but don’t worry about these databases that we have over here you just need to know that any database you create will be over here in the the side so what you can see is we do actually have quite a few TS up here uh you don’t need to start freaking out about oh no there’s so many things going on in here um because we’re not going to be using all these tabs up here do also keep in mind that you do actually see some information about your web server so you can actually see what PHP version you’re using so right now I’m actually using 8.2.0 um so this is actually some information about your server the first thing we’re going to be doing is we’re going to create a database for our tutorials here so what I’ll do is I’ll go up to databases in the top here and then you can see we can type in the name of a database so we can just come up with any sort of name of course a name that makes sense as you can see with these databases down here there is kind of like a naming convention so don’t use weird symbols or something like that uh so what we’ll do is we’ll just go ahead and say my first database just so we have something right then you can just go and click create and then you can see we have a database added to the side over here now as a default it is actually going to be selected once you create it the first time but you can also see we can swap between them and actually see some of the uh other databases that we have here so I can actually click back and forward uh but for now let’s just go and select the one we just created called my first database now inside of here you can see this is quite empty like there’s nothing going on in here cuz we just created a completely empty and fresh database and what you can do in here is a couple of things first of all you can import databas base data from somewhere else if you have a existing database that you want to import in here or we can just go ahead and create a database from scratch we will be doing the lad because we will be creating things ourselves and there is a couple of ways we can go around doing that uh I do want to point out to you that right now it says no tables found in database the first thing you need to know about a database is that we have data inside a database so for example let’s say I have a login system inside my website and in order to have that we need to have users signing up inside our website and with that logic we do also need to be able to save that user information somewhere for example the username the password they used maybe an email address maybe what date they signed up inside the website we can save all kinds of information about our user and that is what we use a database for because whenever the website has to remember something inside our website you use a database to save that information about whatever we want to save inside our website and in order to make that a little bit easier we create something called tables because instead of just taking all our data and putting them inside our database there has to be some sort of structure going on so we want to maybe create a table that is called users where we have all the user information we might also have a table called comments so we have all the different comments the user made inside our website inside that table so basically a table is a place where we gather similar information about something inside our website and we do have two ways we can create that either we can go down here and do this in the confusing way at least I think this is the confusing way this is also the way that I see most people do this when they start out making a database uh but you can go down here where it says create new table and you can actually type in a name so in this case I can just say uh users because we use that as an example and then I’m going and say how many columns do I want uh which basically means how many different pieces of information about this user do I want to save so in this case I could say five which is an ID username password the date they signed up an email address you know so we have some some information about them and if I were to click create here you can see we get this very confusing uh table that we can start filling out uh so basically these are going to be the names so like I said we can have an ID we can have a username we can also have a password you know we can start filling in the names for all these different columns what is what they’re called inside our database um but the problem here is that there’s a lot of information that you don’t really need right now to know about um so this is only going to confuse people even more uh so what we’ll do instead is I want to go back so we can go back inside where it says structure and then you can see oh you have unsaved changes are you sure you want to leave um yeah let’s let’s not worry about this right now what we’re going to do instead is we’re going to go and create all our data using SQL code so we’re going to to do everything manually which is also going to be very useful because once you start talking about how to uh change our database and and talk together with the database using phsp from our website directly uh you will need to know SQL code in order to do that so there’s no better place to practice SQL than directly inside a database so hey let’s do that instead so what I’m going to do is I’m going to go up here in the top where you can see we have something called SQL do make sure that your database is selected otherwise this is not going to be SQL code that you write for that particular database because I sometimes see people who have another database selected or no database selected so make sure that your new database is selected and then click SQL now SQL code is actually quite simple to write a lot of people find a little bit intimidating to start with but it’s it’s actually quite simple and and of all the SQL that you may look up and and try to learn uh there is typical SQL you know like very few lines of code that we use over and over and over and over again so it’s not like you have to learn a lot of code just like if you had to learn PHP for example it’s it’s quite simple and there’s not a lot of code you have to learn for now but this is the tab that we’re going to be using in the next video when we actually start learning how to create a table together so we’re going to take this video by video we’re just going to do one step at a time uh chronologically as we’re making this database uh really really what we have to do here is just create a table and that’s pretty much it for now but although we could take this table we create in the next video and use it directly inside our website I do want to use this particular SQL uh editor here to just kind of show you how to do various things using SQL uh because you’re going to be using the exact same SQL inside your phsp code so the best place to practice it is doing it inside this database here I do also want to point out that even though we are going to have a couple lessons here where we’re not really going to write any PHP code and this is a PHP course this is the other side of the coin when it comes to learning PHP so if you don’t know this stuff here then you’re missing out on half of what PHP can actually do in order to make a website really cool so learning about databases and learning PHP with it is something that is necessary when you’re learning PHP for the first time so this is going to be a couple of lessons of just SQL programming essentially uh but it’s going to be very worthwhile to to learn so with that said I hope you enjoyed this lesson and I’ll see you guys in the next [Music] video so now that we have a database inside PHP my admin we need to talk about how to set up a table inside our database or multiple tables since we can have many tables inside our database and in order to do that we’re going to program this into our database using SQL code which is something that stands for structured query language which means that we’re quarrying the database using this code here in order to manipulate the database and you know maybe create tables or insert data or select data or delete data or you know there’s many things we can do using SQL and SQL is something that is not really too difficult it takes a little bit of memorizing to do but a lot of the code that you write using SQL it’s going to be pretty much the same so it’s not really like learning phsp where you have to memorize a lot of different code it’s it’s more about learning the same queries so to speak in order to manipulate the database so the first thing we need to do here is make sure that our database that we created in the last episode is selected over here in the sign so you need to make sure you click it otherwise we’re going to be writing SQL code for something else outside you know on the side here we don’t want to do that cuz we want to make sure we select our database so with our database selected you can go up here in the SQL tap and in here we’re going to go ahead and start writing some SQL code so we can actually write some you know some instructions to our database for it to do something like for example creating a table so I hope this is big enough because it is quite tiny I mean I guess I can zoom in a little bit more so you can see a little bit extra here just just to make sure that you can actually see what is going on cuz it is quite a a tiny console that we can write into here so now when it comes to creating a table there’s a couple of different concepts that we need to talk about before we get started here because we do have uh data types that we can insert inside a database we do also have something called signed and unsigned we do also have some different commands like autoincrement which means to we automatically assign numbers to a certain column uh we do also have columns that we need to talk about you know we have columns and rows uh which is like columns is the uh the vertical and then rows is the horizontal you know we have some different concepts we need to talk about but what is important to know is that this video is kind of going to be a mega video it is going to be a little bit longer than other videos because there is like I said quite a few things we need to talk about but you need to see this video as something you can return to so if you need to know a little bit of information about for example what a row is or what a column is or what signed and unsigned means what does a primary key mean what is a foreign key you know then you can come back to this video and then it will be time stamps below so you can kind of like fast forward so you can you know find a specific part you need to refresh your mind with in order to know exactly what that was but just know that I don’t expect you to memorize everything on the first go in this video here we will get to do more code in the future when we actually get into PHP we’ll also write SQL code so you know memorizing these things is not something I expect of you on the first goal so the first thing I want to talk about here is data types because when it comes to inserting data just like with PHP we also have you know integers we have characters you know like actual writing like text and that kind of thing we have dates we have uh decimal points that kind of things so we need to talk a bit about the different types of data we can insert into different columns because when we create a table we need to define a row which is all the data we have for one entry and then we have the columns which is each individual piece of data there you might have a one database entry so essentially we would have for example a person so we would have you know first name last name age you know hair color that would be like the different columns and then will we grab one row from the database that is basically grabbing the entire person with all these different attributes that that person has so we can actually pull the row out and display the data inside a website for example so we have you know columns and then we have rows and each column inside a table needs to be defined with a data type in order to tell our database what kind of data do we expect to be put inside this column here so for example if we were to go in here and say that I want to Define a integer data type then we do have an INT data type which is basically when we have four bits of data we can insert as a number inside this column here which is not a decimal point so you know just like a regular number like this and one thing to note here when it comes to these different types of data that you can insert inside a database is that they all have certain amounts of bits you can store inside this specific column here so for example when it comes to a in we can actually store a number that goes from I actually just went ahead and wrote it out here because it’s going to take a little while but when it comes to a integer data type we can store up to four bits inside this specific column here which means that we can store up until minus this number here until positive this number here so this is going to be four bits I’m just going to go and leave this for now because we do also have something called called signed and unsigned we need to talk about but this is basically the integer range that you can store inside a integer column if you want to choose a integer data type so let’s say for example I want to have a much larger number inside my um my column here because this might not be enough for my specific number let’s say I want to store a uh money amount inside my database and maybe that money exceeds this amount which in that case you’re a very lucky person if you have that much money um but let’s go and say I want to store even more money inside this database column what I could do is I could also use something called a big int and it is important to note here that we do have something called tiny int int big int um so we have many different types of integer data types they can store up to you know different types of bits inside of it but for now we’re just going to talk about the more common data types that they might want to use inside a database cuz I it is going to be quite a long lesson if we’re going to list them all out so let’s just go ahead and stick to the the ones that you might want to be using at some point then you can by yourself look up some of the other types if you want to at some point in the future but for now we have something called Big end and this can store even greater numbers so in this case here I’m not going to write it out but this is going to be up until eight bits of data or eight bytes it’s called the previous one up here is also four bytes by the way not bits um so essentially what you can store here is a much larger number which again is also going to range from a negative number to a positive number so it could for example write something like this inside of it and it would actually be able to store it because as you can tell this number is much bigger than this number up here which is the maximum for a uh int data type so you know we can store a lot bigger number when it comes to uh the big int down here and you might be asking well Daniel so if you’re saying that this one can store a lot bigger number than this one why don’t we just use this one every single time and essentially it all counts down to Performance and that kind of thing because we want to make sure that we don’t uh take up more space than we need to if we don’t need to get close to this number here but this is plenty for storing you know a certain type of data inside our database then performance will be better if you just stick to the data type that makes sense for that particular purpose so don’t just go around using the the biggest data type that you can find so in that case you can always store the biggest number um so so choose the one that makes sense for the the circumstance you might want to use it in and now we do also need to talk about something else before we move on to characters and decimals and date times and that kind of thing uh we can also go ahead and put parentheses Behind These data types and actually Define a parameter for these data types here in this case here when it comes to integers it is a device with that we’re defining in here so if I were to write something like 11 um this does not mean that I’m allowed 11 characters like 11 numbers inside this integer this means that the device with allowed for this data typ type is 11 numbers and this is not something that is directly going to be affecting your website this is something that is going to affect certain types of applications that is used to for example show data for example our uh MySQL software here U has a console inside of it where we can actually show the data from inside these different columns so if I were to set this one to five and I were to store let’s say this number right here then I wouldn’t be showing this number right here inside my database I would actually be showing this number right here although this number is actually what is stored inside this column but it’s not shown inside this database because we defined a Max limit for how many uh how much the device width is going to be when it comes to showing this data inside this database here and like I said this is not something that really affects your website when you define a number in here because you can still show the full number inside a website uh so a typical thing that we do when it comes to just making websites is we just Define 11 in here as a default which by the way is from what I remember also the default when you just write this it is going to be the same thing as writing 11 inside the parentheses so this is not really that important if you’re just a web developer and you just want to store numbers that you want to show inside a website but just out of habit we’re going to go and write parenthesis 11 to make sure that it is defined because some database types may be some Legacy databases or applications that needs to show this data do need to have this defined so it is better to have it than not to have it okay so with that said let’s go and talk about a float number so we can also Define a float which is of course also going to be when you have a decimal point so you can for example say you have minus something you know this number right here dot something and you can of course have a Max and a minimum that you can store inside when it comes to bytes uh in this case it is also going to be four bytes which means that we can store I’m not going to type it out here cuz it is you know a long number like these ones up here but essentially you have a minimum and a maximum which is equal to four bytes that you can store inside this particular column here uh the same thing goes when we have something called a double so we have something called a double which can store much larger decimal points so just like we have up here a inch and we have a big int so we have one for storing you know a normal amount of numbers and one for storing a large amount of numbers the same thing goes for float and double this is a small amount of numbers and then this one down here can have a lot greater amount of numbers inside of it when it comes to like decimal points and that kind of thing so uh we do have different data types again just like with numbers we have the same thing when it comes to decimal points um and then we do also have something called vaa now Vara is when we have to do with characters uh so let’s say I go in here we can also create the parentheses which is actually something you should do cuz the default is going to be one uh which is this right here and that is not really useful for anything cuz that means we can store one character inside this column here um so it is you know you should create parentheses outside vaa in order to define something here so in this case here we could for example say 10 so what this would basically mean is that I can store 10 characters as a string inside this data type so if I were to write Daniel uh this would be able to be stored in there but if I were to write something like Danny cing which is going to be more than 10 characters is going to cut off the last parts of this string here because we only allow 10 characters inside this column here so depending on how many characters you want to allow inside this column here you need to change this number in order to allow for that amount of characters now when it comes to something like let’s say a username you could say something like 30 cuz you know 30 characters for a username might be plenty so you don’t want to be able to store more than that so we do have different numbers we can provide in here depending on the purpose of what we want to create inside our database if you have a password uh then we can also go down and say maybe something like um 255 because we want to be allowing many characters for a password but I have rarely seen anyone use more than 255 characters when it comes to using a password U so of course you know you can Define different things depending on the purpose that you want to allow the person to insert inside this particular column here and just like before we do also have a certain number of bytes you can store inside a v chart data type so in this case here it would be in the range of something like and again this really depends on the database because some databases only allow for 255 which is why I use that one as a maximum um but you can also in some database do up to 65,535 bytes so you know it really depends on the databased type you’re using in our case I do believe we can store many bytes inside this uh inside our database here but 255 is kind of like the typical number that you define inside a vacha data type because then you know that it can be stored in many different types of databases because this is the maximum for some databases uh so 255 is also plenty in my opinion for storing U you know characters because you know we have other data types of storing much greater number of characters for example we do also have a data type called text and just like before when we talked about int big int float and double if you want to store many characters inside a column you can just use something called text which is going to just be defined as text and then you can store for example a blog post or a big comment for post inside your website that has a lot of characters and text inside of it so uh using text for for example comments and blog post and that kind of thing is kind of what we need to use this data type for whereas vacha might be something used for usernames and P password you know something that’s not a huge paragraph that needs to be written inside your website so again choosing the proper data type for a certain type of data or usage inside your website that is appropriate to the amount of characters that you might be using is something you should be doing but now the last type of data type that I want to talk about here is something called date and date time so we have something called Date here which is basically when uh you want to create a date for a certain moment in time so for example today it is the year 2023 and it’s May month which means 05 and then it’s the 14th of this month year uh so we do have different types of uh formatting when it comes to our date and date time and that kind of thing so the formatting is something we need to be aware of when we upload a date to a database because if we don’t format it correctly it is not going to get stored inside a database so when you write PHP code you want to make sure you format it in the same way as the databas is so with we do also have something called date time so we have date time and that is basically the same thing so we can actually copy paste this but we do also have the time so if I were to go in here and say that right now it is 11:30 in the middle of the day so it is the 11th hour and then we have the 30th minute and then we have the let’s just say the zero second of the day uh so this would be 11:30 and then of course we go into not a.m. and p.m. but we’re going into for example uh 17 if it’s 5:00 in the afternoon so we go after this time format here so these are the different data types that I want to talk about but I do want to talk about something called signed and unsigned when it comes to using numbers up here because let’s say we have this integer example here let’s just go and delete everything else now we did talk about there being a certain number of bytes available inside these different data types that we have in here and when it comes to a integer data dat type we have four bytes available to us and that basically means that we can range from this negative number here to this positive number here however if I were to go in and say I want to Define my integer as signed this right here means that we can actually store a negative number inside our database column as well so this would be uh this range that we have right here but I can also go in and Define this one as unsigned which means that we don’t want to store negative number numbers inside this particular number column and that opens up a little bit of options for us because right now we only have four bytes available which means that this is the maximum positive number we can use but when we cut out the negative numbers we can store from zero until a much greater positive number because we have more bytes available and now we cut out all the negative numbers which means that we can store up till actually just went ahead and Googled it here CU that was a little bit easier but you can store the twice as much number when it comes to the positive number so inside a column you can define something called signed and unsigned when it comes to numbers that goes down into the negative range because we want to maybe not allow negative numbers to allow more spacing for positive numbers so that is something that is just important to mention here so now that we talked about all of this let’s actually go and talk about how to actually create a table because now we got a lot of dry knowledge about data types and signed and unsigned and you know defining parameters and you know bytes and that kind of thing so let’s talk about how to actually create a database table so if we were to go in here we can define a create table keywords it’s called which basically means that we’re going to create a table named something so in this case if we can name something called users if that’s how we want to create a table called and this of course would be information about a user inside your website so for example username and password email you know the date that you signed up inside the website that kind of thing there is something to note here which is if you were to write this you may notice that we get a popup which says that this right here is a existing keyword inside our MySQL keywords here so we don’t want to be using a existing keyword so this right here is a no no okay so we want to make sure that we write something that doesn’t pop up as an existing keyword otherwise you can end up in a little bit of you know errors and that kind of thing so make sure you don’t do that so one of the things that I do when it comes to naming a table is to say well inside a table we have many entries of data right so we have many users inside this table which means that it makes sense to call it users in plural because we have many uses inside this table here so I like to name mine users and it is allowed to use a underscore for something specific so if you want to write something you can use an underscore but in this case I think uses is good enough parentheses and semic one and then I’ll open up the parentheses and then we can start creating all the different columns inside this table here in between the parentheses so now we need to think about what kind of information do I want to remember about a user inside my website when it comes to a you know database and information kind of purpose the first thing I want to do here which is something you need to do in pretty much all the different tables you create is to make sure you have something called an ID so I’m just going to go and name this one ID and then I’m going to define a int data type and like we talked about we don’t really need to have something behind inter but for the sake of making sure the Legacy databases and that kind of thing can can use this data for something let’s go ahead and make sure we Define 11 in here just to to make sure we have it defined even though it won’t really matter to us in most cases as a web developer we we should still Define it in here uh so what I’ll do is I’ll go after and say that I want this data type to be not null which means that we don’t want it to be nothing uh that’s basically what null means it means nothing it is different than not having any sort of data it just basically means nothing which is a concept we have inside programming um but basically this means that we we need to have data inside this particular column here and what I’m also going to do here is I’m also going to define something called Auto unor increment and I know I’m not really explaining all of this right now so let me go ah and explain it right after this line of code here so basically whenever we have a table we want to make sure that we can find data inside this table very easily which means that having a ID for all the different rows we have inside the table is going to make it a lot easier for us to grab certain data so let’s say I have a user that has an ID as 65 for example if I were to look inside my database table for the user that has an ID at 65 which by the way he’s the only user who can have that number then it’s a lot easier for me to find that user inside the database than trying to search for his username or something so whenever we’re trying to search for something inside this table here having an ID for all the different rows inside the table is going to make a lot easier for us so basically what we’re doing here is we’re saying that we want to have an ID for all these different users that is going to be a unique identifier that is what id stands for and I want this to be a number data type and I want to make sure that there is a number for all the users in here cuz this cannot be empty and now in order to not manually having to write a ID for every user whenever we create a user inside our website I added something called autoincrement which means that our database is just going to handle this ID column by itself and automatically add a number to this user whenever we create a new user inside this table here so user number one is of course going to be user number zero and then the next user is going to have an ID is one and then number two and then three and then four and then it’s going to keep counting up every single time you add a new user to the database so this is automatically going to increment a number hence the autoincrement keyword and this by the way is unsigned which means that it’s going to use the positive numbers and not negative numbers so this is automatically also going to declare this as being a unsigned and this is something that you have to remember this particular line of SQL code because we use this pretty much in every single table we create inside our database because all our entries needs to have an ID so having this particular line of code as the first thing is going to be very very important now we do have something called a primary key that we need to Define inside this table here which is going to be this particular number but we’re going to wait with that until after we declared all the columns because I want to talk about it afterwards uh so for the people who do know a little bit of SQL here just we’ll get to it okay um so the next one here could for example be a username so let’s say we want to declare a username for this user so we can say username and I want this to be a v chart data type because this is of course course going to be a set of characters because we need to have like you know Crossing or something you know as a username uh so what I’m going to Define here is just 30 because I want to allow 30 characters inside this username more than that I think it’s going to be you know overdoing it a little bit so if a user tries to declare something bigger than this then it’s just going to get cut off at the end there because we don’t want to have more than 30 characters you could also say that maybe like 20 characters is plenty uh but let’s just go and go with 30 for now uh we do also want to declare this one as not null cuz I do want to make sure there is some data inside this column here and then I want to go down to next line and we can actually copy paste what we have here cuz the next one is going to be very similar and this one is going to be the password now there’s a reason why I don’t write password and you may see it there because there is a built-in keyword called password so instead I’m going to declare a PWD which is kind of a short hand for password and doing that I do want to allow more than 30 characters and when it comes to passwords we don’t want to really limit our user when it comes to a password we want to allow them to create as long as a password as they want for security reasons cu the longer it is the better it is but let’s not go overboard here let’s go ahead and say we want to allow 255 characters which we talked about is kind of like the maximum number for some databases so let’s go and make sure we Define uh 255 in here which is plenty for password I think so we don’t need to have more than that uh after this one we can go and go down to the bottom and maybe say something like email and let’s go and Define a vaa as well so we’re just going to copy paste here and I want to allow something like let’s say 100 characters cuz I think you know an email of more than 100 characters doesn’t really exist out there so let’s just go and Define 100 characters and for the last column here let’s go and Define a date time for when they us to sign up inside our website so we know when they signed up inside the website so what I could do is I could create a column called something like created underscore at just so we know you know we have some kind of name for this column here you can call whatever you want in my case I’m just going to call it created at and I’m going to call this one a date time format or data type so to speak and inside of here what we can do is first of all Define a not no which means that it should not be empty and we can also go and Define something called a default which means that if I decide not to write something and send it to my database table here to create a new user then if left empty it is going to by default assign something by itself to this particular column here so what I could say is I could use the keyword called default and actually assign a default value so in this case I could say you know just to give an example here that we have a year a month a day uh we do also have a hour we have a minute and a second and this would be a default date time uh that I could set for this particular database here but of course this doesn’t really make sense like this is you know the year zero at the zero hour so basically the creation of the universe or something so this doesn’t really make sense but what we do have is another keyword inside the database here called current and then you can see we get date and time so one here is just the the date format and the other one is the date time format so we can say current time which means that it’s going to automatically create the time based on the server time so this basically means that we don’t really have to define a date time using PHP if we don’t want to we can do it because this is just a default which means that if we don’t submit something then it’s just going to assign the current time based on the database server but you can also submit a date time using PHP if you want to so you have kind of like an option now but now we do also have something called a primary key and the way you could Define that is by for example going up inside the one column that has to be the primary key and just write primary key inside this this particular column here and now this is defined as a primary key so this would be correct but it is also just kind of a habit to go down here at the bottom and say that you want to have a primary key so we can see we have primary key and we want to define a column so we can say parentheses and that is going to be the ID column which is the one that we have up here and doing this here is also a way to do it so that is just a second way of doing it instead of writing it directly inside the actual column up here um and do note that I’m not writing a at the end cuz the last line of code inside this particular SQL statement here inside the parentheses has to be without a comma so all the other ones you need to include a comma but for the last one you leave it out otherwise you’re going to get an error message now a primary key is basically just a way for us to Define which column inside this table is going to be the one that we use that has to be unique so it can’t be duplicated elsewhere inside any other rows inside this database so for example we can’t have one user that has an idea 65 and then another user that also has an idea 65 because then we start getting error messages so primary key is just basically a way for us to create a unique ID for all the different users in here so we can very fast just grab a user and you know find them very fast inside our database so now with this created we actually do have a database table we can just run inside our database and actually create it uh let’s just go ahead and out of habit just copy everything because because in case something goes wrong and it’s always a good idea to have this you can also go and store this information inside a empty text file or something so you have you know all this data somewhere so in case something goes wrong and oops okay so this particular one up here could not have been named username so I have to call it user uncore name or something instead then instead of having to rewrite everything you have everything stored somewhere so that is a recommendation that I have so you have it saved essentially um so what I can do is I can scroll down and then I can say we want to go which means that we’re going to run this inside our database and then you can see we now have our first database table which is called users if I were to click the database you can see okay so we have our users table right here and we can click it or we can click it over here in the side and then you can see we have an ID username password email and created ad inside this column here or inside the table it’s called um so right now you can see we don’t actually have any sort of data otherwise we could see it below here you just listed out we’re going to talk about how to insert data and update and all that stuff in the next episode but for now let’s go and create another table uh because we do also need to talk about something called a foreign key so again we want to make sure the database is selected and because I made everything so tiny by zooming in it’s now a burger menu for some reason if I would to do this you know to zoom out you can see that I have it up here uh but basically we’re just going to go and click the SQL tab once more I’ll zoom in again so you can see it and we’re going to go and create a second table so in this case I’m going to create a table I’m going to call this one comments because we’re going to create comments that the user can make inside a website underneath something so a picture or a video or something like that so we’re just going to go and create a comment table parentheses and semicolon and what I’ll do is of course I need to Define an ID cuz that’s the first thing so we’re going to say we have an ID this is going to be a int data type and just like before we’re just going to set 11 as a default one and we’re going to say this one is not null we’re going to say this is auto increments so Auto uncore increment so it automatically assigns a new number comma next line and then I’m going and say okay so what do we need to know about this comment here we need to know U for example the username of the person who made this comment so we could say username and we can say this is a v chat data type we’re going to define a username length which in this case it could be 30 because that’s what we defined in the previous table so we’re just going to say 30 here as well not null and then I go down to next line and we do also need to have some text in here of course cuz you need to write a comment so there has to be text in here right so instead of using vaa for this one because we want to allow for the person to write many characters inside this comment here we could also use a text data type so let’s go and say we want to have the comment uh message or just comment text let’s go and do that cuz that’s a lot shorter so comment text and I can say this is a text data type I want to set this one to not no and I want to go down to next line let’s also go and create a timestamp for this particular um when this was created so we’re going to create a datetime data type and we’re going to call it something like creatore at cuz again we can just reuse the same name as the previous one um and then we’ll also go and Define a not null and we can also go and create a default and then we can again use the same thing so we can say current time stamp or current uh time it’s called so it will just automatically create a time stamp for this particular comment once it’s actually created and then at the end here we’re going to create our primary key so we’re going to say we have a primary key which is going to be our ID so we’re going to Define ID inside this particular one here now we want to also Define a foreign key in this example here cuz we can create something called a relationship between one database table and another database table so right now we have a user who made this comment so we’re trying to think logically here which means that we can actually tie a comment to a particular user and you might be thinking well Daniel we defined a username isn’t that what you’re saying so if we say that a user called cing from the users table uh now is also named Crossing inside this comment table here aren’t those connected then um to a human that might be connected but for a datab base that is not connected uh there’s no relationship going on between the two tables so what I can do is I can actually say that okay so this comment here let’s say we actually upload a comment to this table here has to be connected to a user that has a certain user ID again the primary key inside the users table has to be connected to that particular comment and there’s a couple of reasons why we can do this let’s for example say I go inside my website and I sign up as a user and now I have a a user account then I go inside a picture and I write a comment underneath the picture now what is going to happen when I delete my user account is it going to delete all the comments inside the website that I made with that account or is it just going to throw me an error message because hey you made comments inside the website so you’re not allowed to delete your account or should we just go ahead and say that okay so we can delete the user account but we now need to Define all the comments the user made as a deleted user because the user no longer exists inside the website so what needs to happen once we have this relationship and you decide to lead a user from inside the website so what I want to do here is I want to first of all Define a column that is going to reference another column inside my users table and when it comes to naming this column here we can give it any kind of name that we want to but in my my case I think it makes sense to say that this is from the users table underscore and it’s going to be the ID for the users table so just a little bit of logic here for me so I know exactly what this is and what I can do is I can define a data type and not null and all this kind of thing um but it’s very important that when it comes to the data type that we assigned the same data type that is inside my users table for this particular column that I want to reference to so in this this case here this is the ID for inside my users table which means that we have the same type of data as we have up here which is int 11 so we need to make sure that we Define the same data type for this particular column here then I can also go and say not null and what I can do now is I can go down below my primary key and I can define a foreign key so we can say foreign key the first thing we need to Define here is which of my columns inside this particular table is going to be my foreign keys in this case here I want to say this is my users ID this is the one that I want to reference to a key from another table so what I need to do is write references because we reference another table called users and we point to a column inside this users table called ID because that is the ID from inside the users table that I’m trying to reference to inside this column here and now with this we could just go ahead and submit it and that would be okay everything would work perfectly fine um however like I talked about previously if I were to go inside my website and create an account and write a comment underneath a video or a picture or something and I then delete my user account what is going to happen now now as a default you’re going to get an error message because as a default we have something called on delete and then we can write something like no action and what this basically means just to kind of explain this for you is if I were to go inside and delete a user from inside my users table that has a certain ID that is connected to a comment that is made inside this table here so right now there’s a relationship going on between a comment and a user from inside the users table if I were to delete the user so on delete then I want no action to be made so essentially it’s going to throw an error message and not delete the user because we don’t want to delete the user because there’s a relationship going on here so if we delete the user then it’s going to break our database table relationship and this is basically the same thing as doing this right here because this is actually the default state of what is going to happen if you try to delete a user that has made a comment so that is not really going to make a lot of sense in most websites like logically in the real world this is not going to make a lot of sense because you know I should be able to go inside a website and delete my user account even if I made a comment somewhere like that should be a valid thing to do uh so we do also have something called Cascade so on thead I want to Cascade which basically means that if there’s any comments inside this table here that has a relationship to a user from inside the users table that is now being deleted then also go ahead and delete all the comments made by that particular user so that is what Cascade is going to do but we do also have one called set null which is basically going to instead of you know deleting all the entries or throwing an error message this one is just going to go ahead and set this column in here as null whenever we delete a user that this one has a relationship to which basically means that there’s not going to be any sort of ID that we’re pointing to inside the users table it’s just going to delete it from inside this column here but now if I were to try and run this code inside my editor here so let’s go and make sure we save it just to make sure if we were to scroll down and actually run this you’ll notice that we get a error message message oh no there is a error which is called error number 10005 which is actually when it comes to the foreign key being written wrong inside this table here now if you know a lot about logic inside a table you may see what is wrong here because right now I’m telling it if I were to delete a user from inside the users table then go ahead and set the comment column which is called users ID to know right but what did we also Define inside this column here we said it cannot be null so right now we’re saying okay so if we delete a user set this column to null but hey oh we’re not allowed to do that so if I were to do this down here I do also need to make sure that we don’t have not null inside this column here otherwise we cannot do it so we need to make sure we do this in order to submit it so now that I have this again we can copy everything go down to the bottom make sure you have no comma at the end here by the way and go ahead and submit this then you can see everything works out just fine so now if you were to go inside my database you can see oh we have two tables now we have a comments and a users table and these actually have a relationship with each other we have a foreign key that points to another table so now we actually have something going on here and with this we now know a little bit about creating tables inside a database or you know a lot about creating tables inside the database of course you can go much deeper into it uh but for now I think as a beginner sort of lesson that is already quite long this is going to be plenty for teaching you how to create tables inside a database so for now this is what you need to know about creating tables and in next video we’ll talk about how to write some SQL code to just insert and select data it it’s much more simple than this episode by the way um this episode was quite long and complex compared to the next episode because we just need to write like one liner code in order to insert data into a database you know into one of these tables here so that is going going to be much simpler okay so with that said I hope you enjoyed this lesson and I’ll see you guys in the next [Music] video so now that we learned how to create a table in the last episode I thought it was a good idea to talk a bit about how to actually insert data inside our database table since right now we have these two tables that we created but we don’t really have any s of data inside of them we’re not going to talk about selecting data in this episode here since we also need to talk about something called joints in order to talk properly about selecting data and that would mean that this would actually be a little bit longer episode so for now let’s just go and talk about inserting deleting and updating data since it’s fairly simple to do so we don’t really need to have a long episode to explain that with that said as you can see right now I selected my database and inside our database we have comments and a users t table since we created that in the last episode now what we’re going to do is we’re going to talk a bit about how to insert data to begin with so I’m going to go inside my SQL tab up here make sure you do have your database selected over here on the side and from in here we’re going to go ahead and write some SQL that is going to insert some data inside our users table just so we have something to to work with you know to teach you how to insert data so what I’m going to do is I’m going to write something uh called a insert into statement which basically means that we’re telling it to insert some data inside one of our tables and in this case we want to insert into users which is our users table and then we want to tell it what exactly do we want to insert inside this table here so in this case here we do have a couple of table rows that we want to do something to and when it comes to inserting a row of data we do have different columns that we need to provide some uh some data for uh so if I were to actually right click on users and open that in a new tab so we can actually see our users table you can see that right now we have an ID a user name a password an email and created at so those are the five columns that we need to insert data for now in the last episode we did talk about ID being automatic so we didn’t have to touch that one it’s just going to automatically create an ID and we did also create a default value for our created ad so we don’t actually need to create data for this one either so right now the only one we actually have to do something for is username password and email so what I can do is I can go back inside my insert statement and inside the parentheses I want to tell it which columns do I want to insert data into so in this case that we want to say that we want to insert inside our uh username then we do also have a password and we had a email so right now we have these three different columns I want to insert data into and you have to remember the the order here because the order is going to matter and afterwards we want to say that we want to include some values to insert inside these columns so we’re going to say values which are going to be inside a parentheses as well semicolon and inside of here I want to provide some strings since in this case we do want to insert strings not numbers and if it had been a number I would just write a number in here but because we’re dealing with a string or characters I want to make sure we have these sing quotes you can also use double quotes but it is just kind of a habit inside when it comes to SQL statements that we use single quotes So for that I’m going to go and insert a username so in this case I could call myself cing just to do that I could also provide a password so in this case yeah I could say something like Danny 123 just to you know have something in here uh I do also want to point out when it comes to actually inserting a password you know in more real life examples we do need to Hash the password first so it’s more secure uh because if a hacker were to gain access to our database it shouldn’t be able to tell what the password is so you know doing a little bit of hashing for the password is something you need to do uh but just because we’re practicing here we’re just going to go ahead and insert a password that we can actually see inside the database because we want to see if this works so afterwards here I’m going to go and provide the last one which is going to be an email so I’m just going to say uh John do John do at so John do at gmail . just to you know give it something this is just a placeholder email and just again to make sure we have this saved I’m just going to copy everything here and I’m just going to go and open up my text editor and just paste it in so now we have it stored somewhere so I can actually go ahead and see it in here you know so we we can just copy paste it again if we need it for another time um so what I can do is I can go back in here scroll down and I’m just going to go and submit this one so I’m going to click go and when I do this you can see one row inserted inside our database table so if we want to click this users table or just go into the tab that we have open refresh it you can now see that we have a piece of data so right now we have aids1 we have clossing Danny 123 John Doe and then we have a date for the the time right now that I created this user here so everything is working perfectly so now let’s go ahead and go in and add a second user just for an example here so I’m going to go and go back make sure my database is selected now because I’m zoomed in it’s going to give me this burger menu up here so don’t worry too much about that just go in Click SQL again and I’m going to go and paste them what we had and I’m just going to change the values here so we can say this is going to be Bess and this is going to be just Bess 123 and I’m also going to go and change my email to Bess gmail.com and I’m just going to scroll down and click go so now for I want to go in you can now see that we have two different users us so now we have an idas one and an idas 2 and remember the ID is going to be a unique identifier so in this case here you know each user has a unique number for each of them that is going to be relevant for a little bit later in this video here um so for now let’s just go ahead and save this as it is and talk a bit about how to go in and update one of these tables here so if I were to go back in and make sure we have SQL clicked I can go in we can now create a update statement so if I were to say want to update one of these rows of data um just to go back in here just to show you uh so this is a row of data as you can see horizontally we have all this data here and then we have the columns which is the ID the username the password email and creat AD so you can see how we have rows and columns right just to point it out uh so going back in I want to change one of the rows from inside my table so what I can do is I can write update which is another command that we have here and I need to tell it which table do I want to update in this case here so right now I want to update the users table and I need to tell it okay so we have the user table selected but what do I want to change and from which specific row and this is where the ID comes in because what I can do is I can say I want to set a new value so in this case here I can say let’s say I want to change the username of Bess for example what I can do is I can go in and say I want to change the username and I want to set it to a new value so I’m going to set it equal to a new string but like I said it is more common to use single quote so let’s go Ahad and stick to what I’m saying um so what I can do is instead of saying Bessa 12 three is I can say Bessa uh 456 just to change it to something else now we have you know not one two three but we have 456 if you want to change the second piece of data you can also do that so you can also say comma and then add another piece of data from inside that particular row you want to change so in this case here I can say that I want to change maybe the I just realized this is actually the uh the password I just wrote in here so let’s go and copy this uh this information here and say I want to change the PWD into Bassa 456 because that makes more sense so let’s change the the username into something else let’s call this one Bassa is cool just to have something right because he is kind of cool he’s sitting right over there um so what we can do now is we picked two columns that I want to change and you could pick all of them if you wanted so you can just keep adding commas and add some other data um but in this case I’m just going to go and say I want to change these two different columns and I do also need to tell it where from inside this table I want to select a row because right now we don’t actually know exactly what we’re picking like right now we’re just saying oh set all the usernames and all the passwords to this value but we need to pick a specific user that we want to graph from the the mix of of users so what I can do is I can say where the ID is something specific so I can say where ID is going to be equal to two because if I were to go back inside our users table you can see the Bessa has an ID as to so in this case here I can just go ah and pick out you know the person with the ID of a specific ID is going to have this data changed about it um if you don’t know the ID of the user you can of course also go in and say that okay so right now it’s the person with the username that is equal to uh what was it Bessa um or if I want to say okay so we need to have the user be a user with a username of Bessa but also so and the password should be equal to something else so Bess one two 3 for example here inside strings of course so we’ll make sure we have single quotes there we go um so in this case here we only change the information if Bess has this username and this password here or we can also go in and literally I just made an unintended pun there uh we can also say or instead of and and say that if the username is equal to cing so in this example here I’m changing the username and the password of two different users inside my database so you can also use you know a username search two times in a row row and just say okay so if the user has a username A Bess or crossing then change them inside the database or ID you can also write ID and say ID is going to be equal to uh one so we can actually say this is a integer so we say one or the ID is equal to two so this would also be the first two users inside the the table so you know like we can mix a match things here and and mess around with it as much as you want um but let’s just go ahead and go back to just is saying where ID is equal to one in this case here so if we were to actually run this and go down say okay or go it’s called Uh then you can see if for where to go back inside my users table notice how bassim uh is going to have his username changed and his password is going to change once I update okay so I accidentally set the user ID as one okay so we changed the wrong one here so instead of changing you know the Bas one down here we actually updated my cing one uh because wrote we wanted to change it where the ID is one and not two uh small mistake on my end but hey it it kind of proves my point so now you can see the old version down here and the new version up here so you can see that it is actually changed um so what we can do now is talk a bit about how to delete data from inside the database and I want to give you kind of a small little example here because I get a question quite often when it comes to deleting data from a database and I want to kind of prove a point here so what I’ll do is I’ll go in here and I want to say we want to delete from our users database so delete from users and I want to tell it which row do I want to delete from inside this users table which is going to be done in the same sense as we just did with the update because we have to pick the specific row maybe based on an ID or username or something you know can mix and Max this with and and or just like we did before but let’s just go and say we want to delete the one that has an IDE D equal to 1 which is the one we also just updated so we had Bessa is cool and Bessa 4556 right so if we were to do this and go back down to the bottom and run this you can see that now we get a small popup so it actually says are you sure you want to really execute this quy and I’m just going to say yes here and then we say one row is affected so if we go back inside and refresh you’ll notice that now we only have our second user inside the database table and this is where I’m going to prove a point because what is going to happen when I insert another user inside my table here because if were to go back inside my little uh code that I saved in here conveniently and went back inside and ran a new insert statement so if we were to go inside my SQL tab here and run a insert statement and say we want to insert Crossing Denny 123 you know blah blah blah and run this what user ID is you’re going to get if you guessed one you are incorrect because if we go back in here and refresh you can see oh okay so Bessa has an IDE is two and then Crossing has an ID as three oh no but that messes with my brain cuz where is user with the ID as one inside this table here I do sometimes get comments underneath my video asking about so what do we do in this situation here cuz you know one is missing so so what are we going to do uh can you just go inside and maybe change this so we write one and then we write two down here uh so you actually do this and you actually update it because you can do it like this as well if you wanted to um so if I do it like this ah now everything is matching right if we can actually get this out of the way so now user number one is B and user number two is crossing so ah now it’s not going to be two and three anymore you know so it’s not like weird or something but it’s very important to point out here that doing what I just did changing the IDS manually by just going in and changing them is a big no no okay you cannot do that let’s say for example that one of my users made a comment inside the comments table which now means that one of those users are assigned to a comment and then I manually afterwards go in and change the IDS of all my users then all of a sudden all the comments and which user made those comments are going to get all messed up inside the database so don’t change the ID manually just go ahead and leave the numbers broken as it is because it’s supposed to be be broken if you start deleting users so if it says in this case here I can actually just show you another thing here uh if I were to try and go in and change the ID to two it is going to give me an error message because this is the primary key which means that there cannot be the same ID for all the different users so in this case because I tried to change this one to two but we also do have another user that has an ID is two uh it it doesn’t allow me to do this uh so going back here I would have to go in and Tin this one to three because now I can tin this one to two because now there’s no duplicates okay so this right here is the right thing okay don’t go in and change these numbers to one and two because oh it makes sense to your brain uh to do this so I get this question quite a lot so I just wanted to make sure that this was answered properly in a lesson I do know I kind of went on a rant here because I do get this question quite often but I just wanted to make sure that people didn’t start changing the IDs manually inside a database because like I said it starts Breaking All the relationships to other tables and that kind of thing so uh with that said we have now learned how to insert update and delete data from inside our database tables so in the next video we’re going to talk a bit about how to select data from inside a database table since that is very important to know as so you can actually select and show data inside your websites and we will talk about selecting data but also how to join data together together if you have data from two different tables uh let’s actually go and do one last thing in preparation for that so let’s go ahead and copy the insert code that we have here go back inside our database make sure it’s selected and go inside our SQL console what I want to do is I want to insert inside comments and I want to insert a comment from one of the users inside my table here because that is going to be relevant when it comes to talking about joints and that kind of thing in the next episode so so what I will do is I’ll open up my comments inside a new tab so we can actually see what is going on and inside the comments table we do want to remember that we have a username a common text and also a users’s ID because these other ones the ID and the created app is going to be automatically created for us so we don’t need to worry about this one uh so we have these three columns here so username I’m just going to copy it go back in here and say I want to you know paste it in it was already in there so we didn’t need to paste anything I do also want to grab the common text paste that in as the second one and then I want to paste in the users’s ID now it is important to keep in mind that because the users uncore ID is a foreign key it has to match one of the users from inside my users table otherwise we’re going to get an error message because there’s no user connected to this comment here and we did set it up in the previous videos to make sure that we do need to have a user connected to it okay so it is important that we have a user that is existing inside the database so with the values here I’m just going to go and say we have a username so the username for this user could for example be cing and in this case here if we were to go back inside my database inside the users table uh cing right now has an ideas three so I’m just going to copy that then we’re going to go back in and make sure that the users ID which is the last one down here does have the same ID as that user inside the users table and I do also want to go in and write a message which is going to be my commment so I can say this is a comment on a website just so we have something in here and with this if I were to just copy this to make sure that we have it saved if I go down and click go you can now see that we’re going to have a comment inside my comments table so if we want to go in here you can see we have an ID we have a you know cing this is a comment on a website created that and then we do also have our users ID from the user inside our users table so now everything is working like intended so with this comment here we’re now ready for the next video where we’re going to select data from inside our database so with that said I hope you enjoyed and I’ll see you guys in the next [Music] video so in the last video I showed you how to insert update and delete data from inside a table and in this video we’re going to talk about how to select data since we we need to know how to do that in order to select data and show it inside a website so with that said let’s just go ahead and dive straight into it here uh in the last video we did create a couple of data inside our tables here so inside my comments table you can see that I have uh one comment from one user and inside my users table I do have two different users that I could do something with inside my database so we have Bessa and crossing and what I want to do here is I want to go inside my database and go back inside my SQL tab now again it looks a bit weird on my screen here cuz I’m zoomed in but if it were to zoom out you can see it’s right there um and what I want to do here is I want to create a select statement so we can actually select some data from inside one of the tables and actually show and we can do that directly inside our console here so if were to go in I can write a select statement so I could say I want to select and then I want to say what do I want to select you know what kind of columns do I want to select here so I could for example say username I could also write a comma and say I want to show the email and then I need to tell from which table inside our database they want to do this from so from inside our users table and then I want to write where so we can actually select these specific row that I want to select data from since otherwise it would just select all the users from inside the database um so right now what I want to do here is just kind of tell it which row they want to select from so I could for example say where the ID is equal to three in this case here so if I were to do this we can actually output data um so if you want to run this you can go down click go and then you can see we get some data in here so one total we got from this Cory here so if we want to scroll down you can see okay so we got a person called cing with an email called John Doe because he is the one that has a ID set to three inside my users table so we selected some data from inside this table here using the select statement and we got the information that we asked for which was the username and the email in this case here and we can do the same thing when it comes to a comment so what I can also do is I can go back up here make sure that we go inside our database I want to select the SQL console and that I can just paste in our select statements and say that I want to select the username the commentor text from not the users table but the comment table and we do want to make sure we change this last ID over here because if I were to go inside my comments table if you followed the last video uh you’ll know that we right now have an ID column but we do also have a users uncore ID and the ID column is the ID for this specific comment but the users uncore ID is the ID for the user who made this comment here so it’s very important that we we pick the right one here uh so users uncore ID is what we need to select over here so users uncore ID and I’m just going to go ahead and copy everything to make sure it’s saved go back down and then I’ll go and quy this inside my database base and then you can see we get another user or at least a comment from a user here called cing and we get this is a comment on a website now we do also have something else we can do which is something that you usually see people do when it comes to selecting data from a database if we were to go back inside my SQL console I can do the same thing but instead of writing which specific columns I want to pick something from I can go ahead and write a star symbol or a multiplication symbol um and that will actually go select everything from inside this row here so not just specific columns but everything okay so what I can do is I can just go and save this go back down run this query and then you can see we get everything so we get the ID the username the comment text the Creator ad and the users uncore ID of this particular comment here so it’s not really that difficult to select data from inside one of these tables you just need to run a select statement and just fill in the blanks essentially but now let’s talk about something something called a join which is when you select data from two different tables at the same time or actually you can do as many tables as you want but let’s just go and focus on two here uh so let’s say I want to select my user called clossing but I also want to select his comment from inside the comment table so now we’re actually grabbing two different uh rows of data from two different tables what we can do is I can go and make sure I select my database and open up the SQL console and I’m just going to go and paste in what we had here from the previous example so select everything from comments where users uncore ID is equal to three so now when it comes to creating a join we have a couple of different types that we can use we have something called a inner join we have something called a left join a right join and in some databases we do also have something called a full join but in my SQL databases like the one we’re using right here I do believe we do not have a full join so instead what you could do is create something called a left join and a right join Union where you basically combine those other two types of join to get the same effect as a full join um again I’m just kind of like rambling here and you probably don’t understand what I’m saying so let’s go and do a example here uh so what I want to do here is I want to go and create a inner join and in order to do that I’m going to say I want to select everything from users and I’m not going to go and add where ID is equal to three because that will actually be created a little bit later on inside this join uh so instead I want to go ah and say I want to select everything from users and do a inner join together with the other table that we have called comments and I want to make sure we do it on a certain column so right now we have two different columns from inside each table and those columns are going to have the same data inside of them to kind of connect them together so right now we have inside our users table we have an ID so our user has an ID is three and inside our comment table we have a comment where the users uncore ID is equal to three so what I want to do here is I want to combine these two tables where we have this same column data right cuz we made a foreign key so we can do that using the foreign key cuz that is perfect for that kind of thing so what I’ll do is I’ll go back inside my quy and say I want to select from my users table so users Dot and then you can see we get some options here so I’m going to select the ID where it’s equal to our comments Dot and then you can see we get users uncore ID and then basically spit out the data based on these two tables here so again before we quy this just to explain it again CU I know joints can be a little bit confusing to people uh we’re basically combining two tables together and we want to select everything from both of these tables and we start by selecting one table so in this case here the users table and then I want to injoin it with my comments table and I want to combine a data from these two tables using one column from each table that has the same data inside of it so if I were to C this just to make sure if we get any sort of Errors we still have it here if we were to scroll down and run this you can actually see that we’re going to get one result and that is going to be my user so in this case here with an ids3 uh cusing password email created at and then we also get the commment over here so everything is combined in one row of data and just to show another example here because you can also go back in here if I were to select my database and run another query and P paste everything back in you don’t have to select everything from both of these tables here you could also just go in and say that you want to select from the users table so users do uh username and you might also want to select something from the comments table so we can say comment dot comment text in this example here and maybe also another piece of data from the comments table so we can say comments. uh created at so if you want to select specific data you can also do that so we would actually run this scroll down you can see we get the same kind of thing but now we just get the The Columns that we asked for from both of these tables here and I do want to point out you that if I were to have another comment inside my comment table made by the other user named Bessa in that case it would actually get two rows of data down here so right now we we have this row of data here but we would actually get a second row below it with Bessa instead because all we’re asking is to grab data from two tables that has matching ID and user ID and spit it out and any other sort of data that does not have any matches is not going to get shown when we actually Cory this which is why we only get one uh piece of data down here but let’s go and talk about left and right join because that is going to change things a little bit so if we would going select my database go back inside my quy and just paste everything in and instead I’m going to do a left join which means that basically this users table is the primary table we have in focus and I want to join it together with any sort of comments that are made by my users so even if a user does not have a comment we’re still going to show all the users from inside our users table but they’re just not going to have the comments shown next to it so by doing a left join you can kind of see here that we have the users on the left here and we have comments on the right side and that is basically what we’re talking about here when we’re doing a left join so you know this is the left side this is the right side uh we can also do a right join which means that we’re talking about the comments on the right side and not the users on the left side so this is the the primary one that we’re focusing on over here but just to kind of demonstrate this if I were to do a left join I am now selecting all the users no matter if they have a comment assigned to them so in this case here if we were to go ahead and do this and run it inside below here you can see if I were to click go we would now get two pieces of data because I’m grabbing all the users but you’ll notice that the user that does not have a comment does not have any sort of data it just has null instead because we have no data so in this case you can kind of see that we still grab everything from our users table but not everything from our comments table only the comments that have a matching user is going to get grabbed and we can also do the same thing the other way so if were to go back inside my database and do a right join instead I can just paste everything in here and say I want to do a right join then I’m going to show all the comments but only the users that actually made a comment where these actually match when it comes to the column so in this case we just going to get one row of data which is going to be the exact same thing as when we did our inner join that is just coincidence by the way so would actually run this you can see we get one row of data and that is going to be our cing because he actually has a commment so we’re showing all the comments here but not all the users which in this case it would just be one row of data so if I were to have more than one comment inside my comments table uh we would have all those comments listed below here but the user information would just say null instead uh so the opposite of doing a left joint essentially in our case here with this example I have uh to show you and that is basically how to select data from inside our database and I just want to point out here that I know we talked about joints in this episode here in a lot of cases when it comes to just grabbing data from a database you’re just going to be doing what we did at the beginning of this video here you’re not going to be using joint for something specific that is more for other specific purposes inside your website we actually do want to combine data from different tables but in most cases you just going to be selecting data using what we did at the beginning so uh don’t worry too much about these joints here they are good to know uh but we’re not going to be using them you know when we start selecting data from inside our website in the upcoming examples when we actually uh start talking about how to use PHP to select data from inside a website database so with that said this is how you select data I hope you enjoyed and I’ll see you guys in the next video [Music] so in the last couple episodes we talked about how to go inside a database and create a table as well as creating data inside those tables and updating them and deleting them you know just kind of like manipulating data inside a database but we haven’t actually talked about how to do that from inside a website so that’s what’re going to do today as you can see I have a very basic website in front of me there’s not really anything special here just basically have a index of PHP which doesn’t really have anything there’s nothing inside the body tag um so what I want to do in here is I want to go ahead and actually create a connection to my database so I can actually go in and run PHP code that can actually query this database so in order to do that we need to have a connection going first so what I’m going to do is I’m going to go inside my project file and I’m going to create a new folder and I’m going to call this one includes now includes B basically means that this is going to contain files that are not going to be seen inside the actual website so for example a pure phsp file that just needs to run a script in order to do something but it’s not a actual file that we visibly see as a page you know in the same senses we see this uh index. PSP file because that’s the front page so the include files are just basically extra files that just run code the first thing I’m going to do inside this folder here is create a new file so I’m going to say I want to create a new file I’m going to call this one on dbh do in.php which stands for database handler. includes. PHP now it’s very important to point out here that it is possible to go in and name it as db. in which is also a kind of file that we can use and create phsp code inside of um but this kind of file can create issues and some people when they hear that I I call it in.php think that we are creating a in file that’s not what we’re doing here the in is just a naming convention so to speak so it doesn’t really do anything uh this is going to be a PHP file so in this case if we could call it db. in or you could call it db- Inc or just dbh Inc if you wanted to it’s really the same thing cuz it’s just a name uh so don’t get confused about the naming convention that I’m using here it’s just a way for us as the developer to know exactly what kind of file this is so what I’m going to do is I’m going to name this file and create it and inside this file I’m going to open up my PHP tag so we can actually create some PHP code and it’s important to point out here cuz we talked about this in my syntax video at the very beginning of this course that when we have a pure phsp file we don’t create a closing tag so for example you would create this at the end of a you know a pair of PHP tags we’re not going to do that when it’s a pure PHP file and the reason for that is if we were to accidentally go below here and create some HTML or something just by mistake then we can create more damage than you know not doing that again you can always go back and watch that episode at the beginning of the course if you want to know more about this but we’re just not going to put it in here okay um so going in here what we can do is we can start off by saying that we want to include some information about our database uh we did of course create a database in the past couple episodes so if I were to go in here you can see that I created a database called my first database and inside this database we also created a couple of tables that could actually have some sort of information inside of it so we have a comments table and we have a users table where we actually do have some users uh just because we learned how to insert and you know update and delete data and that kind of thing so we have some stuff in here is what I’m trying to say all we have to know for now is that we have a database called my first database because we do have this uh PHP my admin hooked up to our server so when we do actually need to connect to our database we do need to tell it which one of all these databases we’re trying to connect to because it is possible to use more than just one database inside a website you can use multiple if you want to and there there is Arguments for doing that you know for different reasons but for most websites you’re just going to have one database for everything um so remember the name my first database so going back inside our file here and I’m going to create a DSN which stands for data source name which is US telling our server uh what kind of database drial we’re trying to use and you know what is the dat database name uh what is the host that we’re trying to connect to here in this case it’s going to be Local Host so we need to give it a little bit of information about this database we’re trying to connect to uh so in our case we’re using a mySQL database so we’re going to create a variable I’m going to call this one DSN and I’m going to set it equal to a string and inside of this string here I’m going to say that I want to connect to a mySQL database driver then I want to tell it what kind of host I’m trying to connect to here in this case it’s going to be Loc host so we’re going to say equal to Local Host semicolon and then I want to tell it the database name which in this case here we did already just go in and check in my case it’s called my first database and again if you called it something else in the past couple episodes you do need to change this so it matches whatever you call your database um so you basically just go in and change the information here depending on what database you’re trying to connect to um so underneath here I need to give it two more pieces of information I want to give it a database username so we’re going to say DB username and this one is going to be equal to root and I do want to explain this in just a second but let’s go ahead and create the next one as well so I’m going to create a database password and this one is going to be empty in my case here password there we go um so basically when we have a database we do also have a username and a password in order to connect to our database which makes sense uh so in my case because I’m using my examp software and I have not gone in and actually changed this the default username and password is going to be root and then no password I do want to point something out here though because if you’re using a Mac computer you may need to go inside your password and write root um because I did experience 12 years ago when I was studying my web development bachelor’s degree that people who were using Mac computers and using xamp did actually need to include root in both places because XM is a little bit different on Mac than it is on Windows when it comes to at least this information here uh so if you’re sitting on Mac and doing this right here doesn’t work for you try writing root both places and see if that works for you or just Google how to change your password and username for your database again there’s a couple of different options here uh we’re just going to stick with this information for now and then I actually want to go down and run a TR catch block so we can actually see we get some a popup here and it looks like this so basically we have a TR cats block which means that we are basically running a blocker code and if an error occurs then I can do something else by catching the error and then doing something with the error mthod that’s basically what a TR catch is and you’ll see this very often inside PHP because a TR catch blog is very useful so what I’m going to do inside my try is I’m going to say that I want to run a PDO connection and we didn’t actually talk about this yet because when it comes to connecting to databases we have three different ways we can do it we have what is called a MySQL connection which is very bad and you should never use that because it’s obsolete and they actually came up with a new way to connect to a database which is called mysqli which stands for improved um this basically goes in and does extra SQL injection prevention um so don’t use my SQL because there is some security things that is just not very good but now let’s not talk more about was you cannot connect to a database cuz we have talked about that now but what you can do is you can connect to a database using mysqli I or we can also use the third method which is called PDO now PDO stands for PHP data objects which is basically another way for us to connect to a database that is a little bit more flexible when it comes to different types of databases out there mysqli is very good when it comes to mySQL databases but if you plan to connect to other types databases for example SQL light or something then you can use something like PDO it has also been a thing in the past lessons of mine that people do request that I use PDO so we are just going to stick to using PDO since that is going to be the one that people lean more towards because it is more flexible um but for people are curious about what exactly the difference is when it comes to the actual programming when it comes to mysqli and PDO um it’s basically just the methods that that you know change a little bit when you when you start programming it if you are curious about mysqli you’re more than welcome to look it up but we’re going to be using PDO in these lessons here so having ranted a little bit about different ways to connect to a database we are now going to create a PDO connection so PHP data objects is a way for us to create a database object when we want to connect to a database so basically we turn the connection into a object that we can use inside our phsp code and just refer to that object whenever we want to connect to a database so what we’re to do is we are going to have a variable called PDO I’m going to go inside of it and create a new PDO object so we’re going to say new PDO and what this basically does is that it instantiates a PDO object off of a existing class inside our PHP language that is going to create this connection based on a couple of parameters so for example what is the you know the database driver going to be what is the uh host going to be what is the database name we’re connecting to what is the username what is the password and then it’s going to create a database connection object that we can use so going inside this PD I’m going to give it a couple of parameters the first one is going to be the DSN which we just created up here uh so we have all of this information then I’m going to give it the username so we’re going to say DB username and then I’m going to give it the database password so doing this here we now have a database object and just to mention it here we could Technic technically just take this one lineer code and do this right here and that would actually be enough to connect to our database if all the information is correct every single time um but we do want to have some sort of error handlers you know if an error happens then we want to be able to grab that error message and show it inside our website um so you know even though this is like the pure bare bone you know enough to connect to a database uh it is a good idea to run this TR cats block here to you know get any sort of potential errors so what I want to do is I want to set a attributes inside this object that we created here uh we can do that by going in and say we want to grab this PDO variable that we just or object that we just created here because now it’s no longer a variable it is actually a object and I want to point to a existing method inside this object called set attributes which is going to allow for us to change a couple of attributes about this particular object that we just created for example how do we want to handle error messages that we may run into when we try to connect to our database so inside the parameters here I can say I want to grab a specific uh attribute so in this case it’s going to be PDO colon colon aore error mode so e r r m o d e you can actually see it pops up over here uh so we’re going to grab the arror mode and then we’re going to say we want to set it to a PDO colon colon e r r m o d eore exception so right now we are saying that if we get a error then we want to throw a exception which means that we can go down inside our cats block down here and actually grab that exception which is you know information about this error here so what I can do is I can say I want to catch my PDO exception and I want to name this one variable e so we’re basically just saying that this is a PD exception type which is going to be named as variable e which is a placeholder that we can refer to inside the curly brackets here so if an error message happens then I want to go in and Echo out a message connection failed colon space and then I want to concatenate a error message so right now we are grabing the Exception by referring to variable e so I want to go after here and paste that in and say I want to run a method called get message parenthesis and semicolon so right now we’re getting the exception which is the error that maybe thrown and then we want to grab the actual error message and Echo that out inside the browser so if we don’t connect correctly to a database then just go ahead and throw an exception here but like I said this one liner code here is actually the one line that we use in order to actually connect to our database so all this other stuff down here is error handling and throwing you know error messages inside the screen if the connection fails that kind of thing so for now just know that this line here is the important one so now that we have this we can actually go in and actually do stuff inside our code so if I wanted to you know select data from a database or if I want to insert data inside my database I can do that by simply running uh this one connection here and actually querry something into my database using PHP code and we haven’t talked about how to do that yet but that is something we’re going to talk about in the next upcoming lessons uh so for now we learn how to connect to our database and in the next upcoming lessons we’re going to learn how to insert data we’re going to learn how to update and delete data so we can actually use the connection for something so I hope you enjoyed this lesson and I’ll see you guys next [Music] time now I just got done watching the last video that I uploaded to my channel and I thought why not just show you how to go in and change your username and password when it comes to connecting to a database because if some of you are sitting there with with you know a Mac computer or something where things are a little bit different when it comes to the password then you may want to know how to change your username and password in order to you know decide yourself what you want it to be and as I did that I did also run into a very well-known bug when it comes to PHP my admin that actually prevents you from going in and clicking on user accounts in order to change your username and password now the error you might be getting is called exam error number 1034 index for table DB is corrupt or something like that so you know having something corrupt inside a table uh there is a very easy way to solve it so I will show you how to do that after I’ll show you how to go and change your username and password and then you know at the end of the video I’ll show you how to solve a corrupt table so the way you change your username and password is by going inside PHP my admin by clicking it up here to make sure you’re inside the main page of PHP my admin uh because if you click a database you can see all the menus change so that is not what you want to do so going inside PHP my admin we’re going to go under user accounts and then you can see we have all these different users that are here as a default now the one that you’re looking for is the one that has a host name of Local Host and a username as root how do we know that well we used Root in the last episode where we actually connected to our database so you know you need to have one where the username is root and also where we connect to a host called Local Host so this is going to be the one down here at the bottom so what you can do is click on edit privileges so you can go in here and then you can see we get a new menu where we can change this user here uh we do have one up here called login information so if you click that one you can see that we can change the username from root to something that we may want it to be um so if I want this to be Denny or something else then we can change it in here just change it go down and actually you know click go at the bottom here in order to make the changes happen uh do not go in here and do the password in here cuz there is apparently a bug that can happen where you go in and change the password directly in here uh I’m not saying it is going to happen to you but it is better to go back up inside the top here where it says change password click it and then change it in here instead so you go in here uh you choose to have a password then you enter you know something so in this case it could be anything that you might want to think of and then you retype it and then you click go and then you basically change the user information and the password for the user that we use in order to connect to a database um but now let’s talk about the bug that you may encounter which is the one called eror code 1034 uh so basically when you click this user accounts up here instead of going inside right here it may throw a error which gives you a popup with the error message that I just told you about and basically can’t access this page here the way you’re going to fix it is by first of all figure out where exactly the corruption is because that is what you need to find out in order to solve it uh so the way you can do that is by going back inside PHP my admin and then clicking on whatever database that it’s actually telling you there is something corrupt inside of so when you give the error message it’s going to give you a quy string where it is going to say there is a corruption or an error happening from a certain database uh so it’s going to have a qu that says something something from a certain database which in my case was from the mySQL database which is the most common one to get this corruption in so if you were to go down click the mySQL database over here in the side you’re going to see all the tables from in here uh in my case it did actually tell me me inside the error message that it was from inside the database table but if you’re a little bit doubt about where the croping is you can scroll down to the bottom here and go down to where you can check all and then with selected you’re going to say you want to check table and when you do that it is going to check and give you you know some status thing now in my case just checking the tables here automatically fixed the error for me which I actually thought I was going to show you how to actually fix the error when I started this video here because I did not go in and repaired it yet uh but just checking the table gave me a couple of error messages it said that my MySQL DB here there was some sort of Errors inside of it it was corrupt uh it gave me red warning messages and I basically just went back again to PHP my admin from here and that fixed the errors for me uh but if that doesn’t work for you then you want to go down and just take note that it was the MySQL do DB table go back inside the mySQL database and then you want to make sure you select the DB table that is over here then you’re going to scroll down to the bottom and with selected you’re going to say repair table and when you do that it is going to try and repair it and when you do that it should also fix the error message for you so after you repaired the table that is broken uh you can go back inside PHP my admin and then you can click on user accounts and then everything should be fixed so you can go in here and and actually um you know change your username and password so that is how I can solve it in my case it solved it just by me checking the table I didn’t even have to repair it in order to to fix fix this issue here but if checking it doesn’t work then choose repair and basically that should work for you so with that said I hope you enjoyed this lesson lesson fix I guess this is kind of well I did show you how to change the username password so this could be considered a lesson so um thank you for watching and I’ll see you guys next time [Music] so in the last episode we learned how to connect to a database directly from inside a website and in this episode we’re going to learn how to insert data directly from inside our website so we don’t have to go inside the database and start typing SQL code in order to do that uh so we’re going to do everything from inside our website here yes I did cut my hair uh it is quite a bit shorter for health reasons so it is a little bit different it wasn’t my choice but it is what it is I do want to start out by pointing out a little bit about what exactly we’re going to be doing when we connect to our database and insert data into our database since there is a couple of ways you can do it uh we did talk about us using PDO in the last episode which is what we’re going to stick to in this video here so we’re not going to use mysqli or MySQL which is outdated uh we will be continuing to use PDO to do this and we’re also going to be using something called prepared statements and that is something that is very important for you to do uh you can insert data into a database without using prepared statements but that is not secure so I don’t think it’s a good idea to teach you how to do it without using prepared statements since there’s never a reason for you to do so uh so we will be using prepared statements in order to securely insert data into a database and just to talk a bit about what exactly prepared statements are and what exactly they’re supposed to do uh let’s say we have a website like this where we have a signup form where you can go ahead and type in your username your password your email and if you use a were to go inside your website here and go inside one of these puts it is actually possible to type code directly inside these inputs here so just like we talked about cross site scripting in a previous episode like you had to sanitize your data and validate it to make sure that people couldn’t inject JavaScript code into your website it is also possible to go in and write SQL code so if you were to write SQL code directly inside this input and the user submits it then they can actually destroy your database because maybe they decide to write a SQL query that can go in just delete the database or something so to prevent the user from being able to write SQL code directly inside an input like we have here uh we need to use prepared statements now the way a prepared statement work is basically we send in the query that we write so the SQL code and we send that to the database first and then afterwards we bind data submitted by the user and then send that to the database afterwards so because we separate the query from the data that the user submits to us we can do them separate ly and not have SQL code have an impact on the query that we write inside our PHP code because they’re separated so using prepared statements is a very good idea so having talked a bit about that let’s actually get started on creating an actual PHP script that can actually insert data into our website so going back inside our editor here you’ll notice that I do have one thing that you do not have from the previous episode uh so in the last episode we did create this database Handler together uh where we can just go in and grab this PDO variable in order to connect to our database but inside my index page I do actually have a form that I created which is the one you just saw inside the browser uh this is just basic HTML form you should know HTML by now so this shouldn’t be anything new to you uh this is just a basic form where I go in and say I want to submit this data to a PHP file which is going to be inside by includes folder called form handler. in.php we did talk about the naming convention that I use here with Inc so if you watched the last episode I did explain that in that episode and I am using a post method since we need to submit data and when we submit data it is more secure to use a post method and that is the method you’re going to be using most of the time when it comes to submitting user data when you want to grab data from a database you use a get method most of the time and then you can see I have a couple of inputs down here I have one for the username I have one for the password and I do also have one for the email address now I do want to point something something out here which is that we do have an attribute inside each of these form inputs which is called name uh we did talk about this in a previous episode I we talked about submitting data using a form uh this name attribute is the name that we’re going to be grabbing inside this file up here when we send the data to the other page so it is very important that you have a name attribute and you remember what they are or you can just go back and and look at your form um so you know exactly what you need to grab in order to grab the data so having talked about this uh let’s go ahead and start creating this form handler. in.php file since that is what we need in order to actually you know run this data submitted by the user so we can actually insert it inside our database I do also want to point out to you before we continue that this is the data that is fitting into the table that we created together in the uh table episode so as you can remember we did actually go inside our database here and we created two tables we created a comment and a user table and inside the users table we do have an ID username password email and created ad now we did set it up so that ID and created ad is automatically created for us so we don’t need to submit any sort of data for that uh but we do need to submit data for username password and email which just so happens to be the three inputs that I included inside my form so now that we know this let’s actually go and create our form handler. in. phsp file so I’m going to go inside my includes folder over here right click say I want to create a new file I’m going to call it for form handler. in.php and having created this one we can now start creating a script that actually goes in and submits this data to our database so the first thing we’re going to be doing is we’re going to start up our PHP tags we’re not going to close them though which we talked about in the previous episode since this is a pure phsp file that is just going to run a script and then that’s it we don’t need to have a closing tag because it can actually cause issues which we don’t want to happen the first thing we’re going to do is to actually run a check to see if the User submitted the data and entered this page the correct way because it is actually possible to go inside our website here and go inside the URL and then directly say I want to go inside my includes folder forward slash and then form Handler uh. in.php and then you can see I actually enter this script that we just created and entering this page here in the way that we just did just by typing into the URL is not a good thing uh so we do need to make should we check if the user actually submitted this form in order to access that page because otherwise we don’t want them to access it so going inside our code I’m going to go in and create a if statement I’m just basically going to check for a super Global so in this case we’re checking for a dollar signore server and then I want to set brackets and go inside and say I’m looking for a request method requestor method and check if it’s equal to a post method so if the user actually submitted a form using a post method which we did actually do cuz we just did it right here and enter this page using that method there if not then I want to create an lse statement and basically say that I want to send the user back to the front page because you know they’re not supposed to be here and we can do that using something called a header function so basically create a header function and say we want to add a location colon and then you add in the link that you want to send them to so in this case here we’re inside a includes folder so in order to get to our index page we have to go back One Directory so we say do do forward slash and then we say index. PHP so basically now if the user tries to access this page without actually submitting the form so if we were to go inside the URL here and say I want to go inside my includes folder and access this page you can see oh okay now I got sent back to the front page so everything is working perfectly so now what we want to do is we want to go inside the actual if condition and say okay so if we did actually access this page legitimately then I want to actually grab the user data so I’m going to create a variable called username and I’m going to set this one equal to a dollar signore post since we sent this data using a post method and inside of here I’m going to reference to the name attribute that we actually submitted inside uh the form so in this case here we call the username or at least I did I don’t know what you called it but if you followed my tutorial you did call a username and then I’m going to cover this down two more times and the second one is going to be PWD for password and the third one is going to be email and just like so we now grab the data and you may point something out here because hey Daniel you forgot something you didn’t use the HTML special characters function in order to sanitize the data why didn’t you do that uh this is actually something we have to do when we want to actually output data inside the browser so when you’re not outputting data into the browser it is not dangerous at least as it is right now to not sanitize the data so anytime you have to Output data into the browser and actually spit it out so if we to go down here and actually uh do something like this here so if I go down a couple of lines and say I want to Echo out the username then I would need to sanitize this because I’m now outputting data into the browser so I would need to go in and actually wrap this in HTML special characters otherwise this is not going to work and it’s going to be unsecure but because right now we’re just submitting data into a database and not outputting it inside the browser uh we’re not going to be sanitizing anything just quite yet you can of course do it if you want to and sanitize the data like we did in the last couple of episodes and just you know submit the data into the database being sanitized uh but it is best practice not to do so unless you actually try to Output data into the browser and the reason for that is that we are converting this to HTML special characters so in some cases you know we want to use data from inside a database uh we don’t necessarily want to have it in HTML special characters and use it inside our code for example if we’re not planning to actually output it inside the browser so do be aware that there are some cases where you don’t want to have HTML special characters translated data inside your database so in some cases you don’t want to have it the next thing I’m going to do here is I’m going to run a TR cats block which we talked about in the last episode basically we’re just trying to run a blocker code and if it fails then we want to catch an exception so we’re just going to go down here and say if there is some sort of error happening then I do want to go in and say I want to grab a PDO exception and I’m going to create a variable e as a placeholder that I can refer to and then inside of here if something happens that goes wrong when I actually try to insert this data into the website then I do want to you know output a error method so I’m going to die which is a function we have inside PHP that is just basically going to terminate this entire script and stop it from running and it’s going to Output a error message so going in here we can actually say we want to write a custom error message in this case here I could say something like Cory failed so I’m going to say Cory failed colon space and then I can concatenate the error message so I’m going to point to the exception and then get method on up method message get message it is a method but it is called get message so it is the same thing um the next thing I’m going to do is I’m going to go inside this try block that we have up here and I’m actually going to grab my connection to our database because we have that inside our db. in.php file to do that I’m going to use something called require require uncore once and this is basically going to say that we want to link to a file that we have somewhere so I’m going to grab a PHP file for example and just say we want to link it inside the script here so when I go in and say I want to link to a db. in.php file I’m just basically linking to this file that we have up here do keep in mind that because I’m inside the includes folder right now and typing this script here uh we don’t need to go inside another directory or something if this dbh the link the PHP was inside another directory you would of course need to go back out of the directory and go inside the correct directory and doing this here is basically the same thing and just going in and saying oh okay I’m just going to include all this code and just paste it in here like this is the exact same thing so we’re just basically linking to another file which means that we have access to all the code inside that file uh after this point here and I do also want to point out because I don’t think we talked about this yet we do have require uncore once we do also have require if I can spell that correctly there we go we do also have something called include so we can say include and we can also say include underscore ones all of these basically do the same thing but with slight variations so include for example we’ll go in and say oh okay so we’re going to include this file just like we did up here but if we can’t find the file then it’s going to give you a small warning saying oh I can’t find the file include underscore once it’s going to do the same thing but it’s also going to check if the file has already been included earlier inside the script and if it has then it’s going to throw you a warning and when it comes to require and require underscore once they do the same thing as include and include underscore ones except instead of just throwing a warning it is going to actually run a error so going to have a fatal error saying oh okay we can’t find this file so stop everything from running or it’s going to say oh you already included this file once so stop everything from running uh so these two slight variations of each other with you know different exceptions in this case here we’re just going to go and use require uncore once because we don’t want to run the connection if we already have the connection included somewhere else so what I’m going to do now is I’m going to write a variable called query because I now want to actually create a query that I can send inside the database to insert data so I’m going to set this one equal to a string which is going to be our SQL quy string that we’re going to submit and I’m going to run a insert statement and you may recognize this one because we did learn how to do this inside our database episode this is the exact same thing so the SQL code is basically insert into and then we’re going to choose a table so in this case it’s users and I also want to make sure that we include our column names so in this case if we have username we do also have some something called a PWD and then we have email then I want to include the values so I’m going to say values and then parentheses and I’m just going to go and wrap my code here to make sure that it doesn’t disappear off screen so it goes down to next line instead and then I’m going to go inside and give it the actual values now we could do this here and just say we want to copy the variable and just paste it in and say comma space and then password paste it in and then the email and paste it in and this would actually be okay uh do keep in mind to close off with the semicolon at the end here because this is a SQL statement which means that you do need to end off the SQL statement with a semicolon just like we did inside the database episode so it may look a little bit weird that we have a semicolon here and also one here but do keep in mind this is the SQL and this is the PHP but like I said earlier we’re not supposed to insert user data directly inside our query otherwise they can do something called SQL injection and destroy our data base so doing it like this is not really seen as a good practice now there is two ways we can use a prepared statement either you can use something called name parameters or you can not use name parameters I will show you how to do both ways and we’re just going to do one of them at a time so using not name parameters what you basically just do is you replace these different user data with question marks so you say question mark question mark and question mark and these are going to act as placeholders so we later on can actually go in and insert this data or bind the user data to this query after we submitted the query so going down to next line I’m going to create an actual statement which is a prepared statement that I can actually prepare to query this query inside the database so what I’ll do here is create a variable called stmt for statement then I’m going to set it equal to our database connection which is variable PDO which we have access to now because we actually required this file up here and then I’ll point to a method called prepare parenthesis semicolon and then inside this prepare statement I’m going to submit my query so basically now I’m submitting the quy to the database so it gets run into the database and then afterwards I can actually go and say okay but now I’m going to give you the data that the User submitted so I’m going to reference to the statement we just created so statement and I’ll go ahead and point to another method called execute so parenthesis and semicolon and inside this method here I’m just basically going to submit the user data and I’m going to do that using a array so I’m going to add a pair of brackets and then I’m going to go in and just submit these data one by one so we’re going to say username then we’re going to say password and then we’re going to say email so doing this here is going to actually submit the data from the user and actually sign them up inside the website uh but before we test this out let’s actually go ahead and just finish off the script here uh cuz there’s a couple more things that we need to have in in order for this to actually be kind of proper properly done the first thing we’re going to do is manually close the statement and also the connection to our database it’s not something you have to do because this is actually going to happen automatically uh but it is considered best practice to do so manually to free up resources as early on as you can uh so going down here what I’ll do is I’ll refer to my uh database connection so that is variable PDO and I’m going to set it equal to null then I’m going to go ahead and go in and say I want to grab my statement and I’m going to set it equal to null and I just want to point out here there’s a couple of ways you can do this there’s also methods for closing off a connection or a statement um but I’m just going to refer them to null which is the same thing as just saying okay so just you know not set them equal to anything and free up those resources and the last thing I’m going to do is I’m going to write a die method just like we did below here when you know some sort of error message happens then we want everything to stop running I do also want to point out here that you can use dive or you can use something called exit and people do argue a lot about you know whether or not it doesn’t matter which one you’re using the general rule of thumb is that if you’re just closing off a script that doesn’t have any sort of connection running then just use exit but if you’re running something that has a connection inside of it then use die and of course we do also need to make sure we send the user back to the front page after they signed up inside our website so I do want to go down here and copy this header function and then paste it in right above the die statement so we send the user back to the front page and then kill off this script here so this is everything that we need in order to get this working so I could actually go inside my website here and go in and say I want to sign up John uh do you know just to give him some sort of you know username uh password is going to be one 12 three and then I can call his email John gmail.com just to give him something if I were to sign him up inside the website you can see we get back to our front page if I go inside the database and refresh it you can now see that we have another person signed up inside our website so as you can see our script is working perfectly I do want to point something out here though which is something that I know some people might point out uh why is my user id 10 on this person here it’s just basically because I inserted some users before this tutorial here so the the ID is going to change a little bit compared to yours so having done this we now did this using non-name parameters but what about name parameters inside our code uh so if we were to go back into inside the form Handler I do recommend using name parameters because it actually allow for us to know inside this query here which data is supposed to be inside where when it comes to using non-name parameters like we did here I do also want to point out that the order in which you insert the data down here inside the execute has to be the same order as inside the columns up here so these have to match up with each other but when we use name parameters this is not the case because I can actually go in and say instead of question mark I’m going to write a colon and then then I can give it some kind of name so I can say something like username uh I can also say the second one is going to be colon PWD then I can say the third one is going to be colon and then email and in this sort of way instead of question marks I’m now giving them actual names so after preparing my query here I can go below and I can actually go ahead and bind my user data to these different name parameters up here and I can do that by referring to my statement so I’m going to say statement and then I’m going to point to a method called bind param which stands for parameters then I can go in here and say that I want to have two pieces of information I want to first of all have the actual name parameter so the first one is going to be the username going to insert that one and then the second one is going to be the actual user data so in this case our username variable up here so if we were to paste that in we now have a name parameter bound to a actual data submitted by the user so I’m going to copy this down two more times and I’m just simply going to change these so password then I’m going to change to email and then I want to make sure I delete the array that we have inside the execute down here because now we don’t need it anymore because we actually B them up here instead so doing it like this we now use name parameters instead of notame parameters so what I can do is I can go inside our website here and test this out one more time so I can say Jane do in this case here so we can say pass 1 2 3 4 then I can say Jan gmail.com and then I can sign up go inside the database refresh it and then you can see we have Jane do instead and this is basically how we can go in and actually submit data using our PHP code from a website instead of going directly inside a database and manually coring the database in there so this is how we can insert data uh I hope you enjoyed this episode and the next one we’re going to talk about how to actually update and delete data and then after that one we’re going to talk about how to select data and show it inside our website so hope you enjoyed and I’ll see you guys in the next video [Music] so in the last episode we learned how to insert data into our database directly from inside our website and this episode we’re going to talk about how to update and delete data from inside our database directly from inside our website now as you can see I did change things a little bit from the last episode inside my index page I did actually include a second form and I did also change a couple of things inside the original form up here uh so just to quickly go over what exactly I changed I did go in and change the title so now it says change account I did also include a title for the second form down here so it says the leete account and I went in and changed the action of the first one so went inside the update form and said I wanted to send all the user data to a user update page that we haven’t created yet but we’re going to in just a second and inside the delete form down here I just went in and said I wanted to send the data to a user delete. in the PHP file and I did also delete the email input from inside this form and that is basically all I did here and just to point it out here I do also have the form handler. in the PHP found in the last episode since we basically just need to copy paste everything so just to show it I still have it in here so we have the code here uh for people who have not followed the last episode you can just kind of copy paste what I have in here um and just use this code when it comes to that next part so what I’m going to do is I’m going to go inside my include folder and create these files here so I’m going to create a user update. in phsp so I’m going to right click on includes and say I want to include a new file and just basically paste in the name of that file then I’m also going to be creating one for the delete user or user delete. in.php so I’m going to copy the name here go inside includes right click and create a new file so the first thing we’re going to do is of course talk about how to update a user inside our website so what I’ll do is I’ll go inside my user update and paste in the code from my form Handler so going inside my form Handler I’m just going to copy everything go inside user update and just paste everything in and all you need to do here is essentially just go in and say you want to change the query down there just slightly so it actually matches up with a update statement instead of a insert statement so it’s quite simple to just go in and run a update statement instead of a instant statement uh from the last episode so I’m just going to text wrap everything here so we can see everything on screen and we’re just basically going to change the insert statement into a update statement so we’re going to say we want to to go in here and update and I want to update my users table and I want to set some certain values I can just basically delete everything that we have here I want to set the username equal to something new which in this case is going to be a placeholder uh because we did talk about prepared statements in the last episode so we are going to create a placeholder called username and then afterwards here we’re going to say what else needs to be changed so in this case I do also have a password column that needs to be set equal to the password submitted by the user so again we’re going to say single quotes and inside of here we’re going to refer to a placeholder called PWD and then we’re going to add in the last one which is going to be the email so we have a email column that is going to be set equal to again single quotes and then we insert a placeholder called email after doing this we need to tell it where inside the table we want to change this because if I were to just submit this then all the users inside my table are going to be uh updated to what the User submitted just now so I want to go in and say where and in this case here we’re just going to go and say we want to grab a user that has a certain ID as something specific so I’m just going to say ID is equal go inside my database here and just pick a random user that I have so I can say Bess is going to have his username changed uh so we’re going to say his ID is two I’m going to go inside and again if you have another user with a different ID just go ahead and choose some sort of user from your database in my case I’m going to choose B that has an ID as2 um of course this is very unorthodox because typically inside a real website you would have a user that is locked into the website currently who’s trying to change his user information and because of that you would actually have his user ID grabbed and stored inside a session variable so we could actually just grab the user ID and say oh okay so that’s the user we need to change this information of uh so right now we’re just manually going inside the database and grabbing a random user and typing it in here cuz you know we’re not we don’t really have a real login system right now so this is just for practice okay so we’re just grabbing a random user here uh so doing this now basically what you would just do is you would go down you would bind the parameters in the same sense you know you would actually prepare the statement find the parameters execute the statement and that is actually pretty much it I just realized that we don’t actually need to have these single quotes up here so let’s actually go and delete those so we’re not going to have single quotes around the user data uh in inside this quy up here so I’m just going to go and delete them like so and with that Sav we’re going to go back inside the website and actually test this out so I’m going to actually have something written in so in my case here I’m going to change bass’s username to Bassa is cool and I’m going to have 1 2 3 4 as the password and then I’m going to change the email to bis cool at gmail.com and if I were to click update here you can now see that we get sent back to the front page if I go inside the database refresh it and now everything is has been updated so Bessa now has a username as B is cool 1234 and B iscool gmail.com so everything gets updated in here and looks correct but now what if I want to delete a user from inside my website how can we do that because that is also very simple to do uh so if I were to go inside my user delete and copy paste everything from inside my form Handler so we’re just going to copy everything again insert that inside user delete now we basically do the same thing we just go inside the Corey up here and say okay so we’re not running a insert statement we are actually running a delete statement and this one is going to be even easier because we have less data to handle so we can just go inside and say okay so in this case here the user did actually not submit a email so I’m just going to go and delete that one for now then I’m going to go down and change my insert into statement into a delete statement so I’m going to say I’m going to delete from users and I’m going to say where a certain username and password is equal to what the user submitted I could also use an ID just like we did with update cuz that would be the typical thing when you have an actual login system where the user is logged in so you have their ID and you can do that uh but for now let’s just go Ahad and use the username and password since we did submit it here so why not just use it so I’m going to say where the username column is going to be equal to a placeholder which is username and then I’m going to say and where the password column is going to be equal to the password that the User submitted and do also make sure you close off with a semicolon here and then what I’m going to do is I’m going to go down delete the last bind parameter because we don’t need that since we don’t have a email and this is basically all we have to do then we can actually go inside and delete the user so if I were to save this go inside my website here and refresh everything and say I now want to go in and delete the user that has a certain username and password so in this case I could say let’s go and delete Danny that has a password as 123 so we would to go inside my website here go down inside delete account I can say Danny that has a password as 1 2 3 delete his account then we’ll back again so if we were to go inside and refresh you can now see that Danny has been deleted and this is basically how you can go in and update and delete data from inside a database directly from inside a website so it’s quite simple to do uh in the next video we’re going to talk about how to actually select data and show it inside our website so that is going to be very fun to do so I hope you enjoyed this lesson and I’ll see you guys in the next video [Music] so now that we learn how to insert update and delete things from inside our database directly from inside the website now we have to talk about how to actually select things from inside a database and show it inside our website so to begin with let’s go and take a look at what exactly I have inside my text editor so you can actually you know copy what I have here since we need a little bit of HTML in order to get this working inside my index page here I do have a very basic form at the bottom I’m just going to go and text wrap so you can actually see what’s going on here I just have a very basic form that I styled a little bit inside my website so it actually looks somewhat nice to look at uh which is why I have this class up here you can style this in however way that you want to The Styling has nothing to do with the phsp so it’s still going to work even if it doesn’t look very good inside your website I just did it to sort of like have something nice for this tutorial here but as you’ll notice inside the form here I actually included a action that does take us inside a include file now we’re actually just going directly to a regular page inside the website here called search.php and we’re still using a post method since we’re trying to submit data in this case here inside the form you can see I have a very basic label just to have a label for this input down here that goes in and just simply takes a input from the user where we can search for something inside the database now in this case here because I wanted to create something just a a very simple little thing um I wanted to go inside database and search for any sort of comments made by a certain user where we type in the username of that user so if that user made a comment then I want all the comments to show inside that page that I’m linking to called search. PHP so technically we’re creating a small search system here for a website so if you want to have a search system inside a website you can build a very basic one in this sort of sense here uh so you actually learn how to build something that you could potentially use inside a small project if you wanted to so so essentially it’s just a basic form where we go in and we type in a search word and then we just search for something so uh the only important thing here to really note is where exactly we’re taking this data to so in this case the action the method as well as the input down here where we actually assigned a name called user search so with this basic form here let’s actually go and start creating a search. PHP file so going inside our project folder I’m just going to go and create a new file not inside the includes folder but just inside where I have my index page uh so I’m just going to create a search. PHP and then I’m just going to go ahead and create it now inside this file here I’m just going to copy paste everything from inside my index page since this is just a regular page inside our website so I’m just going to copy everything and paste it in and what I’m going to do here is I’m just going to go and remove my form since I don’t think we need to have it inside this page here and what we have to do now is just basically go in and write some PHP code that queries our database and searches for certain uh data in inside the database using the search term that we wanted to search for and show it inside this page here so what we’re going to do is we’re going to go to the very top of this file and I’m going to go above my doc type and I’m just going to start off my PHP tags now in this case here we do actually have HTML like this is an actual page inside our website so we do need to include a closing tag around the PHP code here so we can’t just not have it like we did in the previous episodes um so what we’re going to do is we’re actually going to go in inside our previous file just any of the previous files we created in one of the last episodes um so we did create a form Handler we created a user delete and a user update it doesn’t really matter which one you want to to go into I’m just going to use the form handler. ink the PHP file here and as you can see we have a bunch of PHP code that we did create in the last couple of episodes I’m just going to text wrap everything here so we can actually see everything if you want to copy what I have here you can just kind of see what I have and I can just very slowly here scroll past it and you can pause the video uh but this is something that we did create in the past couple of episodes um so what I’ll do is I’ll copy everything except for the beginning PHP tags since we don’t need that cuz I did open and close phsp tags inside the top of my search. phsp file here so I’m going to paste everything inside at the top of the site here and inside of this PHP code we now just need to make the alterations that we need in order to match it up with the form from inside the index page so if I were to go inside my index page again you can see that we did have this form that I talked about extensively a minute ago um and we just basically have one field which is called user search so I’m going to copy that name go back inside my search. phsp and say I want to grab a user search and I’m just going to delete the other two uh post methods so I’m just going to change the name here as well to user search so we do actually have a variable that makes sense with the naming and with this we can now just go down and change the Quarry since we need to make sure this is actually a select statement we have learned how to do that in a previous database episode uh so what I’m going to do is I’m just going to go and delete everything again we’re just going to make sure we text wrap here so I can select everything and I’m just going to delete the entire query that we have in here what I’ll do is I’ll create a select statement so I’ll say select uh everything so select all from a comments which is our comment table inside the database where a username is equal to a certain value in this case here it is going to be our user search so I’m just going to write a placeholder called user search and this is basically all we need inside this quy here we’re just selecting all the data from inside that row including you know the the actual comment the user made when the comment was made which user made that particular comment uh what user ID do they have what just selecting everything from inside that row inside our comment table just to show exactly what comments table I’m talking talking about here if I were to go back inside my database so inside my database here we do still have the same tables that we did create together some episodes ago I’m going to go and Link those episodes in the description if there’s someone following this tutorial here thinking oh well I don’t have this so I’ll go ahe and Link that in the description so you can actually keep up with what we’re doing here but basically we just created two tables we created one called users and one called comments and inside my comments table I actually went in and included a couple extra comments uh which we did learn how to do so you can go back again watch that episode and create some more comments in there I just basically went in and manually typed those in inside the SQL tab up here I created a couple of comments for cing a couple for bess’s cool and Jane do because those are some of the users that I have inside my website so if I were to go inside my users table you can see that I have some of these users in here so I do have quite a few comments now uh that I can go inside my website and I can actually pull these out depending on the search term that we put inside our query so going back in you can see we’re selecting everything from comments where a username is equal to what we submitted inside the website so going down below here uh first of all we need to actually send in the query so we’re doing that with this prepare statement here again it is important to mention here that we are going back to grab our database file which is inside a includes folder with the connection to our database again this is something we learned in a previous episode which I’ll also link below if you need to have that one but we do need to go in and actually change the path because like I said we’re not inside the includes folder anymore so inside the require above here where we actually grab this database connection we do need to go inside the path and say we want to go inside and includes folder and then grab the dbh that in the PHP file otherwise it’s going to say oh we can’t find this file cuz it’s not linked correctly right so with this done I’m going to go back down and the place where we actually bind the data that we submitted from the actual form uh we do need to change these as well since we don’t have three pieces of data data submitted we just have one and we do also need to change the names of these down here so I’m going to copy my user Search and say that is what I have as a placeholder and I’m also going to grab the data called user search and put that in as my variable and then I’m simply going to execute the statement here and at this point here things are going to be a little bit different than the previous couple of episodes so we just simply went and made changes to the database or submitted data to it uh because when it comes to actually grabbing data we need to actually grab the data and set equal to an array inside our code so we can actually do something with this data so we need to have the data put inside our PHP code so to speak so what I’m going to do is I’m going to go below my execute and I’m just going to go and create a variable called results and I want to say that I’m going to take my statement that we sent in and execute it and I want to point to a method called Fetch all because in this case I want to fetch all the results from the database there is also something just called Fetch for just one piece of data but in this case here we are potentially grabbing many comment from the database so this is going to be uh many results in our case so fetch all is the one that we’re going to be using parenthesis and semicolon and inside the parentheses we need to tell it how do we want to fetch this data now we did talk about arrays in the past because we did have a array episode in one of the previous ones and inside that episode we talked about indexed arrays and we also talked about associative arrays and when it comes to grabbing data from inside a database it is is much easier to handle the data as an associative array because essentially each array data is going to have a name associated to it so we can refer to the name in order to get the data and in this case when we grab database data the column names inside the database are going to be the name for each data so doing this as an associative array is a very easy and fun way for us to grab data from inside a database in order to know exactly what we’re referring to so what I’ll do is I’ll go inside and say I am using a PDO connection and I want to fetch this as an associative array so we’re going to say fetch ESO which is for associative so doing this here we can actually go down and actually delete this header statement because we’re not trying to get back to an index page or anything here uh we’re just basically going to say that we don’t you know we we have the data so now everything is done we don’t need to do anything else here I do think it’s also important to point out here that we do still have this header function down here since that if the user tries to access this search page without actually having searched I don’t see a reason for them to access this search the PHP page um so if they were to try and access this file without having actually searched for something there’s really no need for them to be in here so again just to summarize all the data that we just grabbed using the query from the database are now stored inside variable results as an array and each data can be referred to using a associative name so in this case if I want to grab um let’s go back inside our database here if I want to grab this particular comment down here from a certain user so let’s say I search for crossing and now I’m grabbing all the comments from Crossing if I want to grab this is a comment on a website then I just need to refer to commentor text because that is the column name and this is going to be what is assigned to our associative array as the name for this piece of data I think I may be confusing you more just by explaining this over and over again so let’s actually just go Ahad and do it CU that’s a lot easier for you to see um so what I’ll do is I’ll go down inside my body page and actually do something with this data because we grab the data at the top of our file so we can just go further down to file and just refer to variable results because it’s available inside this file here cuz we just created it uh so you can just go aead and go further down to file go in and say that maybe we want to create an H3 where we can say this is our search results go down below here open up the PHP tags so we’re going to open up and we’re also going to go and close it here and then we’re just simply going to do a simple if statement where we go in and check if we actually have some sort of data pulled down from the database because in some cases if I try to write in a username that doesn’t exist inside the database of course we’re not going to have any sort of comment from any sort of users because the user doesn’t exist uh the same thing goes if a user just didn’t make a comment then they’re not going to have any comments so we do need to have something default to show the user if there’s no comments to actually grab from inside the database the way we can do that is just by creating a simple if statement where I go in and say if right now we don’t have anything in inside this array that we just created so variable results so if Mt which is a built-in function inside PHP I can check for if variable results is currently empty so if there’s no data inside this array then we don’t have any sort of data and if that is the case then I just simply want to go in and I want to Echo out a piece of HTML which in this case here I did actually di a little bit inside my style sheet so I’m just going to go and create a div here I’m going to open it up I’m just going to copy this Echo two more times and I’m going to go and close the div down here and then in between here we’re not going to have a div we’re going to have a paragraph and we’re also going to go and close off this paragraph here to make sure that we close it and in between the paragraph I’m just going to say there were no results or something you know you can come up with any sort of message you want here there’s a little bit of freedom in these tutorials so you can just sort of say whatever you think makes sense in this case here so there were no res results um so if we don’t have any sort of results from our database quy then we just Echo this out uh if not and we did actually get a result I’m just going to go and copy this go down below write a else statement then I’m going to actually Echo out uh the user or at least all the comments from the user inside this page here now the way that is going to work is currently we don’t know if we have one comment from this user or we have many comments from the user you know we do have an array here um but we don’t know how many results that might be inside this array either way we do need to make sure that all the comments that we grabbed inside our associative array do get looped out inside the page because we need to Loop out the result so to speak I can actually do something just to show exactly what is going on here so you have a a small idea about what is going on if I were to do a Vore dump and actually go in and refer to my variable results uh before we do that though there is one more thing we need to do inside our little PHP code at the top here cuz I actually forgot about that this D method here we do want to delete otherwise we are basically terminating our entire script and stopping everything from running even if we do grab something from inside the database so do make sure you don’t have that die method up there otherwise it’s not going to work for you uh so we’re going to go back down and then we’re just going to make sure we save everything and going inside our website I can now go in and actually search for a user so let’s go and search for crossing or whatever you might have inside your database there if we were to do that you can see oh okay so we get a search result because we didn’t get our uh small message that we just created we did actually get a v dump here and basically you go in and see that we have a bunch of data we have a lot of data in here and this is actually what we call a multi-dimensional array because we have an array that has a bunch of arrays inside of them so each row is going to be a separate array inside this array that we just created and you can actually see at the very top up here does actually say that currently we have a array that has three other arrays inside of them so that is basically what this says up here uh which means that we have three different rows of data with commments from this particular user again this might confuse you even more than actually help you with anything but let’s go and go back inside our website here and instead of doing a v dump let’s actually go ahead and run a for each Loop because what we can do using a for each Loop which I do think we talked about before is how to Loop out an array so using this can actually Loop out all the multi-dimensional arrays inside this for each loop from inside variable results so what I can do is I can go in and say okay so we do have variable results here so that is the array that I want to grab and I want to have a placeholder that I can refer to inside this Loop here so we’re going to say as variable row so I’m going to grab my variable row and just copy it go inside the loop and then I’m going to say for each Loop when we Loop out one row of data from inside this array with all our data inside of it I want to make sure to Echo out a variable row and then I’m going to refer to a associative name so in this case I’m going to say I want to grab and we can actually go back inside our database here uh I want to grab the username and also the common text and the created ad so I can actually go back inside my code and say I want to grab the username then I’m going to copy this down to the next line and say I want to grab the commentor text and then I want to copy it down and say also want to grab the created uncore at and at this point here we can actually go ahead and test this out inside the browser but we do have two other things that we need to do before we can actually do so the first thing is we need to make sure it actually looks pretty so we need to style it in some sort of way uh the second thing we need to do is to make sure we don’t have any cross-side scripting going on because two episodes ago when we talked about inserting data from your website into the database we talked about the fact that you have to sanitize the data when you actually output data inside the browser to make sure there’s no cross-site scripting happening uh so we do need to make sure that since we’re outputting data right now we’re actually echoing it out inside the browser then we go in here and actually run a HTML special character function to make sure that we don’t have any sort of cross-side scripting happening uh so if a user were to Output some sort of JavaScript inside our database and now we’re echoing it out inside our code here we could actually have a potential issue here we actually allowed the user to Output JavaScript inside our website which is not a good thing uh so we need to make sure we use this HTML special characters whenever you want to Output data from a database inside a website or just any point when you want to have any sort of user data uh spit out inside your website so making sure to wrap everything in HTML special characters is very important or any of the other uh filter uncore input method or something like that that we have inside PHP in order to properly sanitize data now in this case here we’re just outputting string so HDML special characters is the proper one to use here so at this point here I would like to actually test this out inside the browser even though it doesn’t look that pretty yet when we actually output it so if I were to go inside my browser and type in a username that we don’t have inside the database you know because I want to test out the error message then you can see we get there were no results which is good cuz that is what we’re supposed to have but if I were to type in a us that I know we have inside the database for example cing and actually run a search then you can see we get get his entire all the comments that he made inside the database so you can see we get uh one comment up here then we get a second comment over here then we have the third comment over here but as you can see we have three different comments from this particular user here so we do have his comments uh showing inside the website that just not styled yet so that’s the next step we have to do so going back inside the code I will continue styling things here so I do need to make sure because I did actually do that inside my notes here that I wrap everything inside a section tag because my notes say I did that and I did style it you know depending on this so I have to do it otherwise my styling is not going to work so I’m just going to make sure I paste this in and then I’m going to go inside my for each Loop down here and I’m going to Echo out a div because I want to wrap this inside a div just like we did up here I’m also going to close the div right after and then I want to wrap my data inside an 84 and two paragraph tags so we actually have something you know style when it comes to the text as well uh so I’m going to say I want to Echo and I want to Echo out a84 and I’m also going to go ahead and concatenate here to make sure we concatenate everything then I want to go after and say I want to close off my H4 so I’m going to close off the H4 here I’m just going to scroll to the side here so you can see everything and then I’m going to copy paste and do a paragraph for the other two down here so I’m just going to change this to a paragraph paragraph and the same thing when it comes to closing off at the end here but changing it to a paragraph of course like so and I just want to point out here that there is another way to do this when it comes to HTML inside PHP which is not to have it echoed out inside a string uh but actually close off the PHP TX up here for example then you open it up down here if you want to do that and then you can actually just write HTML in between here and then Echo out the data in between the HTML by opening and closing the PHP tags so that is another way to do so but in this cases since we don’t have that much h going on I think it’s just easier to Echo it out so doing this here and going back inside the website just to test how everything looks like I’m going to go back here refresh and again if I were to search for someone that does not exist inside the database for example this random person here then you can see that we have there were no results and it’s been styled because I wrapped everything appropriately and if we were to go back and search for crossing now you can see that we get three different search results and because I styled it and made sure that everything was below each other and wrapped it inside a dip container to have a a white background color everything now looks a lot cleaner and we can also go back and search for another user so if I were to search for besser is cool which is another user that I have inside my database then you can see we get his comments inside his comment table and just like that you created a very basic search system using PHP so that is something you could actually use inside a website if you wanted to um so learning how to do this is a very good and important step to learning how to Output things using PHP when it comes to data uh in the next episode we’re going to talk about something called a session because a session is a way for us to store data inside our uh well inside our session inside our browser uh so we can actually store data from page to page without having to send it using a post or a get method so using sessions is something we use constantly when it comes to PHP in order for the website to remember things as you’re using the web page so this is something that is very cool to learn about so we’re going to talk about that in the next episode but for now this is how you select data and output it so I hope you enjoyed and I’ll see you guys in the next [Music] one today you’re going to learn about something called a session inside your website and a session is very important to know about since it is the way that your website remembers information across all the pages inside your website now we have talked about a post and the get method where we can send data from one page to another page but this is more for when it comes to submitting data from the user or uh submitting a lot of data inside the website that isn’t really permanent but it’s more temporary information that just needs to be sent from one page to another but when it comes to a session this is information that we want to store permanently inside the website or at least for a longer period of time inside the website uh when a user is currently using your website let’s say for example we want to create something like a login system in order to create a login system the website has to remember okay is this person logged in or is he not logged into the website and when you go inside your login form and you type in a username and a password and then you click login then if you typed everything in correctly and you were to log into the website then the website has to remember across all the pages that oh this user is logged in so everything needs to change inside the website so we use sessions in order to store information that has to be remembered per permanently inside our website in order for for example a loin system to work there’s one thing I want to show you before we get started on any sort of code inside our documents here which is to go inside my browser and open up this website that I just created which is completely empty there’s nothing going on in here uh you can actually see that I have nothing in here literally there’s no you know code inside the body tags I do have a second page by the way which is called example. PHP but that one is completely identical there’s nothing inside of it and this is just to kind of demonstrate that it remembers information across pages so I just created a second page called example. PHP uh so you can go and create that one as well if you want to but I do want to show you that if I were to go inside the browser here go inside my developer tool which is F12 on the keyboard or if you were to go inside the website and right click and then click inspect then you also open up that way uh if you were to go in here you can see we have this very typical developer tool that we’ve seen so many times before we have the HTML you have the CSS you can also see the JavaScript uh but if you were to go up here where it says storage and this tab may be in a different place if you’re using a different browser I’m using Firefox in this case here if I were to go in here you can see that we have something called cookies and inside of here you can see we do actually have a cookie that is related to Local Host because I right now have a PHP my admin turned on inside my browser so it it does have a cookie for PHP my admin now a cookie is information that is stored directly inside your browser locally inside your browser not inside the server and whenever you start a session inside a website you actually generate something called a session ID cookie which is going to pop up in here as soon as we start a session because now we’re telling the server that okay so there’s this user here who is trying to remember things about the website and the information is going to be stored inside our server so in order for the server to figure out which person you are CU there might be many different users accessing the same website uh the server has to place a session ID cookie on your browser to figure out which user you are and which session variables you need to have assigned to you so if I were to go back inside my editor I’m going to go to the top of my index page and I’m just going to go and open up and close my PHP tag so we can actually type some PHP in here and I’m just simply going to start a session by typing session underscore start parenthesis and semicolon and with this simple method here we now started up a session inside this page inside our website so right now we don’t have a session going on inside ex example so we could actually go in and copy paste this information paste it over here just to make sure we have a session started on both pages and then with this we’re now going to go back inside the website refresh it and when I refresh it and open up my editor you’ll notice that inside my cookies we now have a second session ID cookie which is called PHP session ID and this is actually the session that we just started inside our web page using the session uncore start so now the server knows okay so there’s a session going on inside this web page which means we need to put a session ID cookie inside the browser so we know which session data belongs to that particular user because like I said many users might be using this particular website here so for the server to pinpoint which user is which we need to have the session ID cookie if I were to go inside and delete this cuz you can actually do that and say delete uh PHP session ID Local Host then the server no longer knows who who you are and all the session data is probably going to get lost so uh this is not something you have to do because the browser actually purchased this so if we to close down the browser it’s going to delete all these session cookies so you don’t need to worry about you know them sticking in here because we do actually have some session security when it comes to sessions as well where people can go inside and hijack your session or something and that is something we need to talk about at some point uh for now we’re just going to talk about the basics of sessions and starting them up and how to delete them again and so on so with this here just know that as soon as you close down the browser this particular session that you have right here or this session ID cookie will get deleted and there is a reason for that that is because the timeout for this particular cookie here is set to a negative so therefore the next time you close down the browser uh you can always you know extend this session ID if you wanted to manually but let’s go back inside our editor and talk a bit about session data or session variables that we can create using the session super Global because we did actually talk about this one many episodes ago but we didn’t really talk about it extensively uh but we do actually have something called a session super Global so if I were to say dollar signore session brackets and then I can go inside the brackets say double quotes and give this some kind of name so I could for example call this one username so if I were to type username and set it equal to something I can for example say Crossing then currently I have a session data or session variable able that is equal to a string called Crossing which means that this information is going to get remembered on your server on any page that has this session uncore start started at the top of the page so what I’m going to do here is I’m going to say that I want to start this session and I want to go down inside my buddy tag and I want to start my PHP tags because I want to demonstrate something for you so we’re going to say we want to start the PHP tags and close it again and I just simply want to Echo out my session variable that I just created up here and pasted in down here so you can actually see that we can actually see this session variable now inside our page but I do also want to take this Echo go inside my example page and show you that we can actually see it inside this page as well so even though inside the second page we didn’t actually set the session variable at the top here we should still remember it so if we were to go inside my browser and say I want to refresh my index page you can see oh we get causing up here if I were to zoom in you can actually see it uh if I were to go to to my other page called example.php then you can see we still get Crossing because we echoed it out on the second page as well without even declaring it at the top because our session remembers oh okay so inside the index page he set this session variable so now we can Echo it out so in this sort of way we can store information inside our session that gets remembered across all the pages inside our website as long as we have this session start declared at the top of the page now I do want to demonstrate something else here here as well which is that if you have a bunch of data inside your session variables how can you unset them and delete the data again because that is also something you need to know about so if I were to type a method called onset and actually take my session variable so if we were to go down here and say we have a session variable called username then I want to paste it in here and unset it so if we were to do this go inside my website you can now see that oh okay so undefined array key username used cuz we don’t know what this variable is because now it’s been onset let’s actually go and go back to the front page because I actually think that makes a little bit more sense since we did set it here uh so if we were to go back inside the front page and set the session variable and then unset it again right afterwards go inside the website go back to the index page you can see it still gives us the same error message because oh okay so we we onset this session variable but let’s go back inside the code and say that what if I have more than just one session variable that I want to delete what if I want to purge all of them uh what I can actually do is I can run a method called session underscore unset parenthesis semicolon and if we were to do this one then it’s going to purge all the session data inside our session so we can’t see it inside our website so would to refresh the browser you can still see that we get this you know we can’t find the session variable so everything has been deleted still so this one here is for deleting all the session data and this one is for for deleting one session data and now we do also need to know how to stop a session from running inside our page so let’s say I have a session started here I can also go down to next line and say I want to run a session underscore destroy and if I were to run this one then we’re actually stopping the session from running again so let’s actually go ahead and go up here and delete this onset so right now we start a session we set a session variable and then I destroy the session inside the same page but now there’s a small thing that I want to show you here because if I were to save this and actually let’s go ahead and go back inside our example page here and just make sure that we only have our session uncore start at the top and also to make sure that we have the echo down here inside the body tag so with that in mind if we were to go inside the browser here this causing variable when I refresh the browser should not be available right CU it just said to purchase all the data so if I were to refresh the page oh okay so cosing is still in here so the reason we can see it in here is because because even though the session destroyed does actually Purge all the session data it doesn’t get purched inside the same page so it doesn’t happen or the the effect is not going to happen until I actually go to another page so if I were to go back inside my uh example page here then you can actually see that when I access this page that oh okay so this username session variable is not available because we did purchase on the previous page using session unor destroy so again if I were to go back inside my my my code editor here session unor destroy is going to purge all the data but you can’t see the effect until you access another page often you’ll also see people use the session uncore unset in combination so whenever you want to completely destroy a session and unset all the session variables this is how you would do it so now that we talked about our session uncore start and how to create a session variable and also how to unset data so I can actually write it in here again there we go so we talked about how to unset data inside our session very Ables and we also talked about how to destroy a session and again just to point it out here sessions are used in order to you know remember information across Pages for example login system or if you have a shopping cart inside your website and the user goes in and puts things in the cart then the website has to remember across all the pages what you put inside the shopping cart so there’s many different things you could use a session for to remember things and of course we do also have some security when it comes to sessions which I think we’ll talk about maybe in the next episode or maybe a little bit further ahead in this course here so having talked about this I hope you enjoyed and I’ll see you guys in the next [Music] video so in the last video we talked a bit about sessions and how we could create a session inside our website and in this video we’re going to talk a bit about session security which is going to be quite a it’s going to be one of the more complex episodes we having discour up until now but I will try to take it and explain it as simple as I can and just show you exactly what we need to do when it comes to basic security using sessions so the first thing we have to talk about is what exactly are we trying to defend ourselves from because we have talked about prepared statements and sanitation you know to defend against SQL injection and cross-site scripting um but what are we defending ourselves against in this video here what exactly I would try to prevent using session security uh something that is very important when it comes to having anything to do with the session is to make sure that other users on other computers are not able to steal our session data so whenever we create a session inside the website like we did in the last episode and we start creating these session variables that are going to store data inside the server then we want to make sure that the ID stored inside the server is only going to point to us who is using our computer so the session ID cookie inside our browser should only match up with the ID inside the server for for us so if another user out there were to hijack our session ID then they can actually go in and steal our session data which is not a good thing so we need to make sure we have some session ID security uh whenever it comes to handling sessions inside the website just to mention a couple of ways that people could potentially hijack your session could for example be using something called session ID sniffing where a user can go in and intercept unsecure trafficking going on inside your website and they basically hijack your session ID and then impersonate you as the user inside their computer and this is why it’s important that whenever you have a session running inside a website that you don’t have a HTTP connection but a https connection another method people use is also something called session ID prediction where basically they try to guess what kind of ID you have inside your computer so if you haven’t generated a strong session ID they can try to predict and guess whatever session ID you might have so it is important that we also go inside our code and generate a much stronger session ID to prevent this sort of thing from happening and then we also have another very popular one which is something called session fixation which is a type of attack where the user basically tries to make you use the cookie that they have on their computer so for example by sending you a malicious link to a website that they actually included the session ID for their computer in so in a situation where you might click on a link that they sent you through for example an email then you can actually go into a website using the session ID that they created so basically you’re impersonating them inside the website but you don’t know it and then of course we do also have cross-site scripting attacks where people try to inject JavaScript into your website to for example steal your cookies so there’s many different ways that people can hijack a session inside a website and we have to make sure we try to prevent as much as possible and just to mention some additional security things that you just kind of need to know whenever you have anything to do with sessions inside the website uh whenever you have anything to do with sessions it’s very important that you always validate and sanitize user data because that is always important to do so whenever the user submit some sort of data make sure you don’t have it be unsecure as you use it inside your website another thing you want to do is also make sure you don’t store any sort of sensitive information inside a session variable for example a user’s address or phone number or email or something like that uh because if a hack were to gain access to all the session data then all of a sudden they have access to very personal information which is not a good thing you do also want to make sure that whenever you have any sort of session data that you don’t need to use anymore that you go inside and you actually delete it because if you have old session data stored in there that isn’t usable anymore then there’s no need for a potential hacker to gain access to information that could have been prevented because you don’t need it anymore inside your website and with that said it is also kind of a thing whenever we have session security going on that the more security you have inside your website the more you’re going to inconvenience the user that is using your website because that kind of goes hand inand and you have to find a balance between how much do you want to inconvenience the user versus how secure should your website be if you want to have the maximum amount of security inside your website you should force the user to log in every single time they use your website but that would also mean that the user has to log in every time they use your website so all of a sudden we have this again security or convenience because you also don’t want to have users being scared away of your website so that’s just a very important thing for me to to just sort of point out there I do also want to mention here that some of the stuff that we’re going to be doing in this video will also be changeable inside the php.ini file inside your server so something that we haven’t talked about yet is that if I were to go inside my exam installation then I do actually have a PHP folder and inside that folder we have something called a php.ini file and this file has a bunch of settings inside of it that you can change in order to do some of the things that we can do in this video here but I do want to do everything using code in this video here just to make sure that everyone who is following can just sort of follow and just write the code down and you know that you don’t get scared cuz oh no we have to go inside a weird file inside our phsp installation how will I do this inside a live server and that kind of thing so I’m just going to go and show you how to do everything using code in this video here now the first thing we’re going to talk about is one of the settings that you do have inside the inii file that you can change using Code which is something called session use only cookies and this is something that goes in and make sure that any session ID can only passed using session cookies and not for example through the URL inside your website because that is one of the ways that people they do session fixation where they go in and try to make you click on a malicious link and they take you to a website and then they might have a session ID stor inside the URL of that link so this is one of the ways we can prevent that from happening so the way we can do that is go inside our website and what I’ll actually do here is I will not start creating code at the top of my index file I’ll actually create a new file inside this this uh root folder here so I’ll create a new file and I’m going to call this one config.php and this is going to be a file that I’m going to link at the top of my index page here so I’m going to say require uncore once and then I want to link to my config do PHP and any other page inside the website where we want to include this code we can just go ahead and require the file just like we did here so what I can do is I can go inside the config file and the first thing I’m going to do is open up my PHP Tags I’m not going to close it again though because this is going to be a pure PHP file and what I’m going to do is I’m going to set something called ini iore set parentheses and inside this one we can set a parameter which is going to be our session uh do use underscore only underscore cookies and if I were to set this one I can also set a value which is going to be one and this is going to mean that we’re setting this one equal to true because one is true and zero is false so in this sorder of way we can go inside that inii file and actually change some of the parameters using Code inside our phsp code uh so what I’m going to do here is I’m going to duplicate this because we do actually have a second one that we also want to make sure we set in here this one is going to be called use strict mode so we’re going to say session. use strict uncore mode and what this setting is going to do is a couple of things or quite a few things actually one of them being that we make sure that the website only uses a session ID that has actually been created by our server inside the website it is also going to go in and make our session ID a little bit more complex when they actually get created uh so in that sort of sense it makes it a little bit more difficult for people to go in and try to guess your session ID inside your cookie so there’s a couple of really good things that this particular one does and this is actually a mandatory thing to have whenever you have anything to do with sessions inside your website so you want to make sure that this line of code is inside your website anytime you have anything to do with sessions the next thing we’re going to do is we’re going to create some cookie parameters inside our code so whenever we start a session inside our website and the cookie is created want to make sure that we do have some parameters set for that particular cookie to make it more secure so what I can do is I can create a function here called session unor setor cookie underscore params and if we want to create this one we can go inside of here we can actually create a bunch of different parameters so I could potentially create a array here and inside this array we can define a bunch of parameters and the first one we’re going to set is something called lifetime now a lifetime is basically going to go inside your cookie and say that okay so after a certain amount of time has passed inside the website we want to make sure this cookie is going to get destroyed and the reason this is important is because we don’t want to have the same cookie running inside the website for too long because if that were to happen it is going to increase the chances of someone catching that cookie and stealing it and if they have that cookie we do also want to make sure that after a certain amount of time they can’t use that cookie anymore so what we want to do in here is we want to set a parameter called Lifetime and I want to point to a new value which is going to be1 1800 which is going to be 30 minutes in seconds so in this sort of way we now created a new lifetime for our cookies so they actually get destroyed after a certain amount of time uh the next thing we’re going to do is we’re going to set something called a domain so whenever we want to go inside and create a cookie it will only work inside a particular domain so in this case here we’re going to point to Local Host because right now we have exam running which is a local host server so this is going to be the domain that we have to point to of course if you had to put this online and you had another website you would call it something like example uh.com for example if it has to work for that particular website like I said in our case here we’re using Local Host the next thing we’re going to create is going to be something called a path and this is going to to point to a sort of path inside your domain here so in our case here we could actually say that it just has to work inside any path inside our website so what I can do is I can say that we want to set it equal to forward slash which is going to be any sort of subdirectory or sub Pages inside our website that is currently running uh inside this particular domain up here our next parameter is going to be something called secure which is going to make sure that we only run this cookie inside acq website so only using a http s connection and not a HTTP connection so I’m going to set this one equal to true then I’m going to say I want to add another one which is going to be H TTP only so we’re going to say h TTP only and we want to set this one equal to true as well and this basically just goes inside our website and restricts any sort of script access from our client which means us inside the browser so now that we have these we can actually go below here and actually start our session so we’re going to say session start just like we learned in the previous episode so all this information up here has to be set before you start the session that is very important to do uh because these has to be set before we actually have a session created but now there’s a couple more things we have to do whenever we create a session and I did actually mentioned one of them which was we need to make sure that the standard session ID created by this particular function here is going to get even better because right now when we create a session ID using session unor start it is going to be a very basic not really a secure session ID so we want to regenerate it into a stronger version which we do actually have a PHP function that can do uh so we have a function which is called session uncore regenerate ID and this particular one if you were to set this one to True is going to just generate a new ID for this particular current session ID that we have so it’s not going to create a new one it is actually going to regenerate the current session ID we have and make make it into a better version however even though we did use this function in here underneath the session story in order to regenerate the ID it is also a very good idea to do this automatically after a certain amount of time has passed inside the website so if a attacker were to gain access to a session ID then after a certain amount of time that session ID no longer works for them so we want to make sure we regenerate this periodically inside our website and I do actually have a blocker code to do that so I’m just going to go and copy paste it in and then I’ll go ah and explain what exactly it does so underneath my session undor start I went ahead and created this blocker code here I’m just going to talk a bit about what exactly it does uh so inside this block of code I have a if and an else statement and inside the if statement I’m basically just checking if we right now have a session variable created using the iset function here inside my session called lastore regeneration if I do not have it created it means that this is the first time I’m running this page inside the website and it’s the first time I’m actually starting up my session and if that’s the case I do actually want to make my session ID Stronger by regenerating it and I do also want to make sure actually create this session variable that we’re checking for up here so the first time we’re running this if statement it will actually go in and create this session variable so anytime other than this in the future it is going to run this El statement instead I did also give this one a value which is going to be equal to the current time that we have inside the server here and this is going to be important for us to actually check if a certain amount of of time has actually passed since we last time actually regenerated our session ID so the current time for us actually regenerating the session ID is going to be equal to our session called last regeneration and inside this L statement I created a variable called interval which is going to be set equal to the time that I want to pass until we have to regenerate our session ID again uh so we want to have this in seconds which means that in 1 minute we have 60 seconds and then I’m basically just multiplying it with the number of minutes that I want to pass until we actually regenerate this session ID so in this case 30 minutes so if you want this to be 10 minutes then you can write 10 if you want this to be 30 then we’re going to write 30 and then afterwards I went ahead and created a if condition which takes the current time and minuses that with the time inside our session variable which is going to give us a number of seconds and then I check those seconds if they’re greater than or equal to our interval and if it’s more than 30 minutes then I’m going to regenerate our session ID and I’m also going to go and reset my last regeneration session variable to be the current time that I now regenerated the session ID inside my website so we’re basically just regenerating the ID inside our session every 30 minutes that is what this code does and with this said you now know some of the basics when it comes to session security inside your website um I do want to point out here that there is more we could talk about when it comes to session security for example creating a new session ID so not generating a new session ID but actually creating one using for example a function called session unor create ID and then you could take this ID and combine it with your user ID from inside the database whenever you create a login system in order to create a unique ID for a login session so um there’s many different things we could talk about for now I think this is good when it comes to beginning and just sort of starting up with session security and just to mention this again for people did miss it at the beginning we can just take this file here that we just created together and just go inside one of the pages inside our website and when we want to create a session inside one of these Pages we just sort of link to this file and then we have all of this you know session security going on inside those pages I do also want to mention at the end here that if you are a channel member then you do of course also have access to all my personal notes here so if you want to have all my personal notes for for example this Paton here with all the comments inside of them then you do have access to these files if you are a channel member and you can find the link for that in the description so with that said I hope you enjoyed this lesson and I’ll see you guys in the next one [Music] so now we reached the point where we have to talk a bit about security when it comes to inserting data into a database because we have talked about creating data inside a database and selecting data and sessions and that kind of thing but we haven’t talked about hashing yet which is something that is very important whenever you want to insert data that is sensitive in inside a database so right now just to demonstrate something if I were to go inside my database that we have created in the past couple of episodes where we created a users table and a comments table if I were to go inside my users table here you’ll see that right now inside our password column we actually don’t have any sort of security going on in terms of Hing uh so right now if I were to you know break into a database like this one right here I could actually see everything in terms of what exactly these passwords are so we can see this user here has a password of 1 2 3 4 this one has a Denny one 2 3 and 1 2 3 1 2 3 4 um but the thing about inserting sensitive data inside a databas is that we’re not supposed to be able to tell what exactly is in there so in order to create another layer of security we do something called hashing which is going to turn our password into a hashed string which is going to be this very long and confusing letters so we can’t really tell what exactly it’s supposed to be it’s just going to be jerish basically so going back inside my text editor here you can see that I have a bunch of files just going and ignore those for now because these are for a example a little bit later on but for now all I have that you need to worry about is a file called hash password. in.php this is a file that I put inside my includes folder inside my root folder just because this is going to be a file that has pure PHP inside of it and we have talked about why I name my files in this sort of way many times in past episode so you’re more than welcome to go back and and just take a look at that if you want to but the important thing about this episode here is just talking a bit about what exactly hashing is so going inside this file here which is completely empty I’m going to open up my phsp tags and I’m not going to close it off again because this is going to be a pure PHP file and we’re going to start by talking a bit about how we can hash and what exactly hashing is now hashing is whenever we perform a oneway hashing algorithm on a plain piece of text for example a password and then we basically convert it into a fixed length string that you can’t really look at and tell what exactly is this supposed to be so it is going to be something that even if a hacker would gain access to your database data then they still can’t see what the data is supposed to be so depending on what kind of data we’re feeding the hashing algorithm it is going to convert it into a different thing so it is something that is going to be different depending on what exactly you’re going to feed to it and it is also important to mention here that a hasing algorithm is designed to be irreversible and expensive to do um so you can go in and make a hassing algorithm more complex if you want to we do also have something called a salt which is a vocabulary word that you may hear from time to time whenever we talk about hashing essentially a salt is a random string of text that is going to be included inside the data that you provide the hashing algorithm so it’s going to mix the salt together with the text that you provided it and then it’s going to Hash it afterward to create a more unique and even harder to crack hashing algorithm to make it even stronger it is important want to point out that we do have many different hashing algorithms out there and some of them are considered to be outdated whenever it comes to for example password hashing uh you wouldn’t use a shot 256 or md5 Hing algorithm in order to do those uh whenever you insert those into a database so there are you know different ways of hashing things depending on what you’re trying to do when it comes to specifically just general purpose hashing when we’re not talking about a password to be inserted inside a database uh we can for example go inside our code like we have have here and let’s say I have a variable which is going to be whatever the user gave us so let’s say there’s a form and the User submitted something to us uh then I could go inside and say I want to create a value called sensitive data just to have something here and I could set that equal to some kind of value so I could say for example Crossing as my username the next thing we would need to do is create something called a salt and a pepper which sounds really funny but just to kind of show what exactly those are um I can actually go and create a variable here I’m going to call this one salt and then I’m going to set it equal to a random string that we’re going to generate based off some functions that we have inside PHP so what I could do here is I could say we have something called bin to hex parenthesis and then inside this one I’m going to generate a random underscore bytes and then we just basically feed this one how many bytes you want to randomly generate inside this function here so we could for example say 16 and by doing this we’re basically just going in and saying want to generate 16 bytes of data data and then we want to convert it to hexad decimals in order to actually have something that we can actually actively use inside our code so heximal representation as it says inside the notes here um so basically just generating a random string so if we were to write some notes Here we could say Generate random salt next we’re going to go and create something called a pepper so I’m going to create a variable and call this one pepper and I’m going to set this one equal to a random string of characters that I decide what is going to be so so this is not going to be random characters this is going to be a keyword that I’m going to use to fuse together with this hash in here uh so I could for example say a secret pepper string so now we have something called a salt and we have something called a pepper and we can fuse these together in order to make our Hash a bit more secure so what I’m then going to do is I’m going to go below here and I’m going to create a variable called Data to hash and essentially we’re just going in and we’ll combine in these three pieces of data up here so we have the sensitive data that the user gave us inside whatever input we have inside the website uh we do also have a piece of data called a salt and then we also do have our pepper and then basically we just go below here and actually run a hashing function that we have inside PHP called hash so what I can do is I can say we have a variable called hash and I’m going to set this one equal to a hash function and inside this one we’re just going to feed it what kind of hashing algorithm we want to use and then the next piece piece of data is going to be what exactly we’re trying to Hash in here so in this case I could say want to use a shout 256 hashing algorithm and then I want to feed it data to hash and if we were to go inside my website here and actually try and Echo this out we can actually Echo this out after each other just to kind of see the effect of what exactly we’re doing here so if I were to Echo out a break just so we have everything on a new line and actually Echo out the hash that we have here then I’m going to copy this line of code and go right behind where we actually combine all this data here and I’m just going to go ahead and Echo out my salt as well so we can see exactly what is going on in here so if I were to do this and go inside my website go inside my includes folder and say I want to access my hash password. in.php file then you can see we get these two here so the first one up here is going to be the random ass salt that we generated at the beginning of the code and the second one down here is going to be the overall hash from combining our salt with the data from the user and our pepper string and as you can see this doesn’t make any sort of sense so even even though everything is combined inside this hash in here even the readable data that we included such as Crossing and a secret pepper string we can’t see anything about what this is supposed to be and at this point he would actually take the salt and the hash and store that inside either a database or inside a file storage system or someplace that is actually secure where people can’t gain access to it and you would actually go and take this salt and has and use that together with new data the user might submit in order to check if it matches up with the old data they subm it up here so let’s say somewhere else inside the website I want to go in and actually first of all grab the data from inside our database so we have the salt and the has stored in this case here we don’t actually have the salt and has stored inside a database and we would technically have to run a query in order to go inside the database and grab those data uh but for now let’s just go ahead and grab the ones inside the code here since this is more or less a example so let’s say I would grab the all up here and the hash that we have down here I would also need to go ahead and recreate the pepper string inside my code here because that is a unique string that I have created inside my code and then we would of course also need to have the data that the User submitted again so let’s say a User submitted this piece of data once more we’re going to go ahead and put it up here so with all this we would now have to combine everything again just like we did before inside our previous script up here so if we were to grab this lineer code where we combined everything and then I would need to take the salt that we just grab from inside our database and replace it with the salt that we have down here and with all these combined we can now run the has algorithm again just to sort of check if it is the same as the previous one so I’m going to copy this line of code up here and I’m going to paste it in we could also go ahead and rename this variable here to something like verification hash just so we know exactly what kind of hash this is so right now we’re trying to verify that the data submitted up here is the same as the previous data so we’re hashing the new data in order to compare it with the old data that we have inside our database so if I go below here and run a if condition in order to compare the these two pieces of hash data that we have uh so the first one is going to be the stored hash from inside the database so I’m going to copy this one put it inside the if condition and check if it is the same as our verification has down here and if it is then we can actually go inside and say we want to Echo something out so we could say something like the data are the same and then I can create a else statement just to Echo something out in case these are not the same so we could say something like the data are not the same so we just Echo that out inside our L statements just to get an idea about what exactly we’re getting in here so with this saved we can actually go back inside the website and refresh it and what we should get is either the data are the same or the data are not the same in this case here since we have cing here and we also have cing up here then the data should be the same as so going inside the website here if I were to refresh it you can see we get the data are the same because they are the same if we want to go back inside my code here and go up and change the value of the new data that was submitted so let’s say a user is typing something in let’s say cosing two and I were to Hash that and you know do everything in terms of the salting and the pepper we hash it and then we want to check if this data is the same as the previous one up here if we were to go inside the website you can see we get the data are not the same because they are not the same because you know the data submitted by the user is something different and it is important to point out here that we’re not deashing anything inside the code we are actually taking two different hashes and checking if these two strings are the same so if we to go inside and change my sensitive data back to Crossing just to give you a example here let’s go ahead and Echo out not the data are the same but let’s actually go ahead and Echo out our actual values here so I’m just going to go and create a break and then Echo out our stored hash and then I’m going to go below here and add another break just so we can see exactly what is going on and then I’m going to Echo out our verification hash then you can see inside our browser if I were to go inside and refresh it that these two strings are the exact same strings because we has the same data in the same way and then we are comparing the two so basically we are getting a true or false statement when we go inside and actually check for these two data being the same data and this is how you can do General hashing inside your website and it is important to point out here that this is for General hashing when it comes to password hasing for a database whenever a user wants to submit a password when they sign up inside a website then we do actually have a different method for doing so and this is something that is much more simple than what we just did here just to point it out this is much more complex but it is important to mention that a hassin method that looks something like this is good for when you for example want to hide certain sensitive data that isn’t specifically password specific this could for example be a name or a email address or you know financial data or something like that this is what you would for example do if you want to just has something that isn’t a password so now let’s go and talk about about how to generate a h password using phsp so if I were to go inside my code here and just delete everything I’ve just created uh for you it might be a good idea to take notes of these and maybe put that in a document on the side of something so you have these saved uh but what we’re going to do here is we’re going to actually do a hash function that is built directly inside PHP in order to Hash a password now when it comes to hashing a password we have a function called password unor has which is going to go in and actually run a in algorithm and a salt that is going to automatically do all of this for us in order to hash everything uh together to a unreadable format so we don’t have to add a salt manually or do a Pepper or something like that this is going to go in and do much of this automatically so in this case here we might say we have a user that submits some sort of password so we have a variable up here called PWD for password which in general is going to be equal to a post method you know from a form where a user submits something to you but now case here since we’re just doing an example I’m just going to go ahe and write cing because I just want to you know just set it equal to some sort of string in here so what I can do is I can take this password and put it inside my password unor has down here and then I can tell it what kind of hashing method do I want to use in order to Hash this password now in general we have two common hashing methods or hashing algorithms in order to Hash our passwords we have something called password uncore default which looks like this so so if we were to say password uncore default which is going to get automatically updated in the future whenever something new comes out inside PHP so this is something that the developers of PHP will actually come out and update as things change in the future so this is not something you have to worry about when it comes to any sort of changes uh but we do also have something called password bcrypt now password uncore bcrypt is right now actually being used inside password default so this is the one that will be used so does really matter if you’re using this one if you’re using password uncore default uh but just know that in the future if something were to change then the password uncore default can go in and change something uh because something has changed but in general right now whenever it comes to password hashing it is recommended to use BCP so this is the one we’re going to be using here and what you can add in here as another parameter is something called a cost factor which is in general how difficult it’s going to be to uh do this hashing uh algorithm here so if you have a hacker that is trying to Brute Force the way inside website by submitting different passwords again and again inside your input field then this is going to slow that process down and make it much more difficult and take much longer in order to actually try to break your hashing algorithm so this is something that is recommended to do and this is also a point where we have to talk a bit about convenience when it comes to users because the higher this number is going to be the more inconvenient it’s going to be for the user because it’s going to take longer whenever they have to log inside the website the general recommendation here is to use a number between 10 and 12 uh but this has to be submitted as an array otherwise we are going to get a error message so if I were to type 12 in here you can see oh it is expecting a array so if we’re to go above here I can go in and create an array I’m going to call this one options and I’m going to set this one equal to an array and inside of here we’re going to add a parameter called cost and I’m going to point to a value so this could be for example 12 or 10 depending on how you want to strengthen the hashing that you have running here uh so I’m going to write 12 and then I’m going to include my options inside as the3d parameter and then you can see we have this uh function here I do also want to take this hash password and set equal to a variable so we can say hashed password and this would actually be the password that we put inside the database when the user is trying to sign up inside the website so let’s actually go and change that up inside the naming up here so we can say this is the password on sign up and we’re going to change that inside our hash down here as well so this would actually be what we have in inside our database so now the next question is what do we do when want to log into a website because now the user is going back inside the website and they type in the username and the password inside the input fields for the login system and we would actually have to take that password and hash it again and compare it together with the password inside our database so what I would have to do down here is create another variable for the new password the user submit in when they try to log into the website and what I’ll do is I’ll go below here and run a password on _ verify which is going to go in and compare the new password that we submitted when we Tred to log into the website together with the old password that is hased inside the database so if were to take my password here put it inside as parameter number one and then take the password up here which is the hash version not the one that the User submitted on sign up because we don’t actually have that stored inside the database we have the hash version inside the database so I’m going to compare with that one and this would actually go ahead and return as a true or false statement and basically just tell are these two the same so if they are the same it’s going to return as true and if it’s not the same then it’s going to return as false so what I can do is I can run a if condition down here where we basically just go in and say we want to check for this particular function here so I’m just going to delete this line of code and move it inside our condition so if right now they are the same I’m going to Echo out they are the same but if they’re not the same then I’m going to Echo out they are not the same so in this sort of way we can very easily just go in and hash a password and then recover it from inside the database and compare that with the new password submitted when the user tries to lock into your website so if I were to go inside my website here and refresh the browser you can see we get they are the same if I were to go back inside my code and change up the password I used when I tried to log into the website so now it’s the wrong password I can go back inside the website here refresh and then you can see we get they are not the same and you can actually see there is a difference when I click refresh there’s actually this short half a second going on before we actually get the update inside the browser if I were to go inside here and change the cost into something like 30 and go back inside my website here and refresh you can see oh still processing still trying you can see it’s it’s moving up here so you can see it’s it’s thinking right now um so as you can see we are strengthening uh the hassing process so imagine you had a hacker that were trying to Brute Force the way in by typing one password after the other inside the website that you have uh then it’s going to take forever whenever they try to do this if you have a cost Factor inside your hessing algorithm now this is taken quite a long time so I’m just going to go and stop it here uh and just change this back to 12 so now your question might be so taking the signup system that we created in that episode number 22 inside this course here how can we take this and implement this inside our signup system because what I have here is a bunch of other files that I did tell you to ignore at the beginning of this l here these are actually the files that I had for my lesson 22 so we have the form Handler that actually takes the data from our index page when the user tries to sign up then we do also have our database Connection in here and then we have our front page that just basically has a sign up form again if you don’t have all of this you can go back to episode number 22 and just recreate all of this with me but what we can basically do is we can actually go inside our form Handler and just include this hashing in between what we’re doing inside this form Handler here so when I go down to where we actually insert some data I want to make sure that I’m not actually inserting the actual password submitted by the user so as you can see we grabb the password after a post method is being used and we’re just taking that password and directly inserting it inside our database which is not a good thing so what I want to make sure I do right down here before we actually bind the data is to make sure we run a hashing algorithm so going back inside my hash password. in.php I can just simply grab my options and my has password copy that go back inside my form Handler and paste that in so now what I’m going to do is I’m going to take the password from up here which was submitted by the user on sign up and replace that with my password sign up down here and then lastly we just take the has password and use that as our binding parameter down here when we actually want to insert the data inside our database so I’m going to replace my password with my H password down here and that is all we have to do so now if I were to go inside my website here and go back inside my index page refresh everything to make sure everything is good go inside my username say I want to sign up as Danny Crossing and I want to create a password in this case I could just say one two three then I’m going to include a email which is just going to be Crossing at gmail.com which is not a real email but just to have something in here if you were to click sign up and go back inside my database you’ll now notice that I have a new user but something is going to be a little bit different instead of having this very obvious password that I can just see with with my eyes inside the database we now have this hash that is going to be in here instead and that is what you want to do whenever you have any sort of sensitive data that you want to store inside for example a database because now if a hacker were to actually gain access to my database data then they don’t know what this data is so with all this here we now talked about just general hashing we talked about how to Hash a password for database and this is basically all I want to talk about in this video here it was quite extensive it is quite complex compared to previous episodes inside this course here but I hope this is something that makes sense to anyone watching this video here so with that said I hope you enjoyed this video and I’ll see you guys next [Music] time today we’re going to do something a little bit different we are going to implement everything we’ve learned up until now in these past many episodes to build a login system so we will actually have a PHP application that can do something inside a website and I do want to point out this is a very long video and I will have chapters in the description so you can actually skip ahead if you want to but just to point out this is going to be a long video but it’s also going to be very worthwhile so if you do actually go through this video you will learn many things so this is going to be a very very good lesson for you to just sort of write notes for and you know just have next to you as kind of like a cheat sheet for something you want to build in the future it is okay to be confused just rewatch certain parts of the video and make sure to write those notes that I was talking about so you will get to a point watching this video where now you know a lot when it comes to PHP I do also want to point out here that there is a tendency for long videos like this for people to get errors as they are following the video and I just want to point out that 99% of the time when people write hey Daniel I copied your code exactly and I’m getting an error message this code is not working 99% of the time it is because of a typo it is because you don’t have the same databases I do so you know some of the columns inside your code has to be changed when it comes to the names and that kind of thing you misplace the parentheses you know any kind of syntax error is 99% of the time going to be the cause even though you copied my code exactly so I just want to point out here look at the error message inside your website and then pinpoint where that is inside your code because it will tell you the line that the error is on and if you’re just completely in doubt and you don’t know anything about where to find that error inside your code you’re more than welcome to share it inside the comments so people can help you out I do also want to point out that we will learn a lot of new things in this episode here so we will for example learn how to combine our user ID from the database with our session ID to make it better for certain things uh we’re also going to talk about error handling which is when you go inside your code and you actually check for errors before you actually run the code because a lot of times you need to run error handlist in order to figure out if something is wrong this could for example be if the user didn’t fill in all the fields inside the form and then they submitted it so you have to check for that and then say hey you forgot something and then you go back to the form to tell them to fill in everything uh speaking about that we’re also going to learn how to write error messages inside our form so if someone doesn’t fill in all the inputs then we’re going to write an error message saying hey you forgot to fill in all the input or if the User submitted a username when they tried to sign up inside the website that already exists inside the database because you can’t have the same usernames then we also want to create an error message so we have to learn how to create error messages and to check for these things using error handlers inside our code to make this into a you know somewhat decent application I do also want to point out that we’re going to do something a little bit weird in this episode here because we’re actually going to organize our code in a MVC pattern which is something that usually don’t talk about until you start talking about object-oriented phsp which is when you start talking about classes and objects and that kind of thing uh but just to kind of get you into the mindset of a MVC pattern early on before we actually get into classes and objects it is a very good idea I think to just kind of touch upon it and teach you the concepts behind it so you’re not completely confused once we actually have to start talking about classes and that kind of thing so learning about the NBC pattern is just a really good idea and I think this is a good opportunity to just sort of get you into the mindset of how to think in an MVC pattern the reason that the MVC pattern is a really good thing for you to learn about is because it is going to allow you to organize your code in a much more scalable way so that once you build much bigger PHP applications then it is something that is going to be much more organized and better to look at because it’s not going to get all you know jumped together and because right now we’re creating what is called procedural PHP which means that when we have someplace inside our website where we need something specific to happen using PHP then we create the PHP code in that place which means that if I have another page inside my website somewhere where I need the same PHP code then I have to duplicate the code put it inside that page too and then you know all of a sudden we have this duplicates of code that is unorganized and you know there’s no need for it to be duplicated so an MVC pattern is a very good thing to learn about okay um so talking about that let’s actually go ahead and get started on this login system we will talk about all the different security things that we have talked about throughout these lessons here of course there is some security that we haven’t talked about but since we haven’t talked about it it’s not going to get implemented in this video here it’s a way for me to say that this is a good start for a login system then you can always work on it later on when you start learning new things so right now inside my website you can see that I have a index page I do have a main.css and a reset. CSS these are just my Styles sheets so if I want my website to look a certain way then I can can Implement a style sheet to do that because this is basic HTML and CSS and this is something you should also know by now uh so we shouldn’t talk about sty teet because it’s not PHP so with that I do want to show how my website actually looks like right now so if we were to go inside my page here you can actually see that we have a login system and we also have a signup system so we do have two forms that basically can go in you can type your username and password to log in or you can type in your username password email to sign up inside the website so just something very basic in here and of course the way I created that is simply by going inside my index page and I went down inside my body tag created our login form and I created a signup form and these are just to point it out very similar to each other so one of them has an input that is called username and it has a placeholder as username so the person knows what to type in here and we do also have a password input and the same thing goes for the the signup form down here we do also have a username we have a password but we also have a email so we actually use an email to sign up inside the website uh for the database I do have a file in here that you don’t need to have called db. SQL this is basically just my SQL code in order to create a table inside my database called users so right now we have an ID username password email and a Tim stamp for when the user signed up inside the website again if you followed my previous lessons you should right now have a database with this exact users table so this is not something you should need need to put inside your database but just to show you if I were to go inside my database here I do actually have my first database in here it is the name of my database and I do have a users table go ahead and ignore the comments table since that has nothing to do with this episode here uh but inside my users table you can see that I have a couple of different users already uh these are from previous lessons inside this course so there’s no need for me to have them in here uh so let’s just go and delete these users we can delete them one at a time by clicking delete or you can take them off here and say delete and now we don’t have any users left inside my users table the first thing we’re going to create inside our login system is going to be a connection to our database since we need to connect to our database in order to actually do something with the database because when it comes to a login system uh we need to be able to store the users information somewhere so the username the password the email that has to be stored inside a database so we need to connect to it so I’m going to go inside my root folder I’m going to create a new folder I’m going to call this one includes and I’m just simply going to put every single pure PHP file inside my includes folder so any sort of PHP that isn’t a direct page inside my website but just has some PHP code that needs to run a script inside of it that is going to go inside this folder here uh so our database file is one of those files so we’re going to go ahead and right click on includes we’re going to go in here and say want to create a new file and I’m going to call this one db. in.php for database Handler inside this file we’re going to open up our PHP code and I want to make sure that we go in and first of all create all our parameters we’re going to create four variables and each of these variables are going to be equal to a string of characters in our case here we’re going to have a host name which is going to be a local host if you’re using XA which I am right now you’re also going to have the database name which is the name of your database which might be different from mine but in my case I call mine my first database and then you need to have a database username and a database password now if you don’t know what your database username password are then you can of course just go inside your database and change these I do have a tutorial on that inside this course here which is a bit further back but we do need to have these parameters here in order to actually quy our database so the next thing we need to have is a TR catch Block in order to actually try to connect to our database so we’re going to run a TR catch block which means that we right now try a bunch of code and if it fails then we want to throw an exception down here now inside the catch I’m going to say that I want to throw a PDO exception so we’re going to say PDO exception you make sure you spell that correctly and then inside of here we’re going to create a placeholder called variable e for exception now we’re just going to go and create the error Miss straight away so we’re going to create a die function which basically just terminates this script if something goes wrong in here and we can actually generate a error message inside this die function so we can for example say connection failed connection space failed colon space and then we can add a message so we can say we want to add our variable e and we want to point to a method called get message and in this simple way here we now have a way for our error message to get displayed if we get some sort of connection error so what I can do now is I can go inside this try block here and I can actually try and connect to my database or at least create a variable that is going to contain a object which is going to be a connection object to our database so what we can do is we can create a variable call this on PDO I’m going to set it equal to a new PDO object and again we haven’t talked about object oriented PHP yet which is okay since that is a little bit further ahead in this course here uh but this is going to be a new PDO object based off a a connection class that is going to allow for us to connect to the database so going inside this PDO object here we can actually give it some parameters so the first one is going to be uh what kind of database are we trying to connect to so in this case it is going to be a MySQL and again just to point it out here some people do keep pointing out even though I keep mentioning it that MySQL databases are not outdated but PHP MySQL functions are outdated okay there’s a big difference between the two uh so MySQL databases are not outdated okay so moving on we’re going to go and tell it what kind of host we’re trying to connect to here and we do actually have our host up here so I can just go and copy my host and paste it down here now something we haven’t talked about that many times in this course here is the fact that when we do this we usually concatenate so you know we do something like this like we just it down here uh but it is actually possible to take a variable and just copy it directly inside the string and because PHP have you know nowadays know how to just look at this and say oh that’s a variable then we can actually do that so afterwards I’m going to add a semicolon and then we’re going to go and add our database name which is also going to be equal to our variable up here which is called database name and then after here we can actually go ahead and say we want to add a comma since now we have to add the last parameter which is going to be the username and also the password so we can say username comma and password so can actually paste that in down here now things are disappearing a bit off screen here so I’m just going to go and wrap everything so you can see everything inside my code I’m going to add one last thing below here which is going to be a couple of attributes for our p connection so we’re going to say we have this PDO connection I’m going to point to a method which is called set attributes and then I’m going to go ahead and add some parameters inside this method here now the first parameters is going to be to set our PDO error mode to exception so it actually works properly inside our catch block down here so inside the parameter I’m going to say PD colon colon a tore e r r m o d e for error mode and then I’m going to set a second parameter which is going to be that we want to set it to an exception so we can say PDO e r r m o d eore score exception and this is basically all we need in order to have a connection going so with this file we can now move on to the next file which is going to be our config session. in the PHP this is a file that is going to allow for us to configure our session so we have different things that can help us make it more secure to run a session inside the website so a hacker for example if they were to gain access to a session ID then we update the ID every 30 minutes to make sure that you know people have less time to do any sort of damage it with our session ID so there’s many different things we can do in here to make our session a little bit more secure uh the first thing I want to do here is of course make a new file in St my includes folder which is going to be a config undor session. in.php so inside this file we’re going to set a couple of things and I’m just going to go and copy paste for my notes here since that is a little bit easier at least for me since I’m teaching this and I have a lot that we need to go through um what I’m going to do is I’m going to open up my PHP Tex first and then I’m going to include two lines of code which is going to go inside our inii file inside our PHP folder inside our server and change a couple of inii settings so right now we are setting our use only cookies and I use strict mode to true in order to make this a lot more secure when it comes to handling sessions this is something that is mandatory so anytime you do anything with sessions make sure that you either change these inside the PHP speed. ini file or you change these using Code like we just did here now the second thing we’re going to do is change our cookie parameters in order to make this even more secure inside our website so I’m just going to paste in a blocker code here essentially this is a function called session unor setor cookie uncore parameters or params which is going to accept an array inside of the parameters that allow for me to change things like the lifetime of the cookie we can change the domain this cookie should work on any sort of subpaths inside this domain here that it should work on in this case I’m saying it should work on any sort of path inside this domain here uh we can also set secure to True which is going to allow for us to only use this cookie inside a secure connection so an https connection and we’re also setting HTTP only to true to avoid the user being able to change anything about this cookie using a script for example JavaScript inside our website so there’s a couple of things we need to set using this function here in order to make things a lot more secure when it comes to a session again we did talk about this a few episodes ago so if you missed that one you’re wouldn’t welcome to go back a couple of episodes to our session security video um we do need to add in one more thing which is going to be a uh if condition that is going to run a update every 30 minutes which will go in and take our cookie and regenerate the ID for that cookie and this is something that helps us prevent attackers from Gaining access to the cookie and then using that cookie for more than at least you know maximum 30 minutes so what I’m going to do here is I’m going to create a if condition which is going to go in and check if a certain session variable exists inside the website because if it does not exist then we need to create it in order to check when we last updated our session cookie so what we can do here is I can go inside this if condition and let’s go and wait with the um condition parameter for now because that just confuses people uh so inside the actual brackets here what I’ll do is I’ll add in a couple lines of code the first one is going to be where we actually go go in and grabb our session and run a function called session uncore regenerate ID which goes in and regenerates our session ID to make it even better and more secure because the default one that you get from doing the session _ start is not very good uh so doing this here is going to allow for us to regenerate it and right now it may be asking what session because we didn’t actually start any session yet uh so let’s go and do that right now let’s go and put in a session unor start right Above This condition here so right now we started a session after we set all these parameters of course and then we went in and said we wanted to regenerate our session ID to make it better underneath here I’m going to say I want to create a session variable so I’m going to say we have a dollar signore session going to call the session variable something like last regeneration so lastore regeneration and I’m going to set this one equal to something called time now time is a function we have inside PHP that just simply gets the current time inside the server uh so by setting last regeneration equal to the current time I can now check when is the last time we actually uh went in and updated our session ID because that is going to be the time stamp inside this last regeneration session so what I can do now is I can go inside my if condition and say I want to run a is set function that goes in and checks if this particular session exists inside my website because if it does not exist it means that we have not yet went in and improved our session ID so that is something we have to do uh but right now we’re checking if it does exist and we have to check for the opposite so in order to do that we write a exclamation mark in front of the is set function in order to do the opposite so basically we’re checking if it does not exist inside the website so now what we’re going to do is we’re going to go and create a else condition which is going to go in and update our session ID after 30 minutes so what we need to do here here is we need to go in and say we have a variable called interval and this interval is going to be equal to the time in seconds that I want to pass until we have to update our session ID again so this case here there is 30 seconds to a minute so we need to say 30 times the number of minutes that we want to actually pass so in this case it’s going to be 30 minutes uh so what I’m going to do below is I’m going to run another if condition because now we want to actually check if the current time minus the time inside our last regeneration is greater than or equal to 30 minutes because if it is then we need to regenerate the ID again as so go inside this condition here we can say if our time which is that function we did before as well minus our session called last regeneration is greater than or equal to our interval that we set up here and if it is then we want to regenerate the ID and we also want to reset our L generation equal to the current time that we now again updated our session ID so I’m just going to copy these two lines of code here and paste them below but now there’s an easier way to do things cuz now we start getting into functions because we are duplicating code so these two lines to code here are also down here so you know instead of having to duplicate the code every single time uh we could go below here and create a function and I’m going to call this function something like regenerate session ID so now we have a regenerate session ID function and I can take these two lines of code paste them inside the function and simply run the function inside where we need to have these two lines of code so we can just paste that in there semicolon copy this line of code and paste it inside up here instead as well so now we are running the same code but we’re not duplicating code in multiple places so going back inside my index page we’re now going to talk about these forms down here because now we have to start creating the signup form and the login form and you will notice that inside my sign up form and inside my login form I do have a action that points to a file that we do not have created yet so we need to create these two files inside our includes folder so what I’m going to do is I’m going to right click on my includes folder create a new file and I’m going to call it login. in.php and I’m also going to create a file called sign up. in.php so now we have the file that is going to actually run the code for signing us up and logging us in once we actually do get to those parts inside the website here for now let’s go and close down to login. in.php file since we don’t want to talk about the login system until we actually created the signup system because the signup system comes first right we need to sign up first and then log in the user uh so let’s go and start with that inside this page the first thing we’re going to do is we’re going to open up our PHP tag so we can actually run some PHP code in here and then we’re going to run a if condition to check if the user actually accessed this page legitimately so did they actually submit the form in order to get to this page or did they go inside the URL and try to access this page in a weird way by you know trying to access it directly inside the URL uh because that is something we can do so what I want to do is I want to go inside this condition here and I want to say I want to run a dollar signore server super Global and I want to check for a request method which is going to be a post method so we’re going to say requestor method and I want to check if it’s equal to a post method if the request method is equal to a post method it means that the user did get here correctly if not then they did not get here correctly and we have to send them back to the front page so that is something we have to do now so if they did not get in here correctly then we run a else condition and then we just basically run a header function in order to send them back to the front page so a header function looks something like this uh we just basically go in and tell it where to send a user so that would be a location which is going to be back One Directory because right now we’re inside a includes folder with this file here so we go back one directory and then access the index.php file in order to send them back to the front page I’m also going to go and add a die function underneath here to make sure that this script stops from running so if there’s any other code in here that might accidentally get run uh then we do actually stop the script from running so that is a good thing to include in here so the next thing we have to do inside our if condition here is to actually grab the data from the users so inside my uh sign up form I did actually have a post method that is called username because that is one of the inputs that was submitted and I’m going to set this one equal to a variable which is called username so again just in case people are confused if I were to go back inside my signup form you can see that down here I do have an input and this one is called username so that is why I’m referencing to a username post method because that is the method we chose for this form here so going back inside the sign up page I’m going to duplicate this down two more times since I have two more inputs one is called PWD for password and the other one is going to be called email we’re not going to do any sort of Sanitation here by the way because I do know that some people may be pointing out that we have HTML special characters or you know some of the other filter underscore inputs that we can use in order to check for certain things but it is best practices to not do this until you actually output something inside the website or you try to store information inside your website uh so we’re not going to do HTML special characters until actually output something underneath here I’m going to go and run a TR catch block just like we did inside our connection file and we’re basically going to do the same thing here so we can actually go inside our database connection and say we want to you know actually run a exception and a error message of something would have failed so we can go back in here and say we want to replace that uh so basically we want to run a PDO exception and we want to have a variable e which is the exception and then we can run a error message to say something like query fail instead of saying connection failed so the first thing we’re going to do in here is I want to require underscore once my database file because we do actually need to have the database Connection in order to actually connect to the database I’m going to link to my db. in.php file we do not need to say it’s inside a includes folder because we’re already inside the includes folder so there’s no need for that um and one thing I want to point out here is we will need to require some more files because I did talk about something called the NBC model which is something that we should talk about just a little bit this early on because I want to get you into the habit of thinking in a MVC pattern which is going to be very beneficial for you a little bit later on in this course here and in any other courses you might be taking inside YouTube uh because the MC pattern is something you just need to know about so before we continue here let’s actually go and create our files for the MBC pattern so I talked about the Mec model being a way for us to structure our codes which is going to allow for us to make is a lot more scalable uh a lot more organized inside our code and in order to do that we’re going to create a lot of functions that are going to have different purposes so for example we’re going to have one file that is going to have functions inside of them that are used to connect to a database and actually cor the database then we’re going to create another file which is going to be used in order to actually show data inside our website so whenever we have any sort of PHP code that is going to show something inside the website that is going to go inside the second file and the third file is going to be for actually handling any sort of input or information that needs to get run inside the website and this is what we call a MVC model we have model U controller and whenever it comes to any sort of application like we’re doing right now so right now we have a signup system and we have a login system so we’re going to go in and create a MVC file for our signup system and for our login system so going inside our directory here I’m going to go inside my includes folder I’m going to create a new file I’m going to call call this one sign upore model. in.php I’m going to create a second file which is going to be called sign upore view. in the PHP and I’m also going to create a third file which is going to be called sign upore controller. in.php controller is spelled c n t by the way so now with these let’s go and wait with the login system because like I said that it’s going to wait until a bit later uh so for now what we can do is we you can actually take a look at these different files so right now if I want to go inside my model here you can see there’s nothing inside this file uh basically these three files are going to have a bunch of functions inside of them and depending on the file we’re going to have these functions do a specific thing so they have a certain task they need to do uh so inside the model here that is going to take care of only cing the database and getting data or submitting data or updating data or deleting data it’s only going to interact with our database and it’s very important to point out here that these are very sensitive functions because these are interacting with our database and that is a sensitive thing uh so the only thing that is allowed to interact with these functions in here are going to be our controller file because our controller takes care of handling input from the user and then uses these functions in here to actually send that information to these functions so they can actually do something with the database so we separating different tasks here and I know that may sound confusing but that is something that is going to be something you have to learn to do so what I’ll do to start with inside this model here so I’m going to open up my PHP tags and I want to say I want to activate something called strict types and this is something you don’t have to do this is something that I like to do because it just sort of prevents more errors from happening inside our code if it were to write a typo or something or submit the wrong type of data so by declaring that we want to set our strict types equal to true it means that we are allowing our code to have something called type declarations I will talk more about type declarations once we actually get to it for now just know that this is something we’re going to have inside our code here and what I’m going to do is I’m just going to go and copy this code make sure I save it and paste it inside my controller save it and paste it inside my view because we’re going to have this inside every single file so going back inside our sign up that ink the PHP file we’re going to include two more files underneath our database connection the first file is going to be the model that we just created so we’re going to say we have a sign upore model that ink the PHP and then we do also have a signup uncore controller that ink the PHP the order here is very important because that is going to be relevant for later when we do talk about object or PSP and then instantiating different objects based off classes uh and that has to be done in this order here so this order here is just a good habit for you to get into it uh so the model is always going to come first after the connection and then we’re going to have the controller after the model here in a situation where you did also need to connect to the view that would actually go in between these two so you would have these sign of view in between the model and the controller just to point it out but for now we don’t need to have the view we’re just going to go and delete it here and again if this is confusing to you about model view controls just go and wait because it will make sense in a second I promise okay I know it doesn’t make sense when you get started on it and I’m sitting here talking about it uh but since we haven’t actually done any sort of code based on it yet it is going to sound confusing so you’re not alone if this is confusing you it will make sense in a second okay so going below here the first thing we’re going to do inside our Tri block here after actually grabing these files is going to be running error handlers now error handlers is a way for us to go in and actually do any sort of prevention to make sure that things are running appropriately so to speak so things are running correctly inside our code uh so if the user were to go inside your website and not type something inside one of the inputs when they’re trying to sign up then we want to take them back to the front page and say hey you forgot to sign something up in there so that’s the thing we have to to do in order to make sure that we have some sort of error prevention happening inside our code uh and some of you may say well Daniel can’t you just go inside your index. PHP and go inside one of these inputs here and include a required attribute and with this attribute we can no longer submit this form right uh wrong because this is front-end development this is client side languages so HTML CSS JavaScript cannot be used when it comes to security at least we cannot rely on them when it comes to to security that should always be done using a server side language because if I were to put this inside my website I can just go inside my website here I can click F12 to go inside my developer tool go inside my form down here and I can just go ahead and remove my required attribute and there we go I can now hack this website and bypass it so it’s very easy to do so do not rely on HTML or css or JavaScript for any sort of security only for extra things so to speak so having said that let’s go and go back inside our sign up and actually create a error Handler for checking if every input are actually filled out before the user actually submits the form so what I’m going to do is I’m not just going to write the code directly in here because that is not organized that is not the appropriate way to do things because all of a sudden we have a lot of code inside this file here uh so let’s go ahead and split up the task to our different files so now you have to ask yourself okay so what are we trying to do here are we trying to quy the database are we trying to show something inside the website are you trying to take some user data and do something with it yes we are so we’re going to go inside our controller file which is up here so our sign upor controller. in.php is what we have to use so inside my controller I’m going to go and create a function which is going to have a name that name is going to be is input empty so isore input put underscore mty and this is just you know one of many ways you could name functions just to point it out some people prefer to use camel case other people like to use underscores so this is just a little bit easier for people to tell what this function is at least from my eyes when it comes to naming these functions here uh but inside this function what I can do is I can pass in some parameters so inside my parameters here I want to pass in a username so going to say we have a variable called username I do also want to pass in a password and a email because I have to check if any of these were not submitted when they us to submitted this signup form and remember we use these parameters here to pass in data from outside the function so this is important to have uh so inside the function itself I’m going to run a if condition and inside this if condition we have a built-in function called empty which is basically checking if one of these variables are empty or if they have data inside of them so I’m going to grab my username put it in here and check is this one empty or is another one of these empty so I can actually copy paste here and just simply check for the password I can also copy paste again and then we can check for the email and these two pipe symbols here means or inside our condition so if this one is empty or this one is empty or this one is empty then we want to run a certain blocker code so in this case here this would actually mean there is a error inside our form because they did not fill in one of the inputs if this one is actually true uh so what I’m going to do is I’m going to go in here and say I want to return a true Boolean and then I’m going to run a else condition and say I want to return a false Boolean and in this sort of way we can now go in and actually check is there a error when the person tried to submit their username password and email because they did not fill in the inputs so now saving this I can actually go and copy the name I can go back inside my sign up. the PHP file and inside my error handlers here I’m going to create a if condition that is simply going to check if this one returns as true or if it returns as false because if it returns as true then we do actually have a error inside the website so in this case here if this returns as true by just pasting in the function and at this point here I’m actually going to wait with putting in the code for the actual error message inside this condition here because we do have a couple of different ways we could do it and I do have a way that we are going to do it in this video here uh but it’s not going to make sense until a little bit later on so let’s go and wait with this uh what I’m going to do is I’m going to create a second function that is going to check for something else in this case we can actually check if it was a valid email that the user actually submitted so what I can do is I can go back inside my controller I can copy this function here just copy paste it below and I can call it something different so in this case if you could say something like is email invalid isore _ inval valids and now at this point here we’re only checking for a email so we don’t actually need to have the password or the username so we just go and delete those two from the parameters here and inside the condition here I’m just going to go and delete these empty functions because we’re not going to check if they’re empty we’re actually going to run a filter so we’re going to say filter uncore V which is a build-in function inside phsp and inside this one we can tell it what do we want to filter for so in this case here I want to filter my email so I’m going to paste in my email as the first parameter and then I want to tell it what exactly do I want to filter here and in this case I want to filter to validate if this is a proper email so filter uncore validate uncore email and this is actually a built-in uh validation inside PHP so you can actually check if this is a valid email uh if that is the case then right now we’re returning this as true and if that is not the case then we return it as false but this is the opposite of what we want to do we do actually want to say if this is a invalid email then return as true so we’re going to go in here and write exclamation mark which means the opposite so in this sort of way we now have a function that can check if the email is actually valid and if it is not a valid email then we return this as true so again we can go and copy this go back inside our sign up the dink to PHP so I’m just going to go and paste in my function below here and copy the if condition paste it down below and simply take this email invalid function and put that inside instead inside this condition here here uh so the next thing we can do here is we can actually go ahead and check if this uh username that the user tried to submit has been already taken because inside the database you may have many different usernames and you don’t want to have two users with the same username uh so what we can do is we can run another function inside our controller in order to check for a certain username and if it exists inside the database then the users should not be allowed to use that username so again we’re going to go inside the controller and copy this function and just paste it down and we’re going to rename it into is username taken and we’re just going to go and delete the parameter inside our if condition here and at this point I do actually want to point something out which is that right now we want to run a function that has to go inside our database and check for a username which means that we have to query our database but now I did talk about this earlier I said that we have three different files we have one called a model that takes care of cing the database then we have the view that shows information inside the website and our controller takes care of any sort of information so in this case here what do we do do we go inside this controller here and then we quy the database because that’s a no no only one file is allowed to actually quy the database and interact with the database inside our code which is our model file uh but before we do that we do actually need to do some type declaration here because we didn’t actually do that uh so right now our username up here is actually supposed to be pass in as a string data type or at least that’s what I decide this is going to be because the username is a string of characters so that is going to be a string data type I’m going to do the same thing for our password and our email since that is also going to be a string then I’m going to go below here inside my email invalid function and do the same thing because this is also going to be a string going to go below here and say I want to pass in a username that is also going to be a string so this sort of type decoration here is not something you have to do but it just adds another layer of error prevention inside your code because if I were to pass in a Boolean inside my uh function here then it would tell me inside the website hey that is a incorrect data type so it’s just an extra layer of error protection you could also go after here and say what the return type should be so if this has to return as a Boolean meaning a true or false statement then I can say bull right after here and say that is going to be the return type uh but let’s not go into that right now let’s just go and talk about telling it what kind of data we expect inside our parameters here so having talked about that let’s actually go back inside our model page and continue what we’re doing right here so right now we’re trying to query the database in order to check if a username is already taken uh so going inside my model page we’re going to go below here create a function give it some kind of name in this case here I could call it getor username and I can go ahead and say I want to pass in a username because we need to use the username in order to actually C the database to tell if the username exist in there uh so we have to pass in a username again remember we’re using strict types here so we can actually say we want to declare this as a string called username so now at this point here we do actually need to run a PDO Connection in order to do this and right now our PDO connection is inside our db. in.php file so there’s a couple of ways we could do this we could go in here and actually go ahead and require our file here so require uncore one and link to our db. into phsp but that is not actually necessary because we do actually have that linked inside our signup page so at the top here we link to these files up here we do have the database connection linked up here first before we actually access these files down here uh so going inside the model here I can actually go and pass that in inside as a parameter here so this is going to be a object data type so not a string or bully and this is actually a object data type uh because this is a PDO object that is going to to connect to our database again we haven’t talked about object or ENT PHP so just for now just trust me this is a object data type uh so this is going to be our variable called PDO which is of course the same variable we have inside our dph that in the PHP which is right here so now all we need to do is actually query the database because now we do have our connection passed into this function here so going down I can say that we have a variable I’m going to call this one query I’m going to set it equal to a string which is going to be the query for our database so in this this case it’s going to be a select statement I’m going to select my username from inside this table here because that’s the only thing we need to check for so there’s no need to grab all the data in this case we can just say username from our users table and then I want to say where a username is equal to a placeholder that we’re going to call username and in this sort of sense here remember the semicolon at the End by the way uh we now have a query statement that we can actually quy into the database using our connection but we do need to do this in a secure way using prepared statements so below here I’m going to create a variable and call this one stmt for statement and we’re going to set this one equal to our PDO connection and then we want to point to a method called prepare which means that now we’re creating a prepared statement and I’m going to pass in my query and send this one in separately because by sending in our query separately from the actual data from the user we now separate the data from the actual query which makes this something that is going to prevent SQL injection which is a good thing so having done this what I can now do is I can actually bind the data to this quy and send that separately so first of all we have to bind the data so we’re going to say we have our statement point to a method called bind param parenthesis and inside of here we have to tell it what is the name of the placeholder in our case it is going to be username so I’m going to paste that in as a string and then I want to to tell it what is the data I want to put in where this placeholder is in this case it is going to be our username and then we simply run a execute statement so we want to take our statement here point to a execute method and this will actually go in and actually Cory our database using this SQL statement up here uh so now that we did that we need to actually check if we did actually grab a row data when we search for a username called whatever the user typed inside the input uh so in order to do do that we are going to write a variable called result and we’re going to set it equal to our statement and refer to a method called Fetch now fetch is only going to grab one piece of data from inside the database so it’s not called Fetch all it’s just called Fetch so in this case we’re just grabbing the first result now the fetch type is going to be a PDO type and I want to refer to fetch uncore asak which means that I want to fetch this as a associative array this basically means that we can refer to the data inside the database using the name of the column inside the database which is a much better thing than using index arrays uh so in this sort of way here we can now take this data and return it so we’re just going to go and return our variable result which means that when we run this function here we grab the data or if the username does not exist inside the database then we get a false statement so now we copy the name of this function we go back inside our controller and we paste that function inside our if condition condition now we do need to remove these type declarations in here so we’re just going to say we don’t want to have those because we don’t need them when we actually call upon the function we do also need to make sure we pass in our connection inside this function here otherwise this is not going to work so we do need to say we want to pass it in and we want to make sure this is a object type so doing this here is basically going to go inside the if condition and then check is the username inside the database if it is then we return this as true if it is not then we return this as false meaning that this is going to be a error if the username is already taken or not an error if the username is not taken so again we can go back inside our sign up the D the phsp go down and copy one of these if conditions paste it below and change the name to what we called it inside our controller so we just copy the name of this uh function here go back inside and paste that inside our if condition of course again remove the type declarations because we don’t actually need those from be used to functions and in this sort of way here we now have something that goes in and actually checks for a username so now I’m going to do one last thing inside my error handlers here and it’s very important to point out that you can do many different types of error handlers you can also check for the length of the username or the password or the email or whatever um I’m just going to go and do a couple of different ones here and then you kind of get the idea that we can just do this and you can come up with any sort of error Handler WR a function for it and then refer to it inside a if condition inside our sign up that in the PHP file uh so it’s the the same process every single time basically uh so what I want to do here is I want to copy paste my if statement because I do want to include one last eror Handler I’m just going to go and delete the function from in here because we don’t have it yet and I’m going to go inside my sign upore controller and I’m going to create the last function so in this case I’m just going to copy paste one of these function here I’m going to change the name so it’s not is username taken but is email registered in this case here we do also need to Cory the database because we have to check for a email so I do also want to make sure I include my database connection inside this function here I do also want to make sure I pass in my email so not the username in this case so the email and inside the if condition here we’re just going to go and delete our function because we want to run a different function now so again because we have to quy the database to see if there is an email inside the database we have to do the exact same thing as we did with the username just using a email instead uh so we do actually need to go back inside our model and create a SE function that is only going to check for a email so in this case if we can say get email and all we have to do is change a couple of different variables in here so right now we’re passing in a email I want to go inside and take my email column I do also want to change the parameter here or the placeholder to email I do also want to change the name that I’m binding inside my bind parameter method down here so it’s going to be the email variable and also the email placeholder and with this this is all we needed to do in here here so we can go and copy this go back inside our controller and paste that inside our if condition and of course do also make sure you remove these different type decorations because we don’t need those inside the function when we call upon the function and with all this we basically now just check for an email being inside the database because it was pretty much the same thing as before uh so it’s very easy to do so going inside our signup we can go ahead and copy the name of this function here and paste that inside our condition and of course remove the type Creations like so and at this point we need to talk about how we can actually create these error messages because now we have a bunch of functions that check for different things and if one of them return as true it means that there is a error so what I can do is I go above my different conditions here and I can create an array which is going to be empty I’m going to call this one errors so we’re going to say we create a errors array which is going to be equal to no data and what we basically do is if there is a error inside one of these conditions down here then we assign that error inside this array up here so we’re going to stack a bunch of data inside this array depending on how many errors we get inside our code and then at the end if we have any sort of Errors inside the array then it means we get a error because there is an error in there and then we’re going to prevent actually signing off the user because if there’s an error then we shouldn’t sign up the user uh so what we can do here is I can actually go ahead and go inside the first condition and say I want to actually assign a piece of data to my array so I can say we have a variable which is called errors and I want to go ah and say brackets is equal to some piece of data which in this case is just going to be a string so right now I have to tell it what is going to be the associative name for this particular piece of data so this is the key this is the value so if I want to grab this particular error message here then I need to refer to this particular key in here that is basically what is happening again if you’re a little bit confused about when it comes to arrays I do have a array episode where I talk about arrays extensively um so this should be something you know by now for now let’s just go and go inside our array and create a key for this particular piece of data I’m going to call this one empty input so _ input and I’m going to create a error message so in this case we can say something like fill in all Fields exclamation mark then I’m going to do the same thing for all these other ones down here so I can go down and paste in my code and I can change this one not to empty input but instead we can say invalid email invalid unor email make sure we actually spell that correctly invalid change the error message to invalid email used then we’re going to go inside the next arrow down here which is if the username is taken and I can go ahead and save we can call this key something else so this is going to be username uncore taken and I’m I’m going to call the error message something else username already taken exclamation mark then we can go inside the last one down here and say this is going to be email uncore used and then we can change the error message to email already registered and at this point here if there was no errors meaning that none of these actually returned as true and insert this data inside our array it means that our array is going to be empty because if there’s no error then we didn’t put any data inside our array so now all we have to do is run a condition and check if this array is empty if it is then it means we had no error messages but if it is not then we need to send the user back to our index page you know what the sign up form is with error messages so I’m going to check if we did have errors this is going to return as true by the way if there is actually data inside this array if there’s no data then it returns as false and this is going to return as true if there is data inside this array and it’s going to return as false if there’s no data inside this array so what I can do is I can go inside this condition here and I’m actually going to go and create a session variable so I’m going to say we have a dollar signore session and I’m going to set this one equal to error signup or at least call this one error signup and I’m just going to go and assign some data to it which is going to be all the error messages that we have stored inside our errors array so I’m going to assign that to it but now at this point if we don’t don’t actually have a session started so we can actually run these error messages because we need to actually have a session started before we can actually store session data inside a session so what I can do right above where we actually assign these errors to our session variable is I can actually link to our config file because that has a session started uh inside that file so I’m going to go up here and just copy paste my require go down below paste it in then I’m going to change this to config uncore session in PHP because like I said inside this file here we do actually have a connection started so we could just run this liner code so I could just take this go back inside my sign up and just replace that with this line of code instead but because we do have a much safer way of doing things when it comes to sessions inside that file so instead we can just link to that file in order to start a much safer session so with this in here we can now actually assign this session variable to a value and have that stored inside our session so now what I can do is I can actually go below here and I can link back to our index page where we have our sign up form because we need to go back to that page and run some error messages so I’m going to run a header function and I’m just going to go ahead and copy paste what we have down here since that is going to be the same thing so we’re going to go back to the index page and because we have all the errors stored inside our session we can actually go ahead and print those out inside our page so let’s actually go and go back inside our index page and do that right now because why not we are at the error messages so why not just show them already so right underneath my sign up form I’m going to run a PHP function that we haven’t created yet so I’m going to say we have our PHP Tags I’m going to close it again and I’m going to refer to a function called check uncore sign upore errors parentheses semicolon and now because we’re actually outputting something now using PHP from the signup system we’re now going to jump inside our view. in the phsp file so our sign upore View uh is going to have a function inside of it which is going to be what we just created inside our index page so we’re going to say we have a function we’re going to call this one check uncore sign upore errors then we want to open up the actual function here and inside this function I first of all want to run a if condition because I want to actually check if we have these errors stored inside the session because if there’s no error stored inside the session it means there’s no error messages so inside the parameters we can run a is set function and actually check one of these session variables so in this case here I’m going to check if we have our erasor signup which is going to be the session variable we have inside our sign of the in the PHP that we did actually create down here and if we have that I want to go inside this condition and I want to create a variable called errors and I want to set it equal to our dollar signore session actually we just go and copy paste from up here which means that now we have a variable inside our PHP code which is equal to this array that has all our errors inside of it uh so this is actually a array now now the reason we’re doing this is because we do actually want to unset our session variables because like we talked about in previous session security episodes as soon as you have data inside your session variables that you don’t need to have anymore you need to make sure you actually delete them uh so at the bottom here I’m going to run a unset function that is going to unset my session variable because once I’m done running this script here I don’t actually need this data inside our session anymore so we’re just going to go ahead and remove it again right afterwards uh so in between here we’re going to go ahead and actually run the error code so first of all I’m going to run a small break just because I want to get some distance from the actual form uh this could also be done using HTML if you wanted to but inside my code here I’m just going to go and create a break and then below here I’m going to run a for each Loop because that is a loop type that is used in order to Loop out a array so I’m going to grab my arrow array and say I want to refer to that one and then I want to say as variable error which means that this is the placeholder for one of these data inside uh this array here and inside for each Loop I’m just going to go and Echo out a paragraph again I’m just going to copy paste from my notes here so I have a paragraph that has a class to it because I have some CSS inside my my website here and in between these paragraphs here I’m just going to go and concatenate my code so I’m going to say I want to concatenate and I want to go ahead and refer to my error and in this order way we now Loop out every error message below each other inside this page here so at this point here we do actually have a error system working now we could also say sign up success once we’re actually done uh but let’s go and wait with that until the end because we do actually have a little bit more code inside our signup in.php file and once we’ve done that then we can return to this in order to actually run our successful message so now in order to test this out we’re going to go back inside our index page and actually link to our file because right now we don’t actually have our sign upore view. interface P linked inside our index page uh so in order to actually access the functions we need to go at the top here create a pair of PHP opening and closing tags and then we’re going to say we want to require underscore once and I want to link to my includes folder and inside the includes folder I have a sign upore view. in.php we do also need to make sure we have a session started otherwise this is not actually going to run this code because we need to have a session available to us to grab the error messages so I’m also going to link to my config file so I’m going to go inside my includes folder link to my config session. in the PHP and doing this we can now go back inside our website and actually test this out we’re going to go and refresh the browser just to reset everything and now if we were to go inside my sign up form and try to sign up without typing something inside my inputs you can see we get fill in all fields and invalid email use because right now uh we didn’t type in a proper email and we did not fill in everything inside the form uh so if we were to type something in so for a username a password a invalid email you can see that oh we get a invalid email use because that was actually wrong if I were to type in a non-existing username from inside my database a password and a correct email so I could just say example at gmail.com and then click sign up then you can see we get something you know it actually puts us to the next page because now we type something valid into our signup form but of course we haven’t yet created something to actually sign us up inside the website so right now it’s not going to do anything now we’re just stuck inside our sign up the thing the phsp page um but just know that now we have something that actually writes out error messages once we do actually create some sort of error inside our code so back inside our sign up the link the PHP file we can actually continue in order to actually sign up the user inside our website uh so what I’ll do is I’ll go below here and I’m going to run a function called create uncore user parenthesis semicolon because at this point here we don’t actually have any errors CAU by the error handlist that we created inside our code uh so we can actually go ahead and run this function here so in order to do that we need to go inside our controller I’m going to copy paste one of the functions and I’m going to call this one create uncore user which is the one that we just created inside the signup page and I’m going to paste in our connection because that is important and then we do also need to paste in all the different data that the user actually submitted so I’m just going to go and copy pasted here so we need to paste in the password the username and the email and then going inside our actual function we can go and delete what we have here and we’re just basically going to run a function from inside our model page so we’re going to say we want to run a function called setor user parenthesis and then we’re just going to go and paste all the same data as we pasted inside this function here so we’re just going to go and paste that in make sure we remove the type declarations just like before we’re going to save this and then go inside our model page and then we’re actually going to to create a new function and we’re going to call this one the same thing as we did inside the last function so setor user and of course paste in all the data including our type declarations uh inside the parameters here curly brackets and then we can actually go inside one of these other functions and just copy paste the query and execute uh so this blocker code right here paste it inside our function and then we’re just going to go and change the statement from a select statement to a insert statement so we can say insert into users we’re going to include the column name so we have a username we also have a password and we have a email then we’re going to say values which is going to be what is inside these parentheses so again we’re going to use placeholders so this is going to be username and we’re going to include a password and we’re also going to include a email and then we just need to bind the parameters down here so we can actually copy paste in the username we can copy this down two more times and paste in the password we can paste into email and this is all we have to do but now we did also talk about hashing in the previous episode because we need to make sure that when we paste in this password that it can’t be read from inside the database so right before we bind the parameters I’m going to create a variable I’m going to call this one options because I want to include a couple of options inside an array and this is going to contain a cost factor which is going to be called cost and we’re going to set this one equal to 12 and this essentially is just going to make it cost quite a bit more in order to actually run this hash and this is going to prevent the Hackers from actually brute forcing the way into your website so this is important uh then we’re going to go below here and actually run a hash so we’re going to say we have something called hashed password and I’m going to set this one equal to a function called password uncore hash parenthesis semicolon and then we need to tell what exactly we’re trying to Hash here so in this case you want to Hash the password that was submitted by user and I’m going to run a hessing algorithm called password undor bpts and I’m also going to go and pass in my options which is the variable we created up there and this is basically going to Hash our password using the bcrypt algorithm and also go and add a cost factor to it so it’s going to slow down the The Brute forcing process if someone were to try and hack their way into your website um so what we can do here is we can actually take our H password and replace that with our password then where we actually B our parameters because now we’re storing the H password and not the real password inside the database we do also need to make sure inside this array here that we don’t set it equal but we actually assign 12 to our cost just so we don’t get that error message there uh so with this we now actually have this function working so we can go back inside our uh sign up the PSP file here and we need to make sure we actually paste in these parameters so we could just go back inside our controller copy all these different parameters here go back inside our sign up the PHP and paste those in of course without all the different uh type declarations that we have here so after running this function we just signed up the user inside our website so what we can do is we can go down a couple of lines and then we just run a header function and a die function in order to actually stop the rest of the script from running just in case and we’re going to send the user back to the front page where we’re actually going to include a sign up success message so we can actually go and say we have a question mark sign up equal to success and before we end off the script here so before the die function I do actually want to close off my connection and my statements so I’m going to say we have our variable PDO I’m going to set it equal to null then I’m going to copy paste this down and I’m going to say I want to set my statement equal to null and in this sort of way we now have a basic signup system working inside our website so now what we could do is we could actually go inside our website to test this out but I do want to have our signup success message if we do actually do so uh so we’re going to go and use this little um URL parameter here in order to do that so right now we have a signup equal to success displayed inside our URL if this is actually successful uh so what I can do is I can go back inside our view function because this is the one that actually has the error messages and I can write a else if condition and then check if we have that inside the URL with the sign up equal to success uh before we do that let’s go and paste in what we actually want to display inside the website so in my case I do want to again just run a break but I’m also going to go below here and Echo out a paragraph that is going to say sign up success inside the condition I’m going to run a iset function that is going to check if we have a certain get method inside the URL so in our case here we are checking for a dollar signore get because that is something we can do whenever we have any sort of data displayed inside the URL for example sign up equal to success so I’m going to check for something called sign up which is going to be the key inside the URL so we have sign up equal to success so key equal to Value okay just like inside arrays and I’m also going to go and check if it is equal to a certain message so I can go right after our is set function here do make sure you do it after the parentheses so in between these two parentheses at the end here and I’m going to say and is my get signup equal to a certain string so in this case success and having done this we need to do one more thing that I actually forgot to do inside our sign up the link to PHP file which is to go down and inside our errors if condition I do need to make sure we exit this script if we do have any sort of Errors inside our code otherwise it is still going to continue running all this code down here even if we do get a error message so we do need to copy this die function here and paste it right below our header because then we do actually exit the scripts and with this we now have a complete signup system or at least a signup system with a error message system so you can actually see any sort of Errors you might have inside your signup form so if were to go back inside our web page I can actually refresh everything just to make sure everything is reset and going inside and typing in a sort of error so if I were to type something wrong uh let’s say I did not fill in my password and I wrote a invalid email if it would to sign up then you can see we get two error messages down below we get fill in all fields and invalid email used so as you can see we have error messages showing and telling us what we did wrong inside the signup form uh what we can also do here is we can actually sign up inside the web page because that is something we have set up as well so if we were to go in here and say I want to sign up as Danny Crossing and I want to type in one 12 three as my password and say I want to type in a email so I can say Crossing at gmail.com which is not a real email that I have but just to come with some kind of example here uh if want to click sign up now you can see sign up success and then if I were to go inside our database we now have a user inside our users table so at this point here the signup system is working but there’s one more thing we need to include inside in order for this to be a complete signup system at least I think this is a feature that is something you should have inside a signup system which is to make sure that if you create any sort of error messages inside the signup form let’s say I went inside my signup form and I wrote in a valid username and I did not type in a password and I did type in a valid email so let’s say we say example at gmail.com um at this point here if I were to get a error message when I try to sign up because I did not fill in my password it should send back the data that I already typed in inside this form so don’t have to retype everything if I get sent back with an error message because that is just really annoying so this is more of a usability feature for people to not have to retype everything inside this form here so in order to create this I’m going to go back inside my code and the first thing we have to do is make sure we actually send the data that the User submitted back to our signup page so we can actually show it inside the inputs and the second thing we have to do is actually show it inside the input so we have to do two things in order to get this working here so the first thing we’re going to do is I’m going to go back inside my errors if statement here and I’m actually going to create an array that is going to contain all the data submitted by the user so we can send it back to our index page so if we have some sort of Errors then I want to go in here before the header function by the way and create a array and in this case I’m going to call this one sign up data and we’re going to set this one equal to an array so we’re going to say brackets and semicolon and then opening this up we can now add some data inside our array here and we’re going to do that as a associative array so we want to have a key and we want to have a value for that key so the first key I’m going to have in here is going to be the user name because I want to send back the username and again this is a name we can come up with ourselves so you can call this whatever you want uh in my case here I do think username makes sense because this is the username then I’m going to assign a piece of data which is going to be the username the user actually submitted when it tried to sign up inside our form which is going to be variable username and the reason I know that is because if I were to scroll up here I can actually show you that we want to grab all these different data and send that back inside the signup form or at least all the data except for the password because I do think the password is something you have to retype every single time in case you get something wrong inside your input and that is just kind of something you see inside websites typically so we’re not going to send back the password but any other kind of data we are going to send back inside the index page so going back down I’m going to assign the second piece of data which is going to be our email or at least the users’s email they tried to sign up with so this is going to be called email and we’re going to copy that and paste it over inside our variable here so now we have the actual data inside an array and now we have to actually send it back by assigning it inside a session variable just like we did up here so I can actually copy this session variable that we have paste it down below and we’re just going to go and change the names in here so we can actually go and say sign upore data and then we can go ahead and say this is going to be equal to our signup data so with this here we can now send the data back to our sign up form so what I can do is I can go inside my index page and what we need to do now is just basically take all these inputs from inside our signup form and we’re going to replace it with a piece of PHP code that is going to check if we did actually have some data sent back to this form here because then I want to show a different version of these inputs here so the way I’m going to do this is I’m going to copy all my inputs here just so I have them and I’m going to delete them and then I’m going to go inside my sign upore view. in.php file since we now have to show something inside our page and like we talked about we have the model view on controller and the view is going to take care of showing something inside the web page so what I’ll do is I’ll create another function so I’m going to go below my declare here and create a function and I’m going to call this one sign upore inputs just to give it some kind of name then I’m going to go inside and I’m just going to paste in my HTML for now so now what we have to do is create a couple of conditions that are going to check if we have this data being sent back to aign up form because of an error message and if that’s the case then I want to include that data inside my inputs here instead of having just the regular inputs with no data so what I need to do is go below here and create a if condition and inside this if condition I want to check if we have a certain session variable existing inside our web page which is going to be the one that has all the data in inside of it so going inside of here what I can do is I can write a is set function which checks if a certain session variable is currently set inside the page so I can check for a session variable so dollar signore session and I’m going to check if we have something called sign upore data but now I do want to check for a specific piece of data inside this sign upore data array uh so what I can do is I can create my brackets afterwards here and refer to a certain P inside this array here so right now I want to check if we have something called a username so if we have this it means that we did not leave any input empty for this particular input so now we’re actually also checking if there was any empty input so we don’t actually have to check for that particular error message but we do need to check for another error message because what if I picked the username that already exists inside the website because if I did that it means that I need to retype the username because it is already taken so in that case I don’t want to type the username that used to submit it because it is wrong and it needs to be changed right so we also want to check for certain error messages in here the way we can do that is going afterwards make sure it’s after the first parenthesis over here and we’re going to write a and condition and we want to check for another is set so what I can do is I can copy paste this session that we have here paste it inside my is set statement and in this case we’re not checking for sign upore data but we’re checking for errors uncore signup and then inside our errors uncore sign up we have a specific error message that we want to check for so in this case here it is going to be username unor tagen taken taken username uncore taken but we do also need to keep in mind here that I want to show the data inside the input if this error message does not exist inside our website so I do need to write a exclamation mark in front of my iset function here so right now we’re checking if we do actually have the data available because the User submitted some data and if we do not have this error message inside the web page then I want to actually show the actual data the User submitted inside an input so we can actually copy paste what we have up here with the username and I can go down and say I want to Echo then I’m going to say single quotes in order to not mess up any HTML here because we are using double quotes inside the HTML and then I’m going to close it off here and now the way we actually show data inside an HTML input and again this is HTML this is not PHP knowledge is by actually going in and adding a value attribute and then I’m simply going to close off the HTML by using single quotes and then I’m going to concatenate some PHP code and I’m going to paste in my data from inside our session so I can actually go and copy that from up here inside our condition and paste that in inside our value then I want to run a else condition because if this is not the case and we did not have any sort of data sent back and we did maybe have an error message then I do actually want to go in and show the Reg input without any sort of value inside of it so I do need to Echo that out as well so I’m going to Echo out single quotes paste it in and semicolon and this is basically all we need to do for these different inputs here so now the second one is going to be our password and in this case here with the password we did already talk about that I did not send the password back because I do want the user to retype it no matter what happens uh so in this case we do actually just need to Echo out our input for the password so we can just go and copy paste a password input here single quotes and paste it in and semicolon but when it comes to the email input we do actually want to copy paste this if else condition up here paste it below and then I want to use my email instead so instead of checking for sign upore data username I want to check for a email I do also want to make sure we’re not checking for a error message that is called username unor taken but instead I want to check for a email used because that is the error message we had inside our sign up. in.php if we were to scroll up here you can see we have email used but now we do also have a second error Mage when it comes to our email which is actually called invalid email so we do need to check for that as well because if you have more than one error message for one particular input then that is important to check for as well so going back inside our view I’m going to copy paste from where we actually check for the ANS and all the way over to the first parentheses copy that and then paste it in right afterwards here because now we can actually check for a second error message do make sure you have all the parentheses correct and all the single quotes and double quotes because that will mess up something inside your web page if you do not have everything said correctly so with that in mind let’s go and change the second error message from email used to invalid email because that is the error message for that particular one so now all we have to do is make sure we replace the actual Echoes down here so I’m going to copy paste my email I’m going to go down below and paste it in instead of these Echoes that we have in here in both places by the way so both inside the if condition and inside the else condition and then we just need to make sure we also add in the value inside the first one up here so I’m just going to go up going to copy the value make sure you copy it exactly like I am here so after the double quote at the end there but also before the angle bracket so copy that go back down and paste it in right after the placeholder so space and paste in and then just go ahead and change the actual data inside of here from username to email go back up to the top here delete these HTML things that we just pasted in just for reference and now what we need to do is just copy paste our sign upore inputs function go inside our index page and actually spit this out inside our form so if we were to go inside the form here where we had the inputs before I can say I want to open up my PHP tag and close it again and just simply write out my function and in this sort of way we should now have our actual data being shown back inside the forms if I to type some sort of error message so if I were to go back inside and refresh everything inside my page here so if I go back inside my form and type a random username so just something jerus write something random inside the password and let’s go and create a invalid email so in this case here when I click the sign up button we should not have any sort of data inside the email field but we should have something inside our username field so we want to click sign up here you can see oh okay invalid email used we still have the data inside our username but it did actually remove the data from inside the email which is what is supposed to happen uh so if I want to go in here and say I want to type in a username that already exists inside the database so Denny Crossing type in a random password and then let’s go and create a valid email so let’s say example at gmail.com so if I would to actually submit this it should send me back without the username and without the password because the username is already taken right so if I were to click submit here you can see that we get sent back without the username without the password so as we can see this is working like intended so with all of that we can now go ahead and sign people up inside our web page and just to double check nothing is being inserted inside the database cuz that’s always a good idea you can see that nothing is getting inserted and with that we now have a signup system with both error messages and we have the data still being inside the forms if the user would submit something wrong you know so they don’t have to retype things the signup is actually working inside the signup system uh what I’m going to do here is I’m actually going to split up this video into two part since this is already pretty long and I don’t want you guys to sit here for like 3 hours or something I don’t know maybe this video is going to be 3 hours long who knows so we’re going to split this up into a signup part and then we’re going to have a login part in the next video so I hope you enjoyed this video and I’ll see you guys in the next [Music] one so in the last video we how to create a signup system inside our website just as an exercise to learn how to use all the different things we learned up until until now inside this course and we still need to create a login system since we you know now we have people signing up inside the website but we also need them to be able to log into the website uh so what we’re going to do to begin with is we’re going to start up inside our login. in.php file because this is the file that we need to start in in order to you know when the user goes inside our login form and submits the user name and password they send that information to this page so we can actually lock them inside our website from within this page here so in the same sense as we did inside our sign up the in to phsp file we’re just going to go ahead and check for a server request method just like last time we’re going to go in and make sure we do that to begin with so we’re going to open up our PHP tags and we’re simply going to check for a request method that is going to be a post method so if the user got to this page legitimately by actually submitting the form post just like with our signup system then we do want to run some code inside this file here so the first thing we’re going to do is actually grab the data so in the same sense as we did in the last one you can see there’s a lot of copy pasting because we did the same things already uh we’re going to go and grab the username and password from within our login form and just to show you if I were to go back inside my index page I do have a login form and I do have a signup form and inside my login form I do have two inputs one for the username and one for the password so not anything for I think a email which we had in the signup system because we don’t need to log in using a email so going back inside our login. in.php file I do also want to make sure that if the user actually got to this page illegitimately so if they did not submit a request method called post then I do want to go down and write a else statement again just like inside our sign up form so we were to go in here scroll down to the bottom you can see that we have a else statement that simply sends them back to the front page and kills off this script here so if we were to go back inside our log in you can see that we just simply paste that in and that is all we need for now at least and then we have a basic structure of you know sending the user back if they did not get here properly so what I want to do now is I want to go below our username and password that we grabbed using the post methods and I want to go in and do a dry catch block just like again in the last episode so if we were to go in here you can see that we do have a try catch block where we go in and we try some code and if it fails then we do want to catch an exception and actually you know write whatever error that might has happened inside the website so we know that an error has happened so again we’re just going to go and copy the catch block at the end here and we’re going to go back in and we’re going to replace the catch block that I autogenerated using the tap functionality we have inside editors typically so I’m just going to go and replace that and now we do have the ability to catch a PDO exception if something were to go wrong so now all we have to do inside this Tri block up here is actually run the code that is going to allow for us to check for error handlers and check you know if the user should be logged into the website if there were no error messages then of course you know we do want to lock them in so what we’re going to do to begin with is first of all I do want to make sure that I create a login controller a lockin model and a lockin view just like we did in the last episode when it came to the sign up because we do need to go in and create these different functions that has something to do with different tasks again we’re going to try and implement this MBC model system uh so you can get a little bit familiar with it when you get into object Orient PHP which I did just upload a crash course on object oriented PHP and I will include that inside this playlist here as the next episode because I do think it’s a very good idea for you to know about object oriented phsp so we’re going to get into objectoriented PHP after this video here and I just want to say don’t don’t freak out because a lot of people do think objectoriented PHP is very difficult but it’s really not you just need to have someone explain it to you in a beginner friendly sort of way so it’s really not difficult to learn object oriented phsp it’s just you need to have it explained properly and that way you can get eased into it and then you’ll you’ll realize that oh okay so this is actually pretty easy um so we’re going to do that in the next episode so please watch that one even though it’s not labeled number 30 or something inside this course here because it is relevant to what we’re going to do in the future inside this course here but for now let’s go ahead and create these different controller model and Views inside our files here so what I’m going to do is I’m going to go inside my includes folder and I’m going to create a new file I’m going to call this one loginor controller or c n. inc. PHP we just going to copy everything here and I’m going to create another file and I’m going to name this one the same thing except for controller we’re going to say model then I’m going to do the same thing but this time we’re going to call it view so linore view. in.php and we’re going to go and link to these files we just created because we do need to use some of the functions inside these files so we do need to have them available to us inside what we have here so what I’m going to do is I’m going to say I want to require underscore ones and I want to require these files one at a time time so the first one is going to be login actually just copy paste here cuz I did actually copy it I’m going to copy this down two more times because we do actually need to get the database connection first that is the first one we need to grab so we’re going to say dbh in.php which is the database connection that we created over here which is just a very basic file that connects to the database and then creates a PDO object which I do explain in that Next Episode by the way because we do go over objects in the next episode and then we can use this PD connection object in order to connect to our database again this is something we learned in the last episode but since I recorded that a while back I thought why not just mention it again so going inside our login. in phsp file we do need to make sure we have this connection and then we’re going to go down and say we want to grab the model and then we want to grab the controller and the order here does matter so you do need to have the connection first then the model and then the controller so now taking a look at what we did in the last episode you can actually see the we immediately started doing error handlers inside this script here and we’re going to do the same thing when it comes to login system so instead of doing things a little bit out of order like we did in the last episode because that might be easier for you to understand now you do know exactly what these error handlers do while we create this empty errors array why we do these if conditions down here why we do need to want to have this config underscore session why we do need to check for if we had any sort of Errors inside the array because then we need to send the user back with an error message so we do do have some things in here that we’re going to repeat inside the other file so we’re going to go and copy everything from when we actually check if the array that is called errors have any sort of Errors inside of it all the way up till the comment where I wrote error handlers then we’re going to go back inside the login file go down and simply paste that in so right now we are creating an empty array called Aros which is going to contain any sort of Errors you might be getting inside the website and in this case because we’re doing a login system and not a signup system of course this are going to change a little bit because you might not want to check for as many things for example why do we check for an email when it’s a login system we don’t have any emails passed from the user so we don’t actually need to have that uh so we don’t need to have all of this inside our code for now we’re just going to go Ahad and delete all of them except for the first one which is going to check for any sort of empty inputs and then we do actually need to go after this one and we do need to actually query the database because we need to actually grab the user from the database that they typed in using the username and we need to check if the passwords match because if this password the user just submitted matches with the user’s password from within the database then we do need to check for that as well and of course there’s many different error handlers you could be doing when it comes to a login system I think for now just because this is a basic example it is just enough just to check for empty inputs and check if the username exists inside the database so does the user actually exist inside our database and if the user exists does the password actually match inside the database as well so we have a couple of things we need to check for here so what I’ll do is I’ll go inside my loginor model file and I’m actually going to quy the database using the username provided by the user to see if the user exists inside the database and if they do then I do want to grab the password and check that up against the password the User submitted just now so what we’re going to do is we’re going to open up our PHP tags just like any other time we go inside a new file and inside of this one I’m going to create a function that simply goes in and gets the user so we can say getor user and I’m also going to go and declare strict types because we did actually talk about that in the last episode so we’re going to declare that we want to use strict types so we’re going to say parentheses strict underscore types and I’m going to set this one equal to one this means that once we do actually get inside this function down here we can also tell it that we want to require a certain data type and not just the variable but the variable has to be a certain data type so inside the parenthesis I want to get the connection so we want to grab the variable PDO which is the one we have inside our database connection here so we can actually connect to the database in order to query it the second thing we’re going to pass in is going to be the username because the username was given to us by the user so if I were to go back inside my login. in.php file you can see that we did actually get it up here so just simply going to quy the database using this username now now we did talk about strict types so what I can do is I can actually say this is a object type and then the second one over here is going to be a string type again we talked about the PDO variable being a object that we created inside our connection so whenever you use PDO in order to connect to the database in this sort of way we do do that by creating a connection object using PDO and we do that using this new keyword so we instantiate a new object that is from the PDO class again we’re going to talk about this in the next episode uh but this one is going to be our connection so we do want to make sure we grab that and refer that to as an object because that is what it is and then we just have the username being a string because that is what the user gave us so now inside this get user we simply going to go in and Cory the database and we can actually go and copy paste because inside our sign upore model we do actually have very similar function so we can actually go in and just copy everything from inside just this first one up here called get username just to grab one of them and we’re going to go back inside the model and simply paste that in now everything is going to be the same except for our select statement up here because right now we want to not just select the username but we do want to select everything from inside this table here so we’re going to grab everything from the users table where a certain username is equal to username so in the same way as we did before then we create a prepared statement we go in and bind the parameters to the placeholder so right now we have this name parameter up here so we just bind the username the user gave us and then we execute it and then we grab all the results from inside our database or at least we’re grabbing one result from inside the database because we’re not fetching all of the data but just fetch which is just one piece of data or one row from inside the database so with this basic function here we can now just go in and cor the database using a particular username which means that we can actually go in and grab our loginor controller and do a couple of other functions in order to check if the username exists inside the database and we can also do want to check if the passwords match inside the database because you know the username has to use the right password so I’m going to go inside my model again and just copy everything go back inside my controller paste it in and just delete everything inside the function and change the function name to something else because in this case here we might call this one is underscore username wrong so underscore wrong and inside the parameters here we’re just simply going to check for variable results which was the one that we returned inside our model here if we do actually have a result but there is a small catch here because if I qu the database and we do actually have a user inside the database with that username then I’m going to get this one as an array however if we do not have a user inside the database with that username then this is going to return as a Boolean so no longer as an array but as a Boolean because it’s going to be f because there’s no user inside the database so how do we do that when it comes to strict types because if we would to go back here and say okay well I want to require variable result to be of a certain data type because if I write array then if I don’t have the user inside the database then we’re going to get an error message because now the strict type is wrong so if we were to type bull instead which is a Boolean then now it’s going to be wrong if we actually do get a result from inside the database so the solution here here is that we can go in and write this pipe symbol and say we also want to accept an array so now we’re saying that if this is either a Boolean or an array then we do want to accept the results so this is how you can combine different data types and say that you want to accept one just one type of data so not just a string but also a string and a Boolean if you wanted to uh so just to show you that this is how we can do that inside the function itself we’re going to write a if condition I’m just going to copy paste for my code here because it is very simple so going in we’re just going to create a if condition and we’re going to check if result is equal to false then return true because if it returns as false it means that we did not find the user inside the database because we don’t have any data inside this array here otherwise return this as false which means that we did not have any sort of error messages I know that the true false May logically seem like it switched around but it’s not really because the function is called isue username wrong and if this one is true it means that it is wrong and this is how we can simply check if the username exists inside the database and I know we haven’t actually use the function inside our login theing the PHP file yet but it will make sense in just a second so what I’ll do is I’ll copy paste this function below here and I’m going to check is password wrong because we do also need to check if the passwords do actually match because we do have a password from the user that just tried to log in and we do have a password inside the database which by the way has been hashed so we need to actually check these two against each other um and then we need to return this as true if they do not match each other or false if they did match each other the simple way to do this is just to go inside our parameters and say we want to get a string which is going to be the password submitted by the user and then we also do want to get another string which is going to be the has password from inside our database so PWD so grabbing these two different passwords we can go inside the if condition and simply run a password underscore verify and then we’re just simply going to check these two different pieces of data up against each other so we can check if password and H password do actually match each other but we do need to keep an eye out here because we are actually right now checking if the passwords do actually match each other which if they do then we’re actually returning a error message and that is the opposite opposite of what we want to do so we do need to make sure we go inside the if condition and do a exclamation mark in front of our password verify because now we’re checking if this is equal to false but now we do also have one last one we need to create because going back inside our login. in. PSP file we do have one more error Handler that we haven’t actually addressed yet which is right now is input empty because right now this is actually the one that matches up with the signup form and not the lockin form because as you can see we have an Emil in here so we can’t just reuse it and it is also just better to separate functionality so you know all the code for the login system in one place and then all the code for the signup system in another place because that kind of goes into the NVC model pattern that we’re going to talk about in a future episode okay so we do need to create a function for checking is input empty inside our linore controller so that is important so going inside the loginor controller I’m just going to copy paste the function here so you can just copy paste it as well uh it’s very basic we just go in and create a function and we call it is input empty and then we just submit a username and a password not an email this time around and we just go inside our function and just do a if condition to check if username and password are empty so with these functions here we now have a very basic example of checking for different types of errors that might occur inside our login form again if you want to add more you can do that uh for this tutorial here we’re just going to do these three for now so going back inside the login form we can actually make some adjustments so right now we do actually have this is input empty but I do want to make sure we delete the email and again this function here is something that we can actually grab because it’s inside our login controller which we did require right above it so we do have access to this function and then below here we do actually want to run our model function because we do want to actually grab any sort of data that might be inside the database where the username is equal to this particular username so what I can actually do here here is I can create a variable and I’m going to call this one result and I’m going to set it equal to getor user which is the function we have inside our model so inside our model file here where we actually go in and we qu the database and grab a user if it does exist so we’re going to grab a user and we do also want to make sure we submit our database connection as well as our username so we can actually go and say we have the username up here which was the second parameter by the way so we do need to go in front and also grab our PDO connection again the PDO connection is inside our database file which is linked up here so we can actually grab this one directly and just like that we now have a variable that has the results from the database query where we go in and actually try to grab the user so now we can use this in order to complete our next two error handlers which we did create inside our controller here so we do want to check if the username is wrong and we do also want to check if our password is wrong so after grabbing the data we can run a simple if condition just like up here when it came to the empty inputs and we can check if our username is wrong by simply running this function that we just created inside our controller and then we pass in our results that we just created in order to check if we did have any results from the database if we did not then we want to return a error called loginor Incorrect and incorrect login info and all this does is that it creates a error message that we can grab once we do actually get back to the login form if there was any sort of error messages and then we can display those errors inside the login form so the next one I’m going to check for here is if the passwords actually do match and again we did create a function for checking that so what I can do here is I can go below and I can run another if condition but this time I do want to go in and check if the username is not wrong so if it is actually a user that exists inside the database but also if the password is incorrect and you’re going to notice inside our is password wrong we just pass in our password which was submitted by the user right up here and we also pass in the password from inside our database query so the one we grabbed inside variable result which has a column name as password so with these error handlers here we basically just go in and check if the username exists and if you do actually have the passwords matching inside our database so with that we can now go back down inside our if condition that checks for any sort of Errors inside the errors array and I’m actually going to go and delete our session variable called sign upore data and also the actual array called sign up data and the reason for that is I do think that when a person types something incorrect inside a login form I don’t think that we should retype what they submitted into the login form I think they have to start completely over with the username and a password so it’s a little bit different than the signup form where if they wrote One Thing incorrect but the email was correct and everything else then we just you know we don’t want them to retype everything again cuz a sign up phone can be lengthy but in this case here I do think that that they should just type everything again and again just to go over what exactly this code does because you may not remember it from the last episode The require once where you grab the config unor session basically just goes in and grabs our session config file which goes in and updates the session ID once in a while inside the cookie inside your browser session security thing so to speak so inside our config session you can see that we you know we set out some parameters and you know we update the cookie every once in a while every 30 minutes so um so so now what we need to do here is a security thing which is that whenever you have any sort of changes happening when you lck in a user inside a website or something else that you know maybe some uh roles have changed inside the the website what you want to do is you want to make sure you always update the session ID cookie again when you make these changes so when you log a user into the website then update the session ID cookie because that is just a good habit to have so you don’t have to wait every 30 minutes you know from inside the config file just do it whenever something changes inside the website but now we’re going to do this in a slightly different way because if I were to go back inside my config file you can see that the way we did it before is by running a session regenerate ID which is how we can take the current session ID that is inside our website and we then regenerate it because if someone were to grab the session ID and stole it from us then we can regenerate it to change it so now it’s no longer usable but something we can actually when it comes to a login system is we can actually grab our users ID and combine that with our session ID from inside our session and this is not something you have to do this is something we’re going to do together in this episode here just so I can show you how to do it uh but essentially there comes a couple of benefits to having the users ID inside the session ID for example because you can associate some data together with the actual user that is using a particular session ID um so there is some benefits to it and again I’m just going to show you how to do it and then you can determine whether or not you want to use it or not again it’s just an exercise to show you some different things so what we’re going to do is we’re going to go back inside our login. in phsp file and right below where we check for these error messages the next thing I want to do is I do want to create a new variable I’m going to call this one new session ID make sure we spell that correctly and I’m going to set it equal to a function that I do think I’ve mentioned before in the previous episode which is called called session uncore creatore ID so this is not a session uncore regenerate ID this is a session _ create ID which is a little bit different so now this will actually create a entirely new ID instead of just regenerating the existing ID we have current inside the website and what we can do then is we can actually append our users ID together with this newly created ID that we just created so if I were to go below here I can go ahead and say I want to create a variable called session ID and I’m going to set it equal to our new session ID that we just created up here and then I’m just simply going to append a ID that we got from our variable results a little bit further up inside our code because we did actually grab the users’s data from inside the database so if we were to grab the variable results go down I can actually append the ID of the user together with our session ID so again we’re creating a new session ID which is just for security just like we regenerate a new session ID we now just create a new one and then we just add our users ID together with our session ID using a underscore just so we can separate those uh the ID from the users ID and now all we have to do is just go below here and say we want to run a session ID function which goes in and actually sets our session ID equal to a ID that we give it inside the parentheses here so this case we can go in and tell it to set our session ID equal to what we just created up here with the users ID so again a small trick here just to you know create a new session ID inside our website using also the users’s ID from the user we tried to log in inside our database here and there is something we have to do here as well in regards to this because right now we do have our users ID together with our session ID but what happens in 30 minutes when I go inside the config session code and it automatically updates the session ID in 30 minutes well when it does that we no longer have the users ID part of our session ID because it is just regenerating the the session ID without appending the users’s ID in 30 minutes so that is something we have to change inside our config file so what we need to do here is we do actually need to check if the user is currently logged in or if they’re not logged into the website because if they are logged into the website side then I do want to make sure that when we regenerate the session ID that we do so using the user’s current ID so inside our if condition at the bottom here where we go in and update this every 30 minutes I do want to create another if condition so again now we’re going to start to have some nesting going on but I think it’s okay for now and I’m simply going to go inside my parentheses and check if we currently have a user locked into the website by checking if we have a current session variable that is equal to user on the _ ID or at least that is named user uncore ID so by going in here we can say we have a variable underscore session which is a super Global we have talked about this one plenty of times by now so we go in and we check if we have a user ID which we haven’t created yet by the way this is something we will create once we actually log the user in instead of login.in phsp file just know for now that we will have a session variable called user ID when the user is logged in okay then I’m going to create a else condition so we’re going to say else and inside the else condition we want to run the code that is going to get run when the user is not logged into the website so that would actually be the code that we have here already so it would to copy paste that inside my else condition this is now getting run if the user is not logged into the website but what if the user is logged into the website because now we need to change things a little bit here all we have to do is we need to go inside the if condition paste in the same code again but instead of running I’ll regenerate on _ session ID which is a function that we created down here we’re going to create a new function that is going to go in and append the users’s ID once you do actually regenerate the ID inside once we’re logged into the website so all we need to do here is create a new function called regenerate unor session idore loged in and the same thing down here for regenerate uncore session ID logged in then we scroll down inside our function here and just copy paste it because we do need to have another function for when we’re logged in so I’m going to change the name of one of these to logged in and we’re going to keep the same code as we have in here because we do still need to use this code uh we do need to make sure we write true inside these parentheses here though inside both functions because we forgot to do that in the last episode so after regenerating the ID we’re going to do the exact same thing as we did inside our login that in the PHP file so I’m just going to go in I’m going to go down here where we actually generated the ID using our ID from the user so I’m going to copy that go back in paste it in but we do need to change one thing here which is that right now we don’t have a result called ID because that is specific to that particular file in there uh but we do have a session variable that does exist called user ID if the user is logged in so we can actually take that one go down here create a new variable we can call this one user ID and set it equal to our session variable called user ID and then we can use that ID instead of our result from the database because like I said it’s inside that other file so we can’t access this variable specifically uh but we can access a user ID from our session variable if we’re logged into the website so again just to recap here we’re going in regenerating the ID which we technically don’t have to we could delete this if we wanted to we’re grabbing the user ID from our session variable if we’re logged in then we’re going down and creating a new session ID by using this session create ID then we’re going in and saying that we want to set a session ID equal to the new session ID we just created and the user ID from the user and then we’re just simply going in and saying that we want to set the session ID equal to this session ID up here and then we update the time for when we last regenerated the session ID because now it needs to wait 30 minutes until it will automatically go in and again regenerate this using the users ID if we’re logged in this may be the most confusing part of this video by the way again just know that we’re going inside the website and updating the session ID by adding the users ID with it as well to create some faint new things we can do potentially if we wanted to do that in the future uh we’re not going to do anything with it in this video here it’s just to show you that you can do it so inside our login. in.php file at this point here we do actually have a user that tried to sign up with a username that exists inside the database and also a password that matches with the password inside the database so what we can do is we can actually sign up the user inside our website the way we’re going to do that is first of all by setting the appropriate session variables so we’re going to say we have a session variable and we’re going to call this one user uncore ID which by the way inside the config uncore session we are checking for if the user locked in into the website and we’re going to set this one equal to the ID from inside our database so we can actually go ahead ahead and set this one equal to our result from our database quy and the ID column from inside the database which is the ID of this particular user here so I can copy paste this down and then we might also include maybe the username so the user undor username just so we have it available to us so we don’t have to quote the database every single time if I just want to graph the username of the user uh so with this we can set it equal to username because that is the name of our database column but now I do want to do something else here because we might actually take this username and print it out in our website somewhere we might try to Echo it out because I want to show the user who they’re logged in as right now inside the website uh so we do need to make sure we do some security so we’re going to use HTML special characters and make sure we run a sanitation of variable result just to make sure everything has been sanitized to avoid any sort of potential crossy scripting that might be happening inside the website here and with that I do want to do one more thing which is to go in and actually reset the timer for when we have to update our session ID because we just did so so why not go in and just reset the timer for that so I’m going to go inside my config unor session and I’m just simply going to go down and grab our session variable called last regeneration which is equal to time copy that entire lineer code go back in and right below here where we actually to create these session variables I’m just going to go and create that one as well by setting it equal to the current time so now we reset the time so that in 30 minutes it’s going to update itself again and just like that we now have a login system so we can actually go below here create a header function to send the user back to the front page with a login equal to success message uh we can also go ahead and close off these statements and our connection because the prepared statement and the connection it does get automatically closed but it is just a good habit best practice so to speak to actually close it manually inside your code uh so we’re going to go and do that as well well so right below the header function I’m just going to say we want to close off the PDO and the prepared statement and the last thing we’re going to do is to create a die function essentially just terminating the script at this point here so now we have a login system that should be working inside our website but let’s actually go back inside our index page and make sure if we have any sort of error messages related to the login form for example submitting the wrong password or a username that doesn’t exist inside the database then we want to Output that error message inside our form or at least below the form inside our front page so going below the login form I’m going to go down and open up my PHP tags and inside here we’re going to refer to a function called check linore errors and this is a function we haven’t created yet because this is going to actually output something inside the website which means that it needs to go inside our view so going inside our loginor view you can see that right now we have nothing so what I’m going to do to begin with here is open up the PHP tags and open up the strict mode and all that U so I’m going to go inside one of the other ones that I have here and just kind of open up what we have here you know so we have the beginning of the PHP tag we have the declare strict types and then we’re going to create the function that we just had inside our index page I’m just going to go and drag this over so we can actually see it and I’m going to copy the function name inside the index page go back inside my loginor view and say I want to create a function that has a name set to check unor linore for errors so inside this function we’re going to run a if condition and I want to check if we have a certain session variable set currently inside the website so if we have a is set parenthesis and we have a session variable that is called error uncore login so errors uncore login and this is something we actually do need to change inside our login. in PSP file so if we would to copy the name here go inside the login the PHP and scroll up to our error messages you can see that right now we’re creating a session variable called errors unor signup because we copy pasted this from our signup form so we do need to make sure we’re go and change that to errors unor login and then if we have any sort of error messages then I want to go inside this if condition and simply create a variable called erros and set it equal to the session variable that has all the errow messages inside of it so we’re just going to set equal to variable uncore session errors uncore lugin because by doing that we can now go below here and we can actually unset the session variable because remember if there’s any sort of information inside our session variables that is no longer needed then we need to make sure we unset it you know to clean it out so in between here I’m just going to go and Echo out a break just to get some distance between our form and the error message that we’re going to print out and then I’m going to run a for each Loop because we do actually want to go in and make sure that we take all the error messages inside our variable errors and print print them out below each other inside our login form or below the login form just like we did when it came to the signup form so inside my for each Loop I’m simply going to Echo out a paragraph that has a class set inside of it which I did style inside my stylesheet and I’m just simply going to print out a error so I’m going to go inside our parameters up here for the for each Loop and I’m going to say that I have a errors array and I want to refer to error whenever I refer to one of these errors inside the array and then because I refer to to error in between the paragraph down here we just simply spit out the error that we might be getting inside our form so with that we now just need to create a success message if we did actually not have any sort of Errors so going below here I can create a else if and I’m just simply going to check if we had any sort of success message inside the URL when we did send the user back with a you know lockin success message so we’re going to use a get method in order to grab a login and we’re going to check if it is equal to success and and again just to show you where this happens if we were to go back inside our login. in. PSP file at the bottom here when we do access send the user back you can see that inside the URL we have lugin equal to success and that is what we’re checking for here and now we need to do one more thing before we can actually test this out because right now inside the index page we are referring to a check unor linore errors which is inside our view file uh but we did not actually link to our view file at the top here so we need to go up here and say we have a lock inore view. in the PHP file so now we do actually have access to this function in here so if we were to go inside our website and let’s go ahead and sign up as a new user because I don’t actually remember the password from the user we created in last episode so let’s just go ahead and go in here and say we have John do and we’re going to say we have a password that is one 12 three which is most likely what I used in the last episode as well so John at gmail.com I’m just going to go and sign up this new user and then you can see oh sign up success and now we can actually go inside our login form and we can test this out so if we were to say John do with capitalized d and capitalized J and then one two three log in then you can see we get login success if I were to try and go in and actually log in with something that does not exist inside the database let’s actually go and leave this one empty you can see oh fill in all Fields incorrect login info uh if we were to pick something in both Fields then you can see we get incorrect login info because saf does not exist inside our database as a user if I were to use John Doe John do but use a incorrect password then you can see we get incorrect login info because this was not the correct password so everything is working exactly like intended but now a question that people may have is okay so we have this login system but how do we change content inside the website once we’re logged in cuz that is important to do too before we do that let’s actually go and create a log out button because I do want to be able to lock out the user as well because right now we’re just logging in as one user and then trying to lock in as another user but we’re not actually locking out at any point so going inside the index page here I’m going to create a new form I’m just going to call this one log out so I’m going to copy paste this one and let’s go ahead and put this one at the bottom so we’re going to say log out like so and we’re going to refer to a log out. in the PHP file and we’re not going to have any sort of inputs in here we’re just going to have a logout button then I’m going to go in and actually create a new file inside my includes folder so I’m going to say new file call it log out. in.php and inside this file here we’re just going to open up our PHP tags go down and say we want to create a session uncore start because we do want to start a session in order to actually destroy it and then below we’re going to go and say session uncore unset and then we’re going to say session uncore destroy and then we can actually send the user back to the front page so we can actually copy paste that from let’s say I’ll login. in.php file so we want to go down to the bottom here we have a header that sends the user back and we have a die uh function so we can copy those and paste those in so if I were to go inside my website refresh everything you can see we have a log out button so if we were to actually log in using John do one two 3 log in then you can see we are logged in as John do well you can’t actually see it cuz you can’t see if we’re logged in or not uh but we do get a login success message and then if I want to I can loog out down here and then I will be locked out again so now the question is how do we change content inside the website when we’re locked in when we’re not logged in you know because we need to change content because that’s the whole point right we create a login system so we can log a user in and then change content inside the website so they might have a profile page or something um so the way we can do that is if I were to go back inside our view for the login system is I’m actually going to go and create a function to print out the username when we’re logged in so we can actually see the username inside the website and it says you are logged in as and then the name of the username so I’m going to create a basic function I’m just going to copy paste it here which is called output username and then inside we have a if condition that simply goes in and checks or we currently logged in by checking if we have a user ID because if that exists that means we’re logged into to the website and if we’re logged in we’re just simply going to go in and output you are logged in as and then we’re going to grab the username from inside our session variable again that’s why we wanted to set that as a session variable when we did actually log in previously and if we’re not logged in we’re just simply going to say you are not logged in and then we can use this function we can copy it go inside our index page and just simply output it somewhere maybe above our login form so we can say we have a let’s create a H3 and we’re going to go and say we want to have a PHP tag opening and closing in here and then we’re just simply going to run this function here so anytime you want to change anything inside the website if you’re logged into the website again all you have to do is run a if condition that checks if currently we have a session variable that is called user ID and that is all you need to check for if that exist then change the content Again by echoing something out or creating some HTML or something um so if I were to go back inside the website you can now see that when I refresh it says you are not logged in cuzz we’re not logged in but if if we were to go down here and log in as John Doe 1 2 3 log in then you can see we get you are logged in as John Doe and again if I were to go down to the bottom here log out then you can see oh you are not logged in cuz we destroyed all the session data with the session variable and now we’re no longer logged into the website and we can do the same thing when it comes to the forms so if we were to go in here and say you know what let’s go inside our view and just copy this if condition go inside our index page and let’s say we only want to see the login form if we are currently not logged into the website because there’s no need to have a login form if we’re already logged in right so if we were to go in here we can go ahe and open up the PHP tags and close it off again we’re going to paste in the if condition here and then we can just go in and actually include the form inside the if condition for when we’re not logged in so what we can do here is we can say okay so if we are not currently logged in and instead of echoing out you are logged in as and then the username we can just go in and we can copy paste the form and paste it inside our condition here so I’m going to copy the form delete it go inside and I’m just going to go and close off my uh PHP tags here just because it makes a little bit easier so again opening and closing the PHP tags wrapped around the closing bracket and also opening and closing it wrapped around the first if condition line of code here because that allow for us to go in and paste in HTML and still have it be part of the PHP again this is PHP syntax good practices 101 so instead of you know putting this in as a string by echoing all of this out can just write HTML code directly Inside by simply opening and closing the closing bracket and the same thing for the opening bracket so if I were to go in here and do this then you can see that if I were to go inside the website refresh it right now we’re not logged into the website so we can see the form but if we were to go in and log in as John do 1 2 3 then you can see that oh okay the login form disappeared cuz we no longer need to see it and that is how you can simply go inside a website and change content based on if you’re logged in or if you’re not logged in and you can do the same thing for the sign up form that could also disappear by the way and the same thing for the log out form maybe that should not be there when you’re not logged into the website because it doesn’t make any sort of sense so with that I hope you enjoyed this little episode on how to create a login system and I’ll see you guys in the next video [Music]

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog