πŸ–¨οΈ COSMOS PRINTER
🚚 Shipping from 12 USD
πŸ’° DEALS OF THE DAY

Control Flow

Introduction

Control flow refers to the order in which statements and instructions are executed in a program. MagiScript supports several control flow statements that allow you to control the flow of your program.

If/Else Statement

The if/else statement is used to perform different actions based on different conditions. The syntax is as follows:

				
					if (condition) {
  // code to be executed if the condition is true
} else {
  // code to be executed if the condition is false
}
				
			

Here, theΒ conditionΒ is evaluated, and if it is true, the code inside the first block is executed. If the condition is false, the code inside the second block is executed.

You can also use multipleΒ else ifΒ statements to test for additional conditions:

				
					if (condition1) {
  // code to be executed if condition1 is true
} else
if (condition2) {
  // code to be executed if condition2 is true
} else {
  // code to be executed if neither condition1 nor condition2 is true
}
				
			

While Loop

The while loop is used to execute a block of code repeatedly as long as a certain condition is true. The syntax is as follows:

				
					while (condition) {
  // code to be executed repeatedly while the condition is true
}
				
			

Here, theΒ conditionΒ is evaluated before each iteration of the loop, and if it is true, the code inside the block is executed. This continues until the condition becomes false.

do..while Loop

The do..while loop is similar to the while loop, but the condition is checked at the end of each iteration instead of the beginning. This means that the block of code is always executed at least once. The syntax is as follows:

				
					do {
  // code to be executed at least once, and
  // repeatedly as long as the condition is true
} while (condition);
				
			

For Loop

The for loop is used to execute a block of code a specific number of times. The syntax is as follows:

				
					for (initialization; condition; update) {
  // code to be executed repeatedly while the condition is true
}
				
			

Here the initialization is executed before the loop starts, the conditionΒ is checked before each iteration, and theΒ updateΒ is executed after each iteration. The loop continues until the condition becomes false.

Typically for loops are used to count from a number until a number, like this (will print the numbers from 1 to 10):

				
					for (let i = 1; i <= 10; i++) {
  console.log(i);
}
				
			

Conclusion

Control flow statements are essential for any programming language, and MagiScript provides the most used statements to help you control the flow of your program. By using if/else statements, while and do..while loops, and for loops, you can create complex programs that perform a variety of tasks.

General

πŸ“ƒ First Steps

MagiScript Editor

πŸ“ƒ Basics

πŸ“ƒ Keyboard Shortcuts

πŸ“ƒ Running Your First Program

πŸ“ƒ App Store

πŸ“ƒ Atom Settings (Editor)

πŸ“ƒ Debugging Techniques

Examples

πŸ“ƒ Atom Time

🎞️ Time Practice

πŸ“ƒ Atom Pi (Pi Revelations)

πŸ“ƒ Atom Drum

🎞️ Atom Stack

πŸ“ƒ Atom Square

πŸ“ƒ Atom Level

πŸ“ƒ Atom THMPR

πŸ“ƒ Poker Hands

πŸ“ƒ Keyboard Numeric

πŸ“ƒ Keyboard NOKIA

πŸ“ƒ Keyboard Cursor

πŸ“ƒ Keyboard Media

πŸ“ƒ Keyboard Custom

Input/Output

πŸ“ƒ Buttons

πŸ“ƒ Vibration Motor

πŸ“ƒ RGB LED

πŸ“ƒ Devices

πŸ“ƒ PeekSmith

πŸ“ƒ SB Watch

πŸ“ƒ Fossil Watch

πŸ“ƒ PeriPage Printer

πŸ“ƒ Cosmos Printer

πŸ“ƒ Teleport

πŸ“ƒ Bluetooth Keyboard

πŸ“ƒ Bluetooth Mouse

πŸ“ƒ Timers

πŸ“ƒ Database

πŸ“ƒ Events

πŸ“ƒ System (exit, sleep, rand)

πŸ“ƒ Objects (card, time)

Language

πŸ“ƒ Summary

πŸ“ƒ Comments

πŸ“ƒ Variable Declarations

πŸ“ƒ Operators

πŸ“ƒ Control Flow

πŸ“ƒ Functions

πŸ“ƒ Numbers

πŸ“ƒ Strings

πŸ“ƒ Arrays

πŸ“ƒ Objects

πŸ“ƒ Uint8Array