JavaScript tutorials | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

JavaScript tutorials

Hello everyone. Could you guys please tell me where i can get good JavaScript tutorials i should follow and stick to.. I have currently completed the newboston, freeCodeCamp, Girrafe academy JS vids. But ifeel i need more other vids and resources to build on my JavaScript Please help

21st Dec 2018, 10:36 PM
Kamal Moha
Kamal Moha - avatar
3 Answers
21st Dec 2018, 11:27 PM
Gordon
Gordon - avatar
+ 1
: ``` import pygame # Initialize the game pygame.init() # Set up the game window screen = pygame.display.set_mode((800, 600)) pygame.display.set_caption("Puzzle Game") # Create the main game loop running = True while running: # Handle events for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Draw the game graphics screen.fill((255, 255, 255)) pygame.draw.rect(screen, (0, 0, 255), (100, 100, 50, 50)) # Update the display pygame.display.update() # Clean up the game pygame.quit() ``
27th May 2023, 12:14 AM
Steven Guerra
Steven Guerra - avatar
0
Strong Learning Sites with reading method: *tutorialspoint *w3schools Strong Learning Sites with film method: *udemy *lynda
21st Dec 2018, 11:26 PM
Ya Ali ben Abitaleb
Ya Ali ben Abitaleb - avatar