Check out the playlist of web project tutorials here! ru-vid.com/group/PLnKe36F30Y4bLhA-st9sC4ZthyV7nsL2Q Got a tutorial suggestion? Let me know down below!
If you enjoyed the video, don't forget to like, subscribe, and share! :) how to code SUDOKU: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-S4uRtTb8U-U.html how to code CONNECT 4: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-4ARsthVnCTg.html how to code 2048: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-XM2n1gu4530.html Code: github.com/ImKennyYip/Wordle
This is a fantastic tutorial! You don't ramble, you explain each step well, and you show mistakes and how to solve them. High quality AV too. Thank you for making this. Now if you'll excuse me I'm off to raid your uploads for mooooore input.
As a person who has interest but has almost no knowledge about programming, I think this video is really helpful... (specially for starters). Got a question tho, can I upload this wordle game online and share it with my friends? If yes, then how?
Great vids man. I've seen a few Tetris games online, HTML, Javascript. Could you do a vid on The New Tetris? It's the N64 version that has a twist. Like the normal Tetris, but when you have a block of 4 x 4 of the same tiles, it creates a Gold block, and when you make a 4 x 4 of multi blocks it creates a Silver block. It also has an added feature of storing a block that you can swap if the tiles that are appearing are not in a great order, and also a ghost block of where the current block will land. A real for test for anyone that one i'd think.
literally amazing tutorial, its so simple theres just 2 issues that i found, one of them i fixed myself, the other im clueless 1: you can hit enter at any point and submit any answer i fixed it by inserting if(col = width) {... directly after the else if(e.code === "Enter") { 2. if there is a letter twice that is correct in one spot, it will show green for the correct spot, but still yellow for the incorrect spot, making it seem like there are two total of that letter in the word couldnt find a fix for that
Hello sir Actually i am aaa beginner And i start my coding with your video where you show us how to make a wordle game But sir i. Follow same procedure of your's and now i am facing problem here when i Complete till second step Css i am not getting green block neither in the side nor in the middle Suggest me what to do??
Hello, im stuck in the middle of this tuto, when i use my keyboard to add the letters, like in the video (apple) (at 27.15) and javascript console says : wordle.js:40 Uncaught TypeError: Cannot read properties of null (reading 'innerText') at HTMLDocument. (wordle.js:40:25) Do you know what could be wrong at this point ? 🙂
Not sure but it could be a typo or you missed something somewhere. I have the completed code linked in the video description if you want to compare. Also would help if you backtrack from line 40, it’s saying that you’re trying to access innerText on a variable that is null.
Hey, I'm trying to change it to be a 4 letter word instead of 5 letters. I changed the width to 4 but for some reason the draw board gets all messy and prints out the boxes all funky. Do I have to change anything else in the code?
@@KennyYipCoding yeah i watched it and Thanks, i was making nerdle clone and was stuck in this problem for 3+ hrs, your solution really helped me, ura life saver.
Hi, in that situation, you most likely missed a step or you had a typo somewhere. If you right-click and select "inspect" and go to the "console" tab, perhaps there will be an error? If you don't have a typo, maybe you forgot to add the event listener to each tile? If that doesn't work either, you can click on the link in the video description to see the completed code
Using "" when you know how to change the margin with css... I don't know if I should trust this man or not, bc it seems like he is just doing the same thing as that document I found did, but he decided to do the HTML part himself.