GitHub
github.com › yadavanuj1996 › freecodecamp-solutions
GitHub - yadavanuj1996/freecodecamp-solutions: Implemented solutions for coding challenges & web app projects of 1800 hour long full stack developer roadmap from freeCodeCamp. · GitHub
Each of these 30 projects in the freeCodeCamp.org curriculum has its own agile user stories and automated tests. These help users build up project incrementally and ensure fulfillment of all the user stories before submission. (Six Certifications) with my completion status:- Basic HTML and HTML5 · Basic CSS · Applied Visual Design · Applied Accessibility · Responsive Web Design Principles · CSS Flexbox · CSS Grid · Responsive Web Design Projects · Basic JavaScript ·
Starred by 164 users
Forked by 89 users
Languages JavaScript 52.1% | HTML 44.4% | CSS 3.5%
Learn Basic JavaScript by Building a Role Playing Game - Step 120
Tell us what’s happening: I had tuck in the step 120 in the learn-basic-javascript-by-building-a-role-playing-game lesson of the javascript-algorithms-and-data-structures-v8 category. Your code so far function attack() … More on forum.freecodecamp.org
JavaScript problems :(
Hello everybody ! I’ve just finished the first 110 challenges on Basic JavaScript, and I’m feeling super confused, at the middle of the section I started with problems to pass the challenges , it took me hours, until i entered to the “get a hint” section. More on forum.freecodecamp.org
JavaScript Challenges
I currently just finished the Introduction to JavaScript part of the fCC curriculum. I’m done with the challenges within that part of the curriculum as well. Word Blanks Shopping List Stand in Line Golf Code Counting Cards Record Collection Profile Lookup I’m wondering if anyone could give ... More on forum.freecodecamp.org
Learn Basic JavaScript by Building a Role Playing Game - Step 85
Tell us what’s happening: I keep getting the error message " You should use compound assignment to add one to currentWeapon .", and have tried several messages, have tried adding 1 to the index of weapons[i] to move to the next element in the array, but i can’t find my way around the error. More on forum.freecodecamp.org
Videos
FreeCodeCamp: Basic JavaScript
30:15
freeCodeCamp solutions - Basic JavaScript (56 - 76) - YouTube
38:38
freeCodeCamp solutions - Basic JavaScript (27 - 55) - YouTube
46:20
freeCodeCamp solutions - Basic JavaScript (76 - 92) - YouTube
26:21
freeCodeCamp solutions - Basic JavaScript (1-26) - YouTube
53:22
freeCodeCamp solutions - Basic JavaScript (93 - 110) - YouTube
GitHub
github.com › h4r1m4u › freecodecamp-solutions › tree › master › Front End Development Certification › 04 - basic-javascript
freecodecamp-solutions/Front End Development Certification/04 - basic-javascript at master · h4r1m4u/freecodecamp-solutions
Solutions to FreeCodeCamp.com challenges and projects. - freecodecamp-solutions/Front End Development Certification/04 - basic-javascript at master · h4r1m4u/freecodecamp-solutions
Author h4r1m4u
GitHub
github.com › h4r1m4u › freecodecamp-solutions
GitHub - h4r1m4u/freecodecamp-solutions: Solutions to FreeCodeCamp.com challenges and projects. · GitHub
Solutions to FreeCodeCamp.com challenges and projects. - h4r1m4u/freecodecamp-solutions
Starred by 121 users
Forked by 85 users
Languages HTML 69.5% | JavaScript 30.5%
freeCodeCamp
forum.freecodecamp.org › you can do this!
JavaScript problems :( - You Can Do This! - The freeCodeCamp Forum
June 15, 2020 - Hello everybody ! I’ve just finished the first 110 challenges on Basic JavaScript, and I’m feeling super confused, at the middle of the section I started with problems to pass the challenges , it took me hours, until i e…
freeCodeCamp
freecodecamp.org › news › learn-javascript-with-new-data-structures-and-algorithms-certification-projects
Learn JavaScript by Building 21 Projects – a Major freeCodeCamp Curriculum Upgrade
December 20, 2023 - Hint for the JavaScript Role Playing Game in freeCodeCamp editor ... In this calorie counter project, you’ll learn how to validate user input, perform calculations based on that input, and dynamically update your interface to display the results. This project covers basic regular expressions, template literals, the addEventListener() method, and more.
Rafase282
rafase282.github.io › My-FreeCodeCamp-Code
My FreeCodeCamp Journal by Rafase282 - Rafael Rodriguez
This repository is not for an app but more as a journal where I keep a record of everything I have done and learned from FreeCodeCamp. I decided to use a wiki as I can put more information easily on it.
GitHub
github.com › Rafase282 › My-FreeCodeCamp-Code › wiki
Home · Rafase282/My-FreeCodeCamp-Code Wiki · GitHub
This repository is not for an app but more as a journal where I keep a record of everything I have done and learned from FreeCodeCamp. I decided to use a wiki as I can put more information easily on it.
Author Rafase282
freeCodeCamp
forum.freecodecamp.org › javascript
JavaScript Challenges - JavaScript - The freeCodeCamp Forum
May 21, 2019 - I currently just finished the Introduction to JavaScript part of the fCC curriculum. I’m done with the challenges within that part of the curriculum as well. Word Blanks Shopping List Stand in Line Golf Code Counting …
freeCodeCamp
forum.freecodecamp.org › javascript
Learn Basic JavaScript by Building a Role Playing Game - Step 85 - JavaScript - The freeCodeCamp Forum
December 23, 2023 - Tell us what’s happening: I keep getting the error message " You should use compound assignment to add one to currentWeapon .", and have tried several messages, have tried adding 1 to the index of weapons[i] to move to t…
freeCodeCamp
freecodecamp.org › news › javascript-interview-prep-cheatsheet
JavaScript Interview Prep Cheatsheet – Ace Your Coding Interviews with These Concepts
July 7, 2021 - var a = 3 var a = 4 console.log(a) // 4 as var variables can be redeclared + updated let b = 3 let b = 4 console.log(b) // Syntax Error as let variables cannot be redeclared // If we just do, it will work because it can be updated b = 4 const c = 3 const c = 4 console.log(c) // Syntax Error as const variables cannot be redeclared or updated const d // Will this throw an error? Go through the table and try to find the answer. Note: In JavaScript, putting a semi-colon after the end of statement is optional.