#JavaScript info cheat 10/9/25
	tools
		old rough way
			just use NotePad (or equivalent on your system) and a browser
		use Visual Studio Code (VSC)
			Installation Doc
			Note:  If you have already installed it for another programming language such as Python, skip to the section "Install the Live Server inside VSC then try some JavaScript coding!"
	templates
		for sample code see JavaScript Template Library
		a basic summary of what's in there
			files that start with "JavaScript01" - basic html/css/functions
			files that start with "JavaScript02" - basic programming
			files that start with "JavaScript03" - geometric shapes
			files that start with "JavaScript04" - the sample game
	references
		you can try googling things like - "how do you do this in JavaScript?"
		these sites are pretty good
			also has html, JavaScript, etc tabs at top - https://www.w3schools.com/js/default.asp
			when you ask questions you are more likely to get a hit on this web site - https://stackoverflow.com/questions
	
	for JavaScript class (from Quiet Blue)
		just had index.html with state trivia game
		go thru the pb.com/js and see what smaller ones I can use an
		j0101 - small file to change size of text
		j0104 - ditto but use function to change verbiage
		j0105 - ditto but use js file, will not work without it
		j0201 - use function to do arithmetic with alert box
		j0202 - use function to do comparison with input/output html
		j0203 - use function to do switch stmt and looping
		j0299 is combo of the previous ones
		j0301 - array of circles
		j0302 - 1 circle only
		j0303 - circle with css not jscript
		j0399 - j0302 with j031 commented out
		j0499 - circle movement inside box with onclick stopping it
		j04game - full game 
		besides the j04game, the other files are pretty relatively small