https://github.com/imranhsayed/javascript-workshop
:fire: JavaScript Beginner to Advanced Workshop
https://github.com/imranhsayed/javascript-workshop
Last synced: 8 months ago
JSON representation
:fire: JavaScript Beginner to Advanced Workshop
- Host: GitHub
- URL: https://github.com/imranhsayed/javascript-workshop
- Owner: imranhsayed
- Created: 2020-02-09T20:51:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-01T18:20:22.000Z (almost 6 years ago)
- Last Synced: 2024-12-28T09:04:11.290Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 92.7 MB
- Stars: 13
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript Workshop :fire:
JavaScript Concepts.
## JavaScript game
### [LIVE DEMO](https://codeytek.com/javascript-workshop/)

## Optimum game setting for max fun.
```javascript
this.ballCount = 1000; // No of balls in the game.
this.dropBallSpeed = 0.5; // At what speed the balls should drop.
this.dropBallFrequency = 500; // At what intervals next ball should drop after the previous one.
this.shootEvent = 'mouseover'; // can choose what you like, for tutorial 'click' is used, but mouseover is better.
```