Skip to content

Latest commit

 

History

History

javascript-algorithms-and-data-structures

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

JavaScript Algorithms and Data Structure

Palindrome Checker

It checks if a string is a palindrome.

Source

Roman Numeral Converter

Converts a decimal number to its equivalent in roman numeral.

Source

Caesars Cipher

Changes a string, shifting characters based on their character code.

Source

Telephone Validator

Validates phone numbers (U.S. American) using regular expressions.

Source

Cash Register

Calculate the currency units based on the transaction change and available cash.

Source