I have rarely encountered labeled statements ( or even the continue keyword ) in any of the thousands of JavaScript tutorials out there ... thanks for your effort !
@purvadicholkar83562 жыл бұрын
I learn more from one of your 30 minute videos' than in a whole 3 term course in grade 8. All hail the KING: Dcode!
@prizmic34482 жыл бұрын
You are literally the reason my programming assignment will be at least partially correct. Otherwise, I am clueless with js lol
@SvetaSveta-ms4hi3 жыл бұрын
Thanks a bunch! 🙏 Learned a lot.
@cryptoboy14613 жыл бұрын
You can't be called dumb you are very smart!
@renatajosipovic2 жыл бұрын
It was very helpful, thanks!😊
@burgasHoH3 жыл бұрын
Great content and explanation sir as per usual
@sbasalan3 жыл бұрын
I think you add that content of html 00:01:51 first with automatic something (auto-generated), right?
@slackergeek20072 жыл бұрын
Would love to see a word counter that can be attached to both a regular input and textarea. And by attached I mean embedded in the field, not below it. Inputs are easy, but I am struggling with a textarea, especially when scrollbars become visible.
@-ebtkarat41110 ай бұрын
However, there's a small issue in your implementation. You're iterating over each character of the text and then counting the occurrences of that character in the entire text on each iteration. This approach doesn't accurately check for consecutive occurrences. function abscenceOfThreeConsecutiveCharacters(text) { for (let i = 0; i < text.length - 2; i++) { if (text[i] === text[i + 1] && text[i] === text[i + 2]) { return false; } } return true; }
@DGronki3 жыл бұрын
Remarks: use css variables to make some values consistent in css better to use ?? where it is possible instead ||