javascript-workshop

JavaScript Beginner to Advanced Workshop

Stars
13

JavaScript Workshop 🔥

JavaScript Concepts.

JavaScript game

LIVE DEMO

Optimum game setting for max fun.

		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.