r/javaScriptStudyGroup • u/its_vinayak • Jun 20 '22
r/javaScriptStudyGroup • u/91Flavio91 • Jun 18 '22
Hi! Do you know any site where I can practice those problems that you can find during the interview process?
Hi everybody! Like I've just written in the title I was searching for a way to practice those coding problems that you could find in a junior interview. Do you know any site where there are this kind of problem-solving riddles?
Thank you!
r/javaScriptStudyGroup • u/Intrepid_Composer_84 • Jun 16 '22
QR Code Generator in HTML CSS JavaScript
r/javaScriptStudyGroup • u/Ordinary_Craft • Jun 14 '22
How to Create Drag & Drop List using HTML CSS & JavaScript – JavaScript Project
r/javaScriptStudyGroup • u/xplodivity • Jun 13 '22
useWindowSize Hook | Custom hooks | React Js
useWindowSize hook in react Js is a simple and commonly used custom hook to get the window size at any given particular moment. This hook makes it extremely easy to display different UI/component/content based on window size. I implement and explain the same in the link below within 8 minutes. (source code provided as well)
Link- https://www.youtube.com/watch?v=x1n0c2aKNoE
r/javaScriptStudyGroup • u/[deleted] • Jun 12 '22
HELP!! i need print out a statement for each age.
hello eveyone i'm stuck. I know this has got to be right underneath my nose but I can't figure it out. Ive been at it for hours. I need to print out a message for each age in the array below that determines if that age is under 18 or 18 and over. what am i missing or what am i doing wrong so far?
var ages = [17, 20, 34, 18, 16, 65, 49, 10, 22, 18];
for (var i = 0; i < ages.length; i++){
console.log(ages[i]);
}
any help would be appreciated!!!
r/javaScriptStudyGroup • u/cp-ankush • Jun 12 '22
Implement call, apply, bind functions using Symbol datatype in JS from scratch | Polyfill
r/javaScriptStudyGroup • u/cp-ankush • Jun 11 '22
Implement forEach function in javascript from the scratch | polyfill
r/javaScriptStudyGroup • u/cp-ankush • Jun 10 '22
reduce function in js from scratch | Polyfill
r/javaScriptStudyGroup • u/cp-ankush • Jun 09 '22
Filter function in Javascript from scratch | Polyfill
r/javaScriptStudyGroup • u/Vortexile • Jun 09 '22
I Recreated Wordle in Microsoft Word
r/javaScriptStudyGroup • u/xplodivity • Jun 07 '22
Customisable Toast Notification using JavaScript
I built a highly customisable toast notification using vanilla JavaScript that allows user to control the position, type (success or error), message content, and duration of display of the toast notification. I learnt a lot of important JavaScript concepts while building this project, and I highly recommend you to try it out as well. Here's a video explanation of building the project from scratch
Link: https://www.youtube.com/watch?v=jJCUnPd1ymk
r/javaScriptStudyGroup • u/Mental-Class-1998 • Jun 06 '22
JavaScript help: So, I have to explain this random code tomorrow afternoon and I am honestly a bit confused and wanted to know if anyone could possibly help explain this to me.
r/javaScriptStudyGroup • u/cp-ankush • Jun 03 '22
map function implementation from scratch in Js
r/javaScriptStudyGroup • u/stackchief • Jun 03 '22
Observables...they finally make sense
r/javaScriptStudyGroup • u/xplodivity • Jun 02 '22
Maps in detail | JavaScript
Many people get confused between when to use a map or an object in JavaScript. While I have seen many developers use objects usually, there are a lot many instances where maps would have been more suitable. So I decided to make a video explaining maps in detail, its differences between objects and when to use one over the other under 8 minutes.
Link: https://www.youtube.com/watch?v=JRiVyaA2YKw
r/javaScriptStudyGroup • u/Icy_Pressure_9690 • Jun 02 '22
How does this checkerboard code work
Hi, I am working on an exercise in a textbook and I am struggling to understand how the code works, the code produces a 8X8 checkerboard of alternating spaces and hashtags based on whether two loops starting at 0 and incremented by 1 per cycle is odd or even.
- x++ and y ++ mean to increase variable by 1 but use the original value so;
-1st Loop will be (x + y) = 0 + 0
-2nd Loop will be 1 + 1 3rd will be 2 + 2 etc - thus accounting for all even numbers and so printing " "
within the board = ""
But how is the code testing for odd numbers when they increment and are added together in such a way to only produce even numbers? How is the else activated?
If the code produces horizontal lines of alternating spaces and hashtags until it reaches up to 8 (board += "\n"), what part of the code is telling it to stop at 8 lines vertically?
``` let size = 8;
let board = "";
for (let y = 0; y < size; y++) {
for (let x = 0; x < size; x++) {
if ((x + y) % 2 == 0) {
board += " ";
} else {
board += "#";
}
}
board += "\n";
} ```
r/javaScriptStudyGroup • u/Intrepid_Composer_84 • Jun 02 '22
Simple Captcha Validation Using HTML CSS JavaScript
r/javaScriptStudyGroup • u/Ordinary_Craft • Jun 01 '22
JavaScript Ultimate Course - free course from udemy for limited time
r/javaScriptStudyGroup • u/farhan_tanvir_bd • May 31 '22
Useful VSCode extension
Hello everyone,
Here is a list of some useful VSCode extensions which may help in web development.
I hope it will help someone. Also if you know of any other good VSCode extension, Please share it. I would be grateful.
Thanks
r/javaScriptStudyGroup • u/SauravKumaR301 • May 29 '22
How and why JavaScript do this? 2 dates same ms?
r/javaScriptStudyGroup • u/majorek31 • May 28 '22
ShhFile File Share
Hi guys, could you checkout my js project? I want to know what practises should i avoid mostly in github commits https://github.com/majorek31/shhfile
r/javaScriptStudyGroup • u/Vortexile • May 28 '22
I made a fully functional game in Microsoft Word
r/javaScriptStudyGroup • u/Intrepid_Composer_84 • May 26 '22
