First Post
New Beginnings #
i cannot believe i decided to build this while im still stuck on my Final Project.
pretty cute image from the eleventy blog template. below are code samples that might come in handy next time i need to write a code
// this is a command
function myCommand() {
+ let counter = 0;
- let counter = 1;
counter++;
}
// Test with a line break above this line.
console.log('Test');
// this is a command
function myCommand() {
let counter = 0;
counter++;
}
// Test with a line break above this line.
console.log('Test');
- Next: Missing Out