JavaScript Projects

A collection of my JavaScript coding projects.

Sum Calculator

A dynamic tool that calculates the sum of numbers entered by the user. Demonstrates understanding of loops and basic arithmetic functions.

Key Function: printSum()

Output Triangle

Generates a visual triangle pattern in the console or DOM based on user input loops. Focuses on nested loops and DOM manipulation.

Key Function: drawTriangle()

Password Strength

Analyzes a user's password and returns feedback on its strength based on length and character variety. Utilizes string methods and conditional logic.

Key Function: isStrongPassword()

Triangle Geometry

Calculates the perimeter and area of a triangle given side lengths. Showcases the implementation of mathematical formulas in JavaScript functions.

Key Function: triangleArea()