Skip to content

This repository holds my JS made mini projects.

License

Notifications You must be signed in to change notification settings

aravarulmozhi/JS-Mini-Projects

 
 

Repository files navigation

JS - Mini Projects

This repository holds my JS made mini projects.

  1. Password Generator + Strength Checker | Codepen
  • It generates random string of length 8 from a character pool of alphanumerics + symbols. As for the strength checker, it checks if the password has Lowecase letters ( a-z ), Uppercase Letters ( A-Z ), Numbers ( 0-9 ) and Symbols.
  1. Clock Using P5.js | Codepen
  • Using P5.js I generated clock hand and mapped them to rotate acc. to sec, min, hour.
  1. Particle System Using P5.js | Codepen
  • I've used Object Oriented Js mixed with P5.js library. Each particle is an object itself and in collectively is generated randomly at random location with random colors. The strokes only appear if two particle are 75 units aparts in distance.
  1. Factorial Generator | Codepen
  • It was so basic that it needs no explanation.
  1. Fibonacci Sequence Generator | Codepen
  • It essentially takes a number from the user upto which the fibonacci sequence should run and it evaluates the values.
  1. Linear Array Sorting | Codepen
  • Setting the first element of the array as max and then comparing it with rest of elements, and repeating the same process till the array has an order.
  1. Pascal Triangle Visualized | Codepen
  • Pascal's triangle is a triangular array of the binomial coefficients and at the same it will be shown that the sum of the entries in the n-th diagonal of Pascal's triangle is equal to the n-th Fibonacci number for all positive integers n.
  1. Just Another Todo App | Codepen
  • The app let's the user add tasks, edit tasks and delete tasks.
  1. Prime Generator | Codepen
  • A prime number is a natural number that is divisible by 1 and itself. This demo let's you input a number and it will either generate prime numbers upto that number or tells you if it's a prime or not.
  1. Matrix Multiplication | Codepen
  • The user has to first input size for both matrices and then the elements of each matrix can be entered which is validated against the multiple of the size given for each matrix respectively. Then simple using three nested loops it performs matrix multiplication and stores the resultant matrix.
  1. Fractional Knapsack using Greedy Approach | Codepen
  • Fractional Knapsack Problem says that, Given a knapsack of capacity W, we have a set of items with weight w(i) and profit(i), we have to maximize the profit without exceeding the knapsack capacity and we can also take the fraction of an item.

About

This repository holds my JS made mini projects.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 46.0%
  • JavaScript 30.3%
  • HTML 23.7%