• If ... else command in JavaScriptIf ... else command in JavaScript
    While writing a program, there may be a situation when you need to follow one of a set of choices. In this case, you need to use conditional commands that allow your program to
  • Switch Case command in JavaScriptSwitch Case command in JavaScript
    You can use multiple if ... else ... if statements as in the previous chapter to make a multiple choice branch. However, it is always not the best solution, especially when all
  • The while loop in JavaScriptThe while loop in JavaScript
    While writing a program, you may encounter a situation where you need to perform an iterative action. In these situations, you will need to write loop commands to reduce the
  • For ... loop in JavaScriptFor ... loop in JavaScript
    The for ... in loop is used to iterate over the properties of an object. When we haven't discussed the object yet, you may not feel comfortable with this loop. But once you
  • Loop control in JavaScriptLoop control in JavaScript
    JavaScript provides high control to handle loop commands and switch commands. There may be a situation when you need to exit the loop without having to go to its endpoint. There
  • JavaScript functionsJavaScript functions
    A function is a group of reusable code that can be called anywhere in your program. This makes it unnecessary to write the same code over and over again. It helps programmers
  • Event (Event) in JavaScriptEvent (Event) in JavaScript
    JavaScript interaction with HMTL is handled through events that occur when the user or browser manipulates a page.
  • Page navigation (Redirect) in JavaScriptPage navigation (Redirect) in JavaScript
    You may have a situation when you click on a URL to go to page X but you are directed to page Y. It happens because Page Redirection - Redirects the page. This concept is
  • Dialogs - Alert, Prompt, Confirmation in JavaScriptDialogs - Alert, Prompt, Confirmation in JavaScript
    JavaScript supports 3 important dialog types. These dialogs can be used to notify, confirm input, or receive input from users. Below we discuss each type of dialog box.
  • Void keywords in JavaScriptVoid keywords in JavaScript
    void is an important keyword in JavaScript that can be used as a unary operator before its single operand, which can be in any type. This operator defines an expression to be
  • Print pages in JavaScriptPrint pages in JavaScript
    Many times you will love to put a button on your website to print the content of that page through a printer. JavaScript helps you perform this function by using the print
  • Objects in JavaScriptObjects in JavaScript
    JavaScript is an Object Oriented Programming language (Object Oriented Programming). A Program Language can be called object-oriented if it provides four basic capabilities to the
  • Tutorial for creating slideshows in JavaScript with 3 easy stepsTutorial for creating slideshows in JavaScript with 3 easy steps
    If you are studying or interested in programming, do not skip the article below to guide how to create slideshows in Java Script with 3 simple steps.
  • 7 Framework JavaScript for mobile application development7 Framework JavaScript for mobile application development
    If you want to start creating mobile applications, there are three main languages ​​to choose from: Java for Android, Swift applications for iOS or JavaScript applications for
  • Introduction to 2D Array - 2-dimensional array in JavaScriptIntroduction to 2D Array - 2-dimensional array in JavaScript
    In the following article, we will introduce and show you some basic operations to create and access 2-dimensional arrays - 2D array in JavaScript. Essentially, a 2-dimensional
  • 12 extremely useful tricks for JavaScript programmers12 extremely useful tricks for JavaScript programmers
    Let's TipsMake.com learn 12 extremely useful tips for JavaScript programmers in this article!
  • Arrays and objects in JavaScript are like stories and newspapers!Arrays and objects in JavaScript are like stories and newspapers!
    Why say arrays and objects in JavaScript are like stories and newspapers. Let's TipsMake.com review each type in this article offline!
  • PHP functionsPHP functions
    PHP functions are similar to other programming languages. A function is a piece of code that takes one or more inputs in the parameter template, and performs some processing and
  • Exception handling and error (Error & Exception Handling)Exception handling and error (Error & Exception Handling)
    Error handling is the process of catching errors created by your program and then taking the appropriate actions. If you handle errors incorrectly, it can lead to unexpected
  • PHP & AJAXPHP & AJAX
    AJAX stands for Asynchronous JavaScript and XML. AJAX is a new technique for creating better, faster, and more interactive web applications with the help of XML, HTML, CSS, and