Git Product home page Git Product logo

zachgoll / fullstack-roadmap-series Goto Github PK

View Code? Open in Web Editor NEW
1.5K 1.5K 250.0 868 KB

Renamed to "Frontend Web Development for Beginners", this will help you build a solid foundation in HTML, CSS, and JavaScript as a web developer.

Home Page: https://www.fullstackfoundations.com/courses/frontend-web-development-for-beginners

JavaScript 44.96% HTML 30.70% CSS 24.34%
css html javascript react typescript

fullstack-roadmap-series's Introduction

Hi there, I'm Zach.

Iโ€˜m a software engineer living in Cincinnati, OH. I'm currently working full-time on Maybe, a COSS personal finance app. I also maintain a few golf websites and run Full Stack Foundations. You can learn more about myself and the projects I'm involved in here.

Connect with me:

Zach Gollwitzer | Twitter Zach Gollwitzer Website Zach Gollwitzer | YouTube Zach Gollwitzer | LinkedIn



fullstack-roadmap-series's People

Contributors

zachgoll avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fullstack-roadmap-series's Issues

Please provide a descriptive title of your question

This is a Github issue template. You will need to replace all lines marked with REPLACE. If you want to see an example issue, please refer to this one. While I will try to get to your question as quickly as possible, I am creating this series for free and therefore don't always have a ton of free time. Thanks for your understanding!

What video or post URL is your question regarding?

5 Beginner JavaScript Coding Challenges

If it is a YouTube video, what timestamp are you asking about?

1:22

What is your question?

The code for "Challenge 2" is actually exactly the same.
Challenge-2

Uncaught SyntaxError: redeclaration of let secondNumber

This is a Github issue template. You will need to replace all lines marked with REPLACE. If you want to see an example issue, please refer to this one. While I will try to get to your question as quickly as possible, I am creating this series for free and therefore don't always have a ton of free time. Thanks for your understanding!

What video or post URL is your question regarding?

https://www.youtube.com/watch?v=YFVT567KBlw&list=PLYQSCk-qyTW37zDPzcAyzCsnypFQrhUcq&index=4

If it is a YouTube video, what timestamp are you asking about?

Homework tasks

What is your question?

I can't fix the Syntax error. The console error complains about the secondNumber redeclaration. Please see the code below:
const myBoolean = true;
const myString = 'hello world';
const firstNumber = 20;
let secondNumber = 40;
secondNumber = 80;
const myArray = [myBoolean, myString];

const myObject = {
firstProperty: myArray,
sumProperty: firstNumber + secondNumber};

console.log (myObject);

const sumProp = myObject.sumProperty;
console.log (sumProp);

No Githib Environment Link?

This is a Github issue template. You will need to replace all lines marked with REPLACE. If you want to see an example issue, please refer to this one. While I will try to get to your question as quickly as possible, I am creating this series for free and therefore don't always have a ton of free time. Thanks for your understanding!

What video or post URL is your question regarding?

An offline copy of the Fullstack course because using a video on YouTube that is 21 hours long is literally a pain in the arse without forward or rewind buttons

If it is a YouTube video, what timestamp are you asking about?

17:10:42

What is your question?

There is no Environment Link as you showed in the video, what do I need to do instead?

Thankyou and Regards,
Vaughan.

Please provide a descriptive title of your question

This is a Github issue template. You will need to replace all lines marked with REPLACE. If you want to see an example issue, please refer to this one. While I will try to get to your question as quickly as possible, I am creating this series for free and therefore don't always have a ton of free time. Thanks for your understanding!

What video or post URL is your question regarding?

Write Your First JavaScript Program #fullstackroadmap (Ep. 1)

If it is a YouTube video, what timestamp are you asking about?

6:10

What is your question?

When you hit enter, after inserted the dog image into the html code, your page automatically updated, reflecting the changes you made. However, when I insert a link to the new graphic and hit enter nothing happens.

I can see the change has been made in the code, but it doesn't actually reflect the changes in the browser.

10 JavaScript Challenges - Is the date today

This is a Github issue template. You will need to replace all lines marked with REPLACE. If you want to see an example issue, please refer to this one. While I will try to get to your question as quickly as possible, I am creating this series for free and therefore don't always have a ton of free time. Thanks for your understanding!

What video or post URL is your question regarding?

10 Beginner(ish) Javascript Code wars

If it is a YouTube video, what timestamp are you asking about?

1:04:59

What is your question?

I am having trouble with the code below it fails the kata with tomorrows date and Yesterdays date and I cannot see the problem. It works on my local webage showing a True result and if I change the nowDay code by putting a +1 or -1 to it I get a false:
'''
function isToday(date) {
//Code goes here

let todayMonth = date.getMonth(); //indexed 0->11
let todayDay = date.getDay(); //also indexed 0-6
let todayYear = date.getFullYear(); //nb: getFullYear

const currDate = new Date();

let currMonth = currDate.getMonth(); //indexed 0->11
let currDay = currDate.getDay(); //also indexed 0-6
let currYear = currDated.getFullYear(); //nb: getFullYear

if( (todayDay === currDay) && (todayMonth === currMonth) && (todayYear === currYear) ){
console.log(true);
return true;
}
else{
console.log(false);
return false;
}
}
'''

It passes the first series of test but when I went to "Attempt" that it falied in "Should work for some edge cases". Again, I don't know why when it works on my local webpage.

Thankyou and Regards.
Vaughan

Enter a detailed content suggestion title

What essential web development topic did I miss?

REPLACE: Enter the topic here

Why do you think this is important to add to the series?

REPLACE: Enter justification for why you think this should be part of the series. Generally, suggestions that involve specific technologies are not accepted unless that technology is widely used and critical to the skillset of a web developer

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.