Debugging Techniques
Figure Out What's Happening?
We will cover some techniques for debugging your MagiScript code and identifying and fixing errors.
Building Code Step by Step
One of the best ways to identify and fix errors in your code is to build it step by step. This means writing small pieces of code, testing them, and then building on them gradually. This approach makes it easier to identify errors and narrow down where they might be occurring.
Understanding MagiScript Functions
It’s important to have a solid understanding of how MagiScript functions work. This includes understanding how to pass arguments to functions, how to use return values, and how to create and use variables.
Using console.log
Another way to figure out what’s happening in your MagiScript code is to use console.log. This function allows you to log any value in your mini-app and see it displayed in the browser. You can call console.log with many parameters, including numbers and strings. Here are some examples:
// Logging a string
console.log("Hello, world!");
// Logging a number
console.log(42);
// Logging multiple values
console.log("The answer is", 42);
Disable Some Code
Another technique that can be helpful is commenting out parts of your code. Commenting out code involves adding special characters to your code that prevent it from being executed. This can be useful when you want to temporarily disable a part of your code in order to isolate a bug or test a theory about what might be causing an error. To comment out a piece of code in MagiScript, you can simply add two forward slashes (//) before the line or block of code that you want to disable.
console.log('This will run.'); // console.log('It will not run.');
Conclusion
Debugging your MagiScript code is an important part of the development process. By building your code step by step, understanding MagiScript functions, and using console.log to log values, you can identify and fix errors more easily. Remember to take your time and be patient β debugging can be a challenging but rewarding process.
Β
General
π First Steps
MagiScript Editor
π Basics
π Keyboard Shortcuts
π Running Your First Program
π App Store
π Debugging Techniques
Examples
π Atom Time
ποΈ Time Practice
π 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
π Operators
π Control Flow
π Functions
π Numbers
π Strings
π Arrays
π Objects
π Uint8Array