+ 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
3 Réponses
+ 1
The complete JavaScript handbook:
https://www.sololearn.com/post/42894/?ref=app
Catalogs of 4 JavaScript tutorial series by 3 great sololearners, from beginner to advanced:
https://code.sololearn.com/WL8P7nb3aq6L/?ref=app
https://code.sololearn.com/WKFF4vOCr3mi/?ref=app
https://code.sololearn.com/WvIsS7qN8npX/?ref=app
https://code.sololearn.com/Wyr76080kKxS/?ref=app
PROGRAMMING RESOURCES by KrOW
https://code.sololearn.com/WaVusr8J1KvK/?ref=app
+ 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()
``
0
Strong Learning Sites with reading method:
*tutorialspoint
*w3schools
Strong Learning Sites with film method:
*udemy
*lynda