Skip to main content
Where To Set Sail

First Post

New Beginnings #

i cannot believe i decided to build this while im still stuck on my Final Project.

A possum parent and two possum kids hanging from the iconic red balloon

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');

First post