Welcome to my Website!

This is a paragraph! Here's how you make a link: Neocities.

Here's how you can make bold and italic text.

Here's how you can add an image:

Here's how to make a list:

To learn more HTML/CSS, check out these tutorials!

/*function calculateRectangleArea(length, width) { return length * width; }*/ //Example usage: /*console.log(calculateRectangleArea(5, 4)); //Output: 20 function checkEvenOrOdd(number) { if (number % 2 === 0) { return "Even"; } else { return "Odd"; } } //Example usage: console.log(checkEvenOrOdd(7));//Output: Odd function reverseString(str) { return str.split("")reverse().join(*"); } //Example usage: console.log(reverseString("hello"));//Output: "olleh" function factorial(n) { if (n === 0|| n === 1) { return 1 ; } else { return n *factorial(n-1); } } //Example usage: console.log(factorial(5));//Output: 120(5!=5*4*3*2*1=120) function isPalindrome(str) { const reversedStr=str.split("").reverse().join(""); return str=== reversedStr; } //Example usage: console.log(isPalindrome("radar"));//Output: true console.log(isPalindrome("hello"));//Output:false