https://github.com/rasbeetech/javascript_practice
https://github.com/rasbeetech/javascript_practice
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rasbeetech/javascript_practice
- Owner: RasbeeTech
- Created: 2021-05-19T19:38:15.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-25T04:18:29.000Z (about 5 years ago)
- Last Synced: 2025-10-20T07:50:49.414Z (8 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# javascript_practice
## Modules:
### LoopingTriangle.js:
The objective is to create a loop that makes seven calls to console.log to output a triagle shape.
### FizzBuzz.js:
The purpose of this program is to print to console, numbers 1 to 100.
For numbers divisible by 3, 'Fizz' will be printed instead.
For numbers divisible by 5, 'Buzz' will be printed instead.
For numbers divisible by 3 and 5, 'FizzBuzz' will be printed instead.
### ChessBoard.js:
The chessboard program creates a chessboard like grid.
### Minimum.js:
min(Int_1, Int_2) : A function that returns the smaller of two given integers.
### Recursion.js:
isEven(Int): A recursive function that determines if an integer is even.
### BeanCounting.js:
countBs(String) : A function to count the number of "B"s in a given string.
countChar(String, String) : A function that counts the occurences of a specified character in string.